Omnipedia
omnipedia_wiki
https://omnipedia.shoutwiki.com/wiki/Main_Page
MediaWiki 1.35.13
first-letter
Media
Special
Talk
User
User talk
Omnipedia
Omnipedia talk
File
File talk
MediaWiki
MediaWiki talk
Template
Template talk
Help
Help talk
Category
Category talk
Module
Module talk
Gadget
Gadget talk
Gadget definition
Gadget definition talk
Main Page
0
1
1
2020-05-26T00:19:41Z
Jaswacker
30585766
Created page with "big big placeholder"
wikitext
text/x-wiki
big big placeholder
aaa5a8d6e7538f796e08ba17663a9847c6b1c713
2
1
2020-05-26T00:20:19Z
Jaswacker
30585766
wikitext
text/x-wiki
{|
| style="text-align: center;" |
<p style="font-size: larger;">'''{{{name|{{PAGENAME}}}}}'''</p>
<div style="background-color: #fff; margin: 0 25px;">[[File:{{{image}}}|250px|link=]]</div>
<p>{{{caption}}}</p>
|-
| style="text-align: center;" | <u>'''{{{subject}}} information'''</u>
{| style="margin: 0 auto; text-align: left;"
{{#if:{{{field1|}}}|
{{!}} style="text-align: right; width: 80px;" {{!}} {{{title1}}}:
{{!}} {{{field1}}} }}
{{#if:{{{field2|}}}|
{{!}}-
{{!}} style="text-align: right;" {{!}} {{{title2}}}:
{{!}} {{{field2}}} }}
{{#if:{{{field3|}}}|
{{!}}-
{{!}} style="text-align: right;" {{!}} {{{title3}}}:
{{!}} {{{field3}}} }}
{{#if:{{{field4|}}}|
{{!}}-
{{!}} style="text-align: right;" {{!}} {{{title4}}}:
{{!}} {{{field4}}} }}
{{#if:{{{field5|}}}|
{{!}}-
{{!}} style="text-align: right;" {{!}} {{{title5}}}:
{{!}} {{{field5}}} }}
|}
|}
335d00561522fb36496eecfab8e6a93bc568d371
3
2
2020-05-26T00:20:40Z
Jaswacker
30585766
Replaced content with "placeholder"
wikitext
text/x-wiki
placeholder
ff55435345834a3fe224936776c2aa15f6ed5358
MediaWiki:Common.js
8
2
4
2020-05-26T00:33:17Z
Jaswacker
30585766
Created page with "/* Any JavaScript here will be loaded for all users on every page load. */ /** * JS Tab System, jacked and hacked from the jsprefs in wikibits.js * * Original code by Dantm..."
javascript
text/javascript
/* Any JavaScript here will be loaded for all users on every page load. */
/**
* JS Tab System, jacked and hacked from the jsprefs in wikibits.js
*
* Original code by Dantman
* Refactored a bit by Jack Phoenix on 11 April 2014
* Support for linking to a particular tab by MatmaRex on 30 December 2016.
* @note Should be rewritten to properly use jQuery like how mediawiki.special.preferences.js does.
*/
var TabSystem = {
/**
* @property {boolean}
* Is the user's browser a KHTML-based one (usually, but not always, Konqueror)?
*/
isKHTML: ( navigator.vendor == 'KDE' || ( document.childNodes && !document.all && !navigator.taintEnabled ) ),
/**
* @property {boolean}
* Is the user's browser Opera?
*/
isOpera: navigator.userAgent.toLowerCase().indexOf( 'opera' ) != -1,
/*
Written by Jonathan Snook, http://www.snook.ca/jonathan
Add-ons by Robert Nyman, http://www.robertnyman.com
Author says "The credit comment is all it takes, no license. Go crazy with it!:-)"
From http://www.robertnyman.com/2005/11/07/the-ultimate-getelementsbyclassname/
*/
getElementsByClassName: function( oElm, strTagName, oClassNames ) {
var arrReturnElements = [];
if ( typeof oElm.getElementsByClassName == 'function' ) {
/* Use a native implementation where possible FF3, Saf3.2, Opera 9.5 */
var arrNativeReturn = oElm.getElementsByClassName( oClassNames );
if ( strTagName == '*' ) {
return arrNativeReturn;
}
for ( var h = 0; h < arrNativeReturn.length; h++ ) {
if ( arrNativeReturn[h].tagName.toLowerCase() == strTagName.toLowerCase() ) {
arrReturnElements[arrReturnElements.length] = arrNativeReturn[h];
}
}
return arrReturnElements;
}
var arrElements = ( strTagName == '*' && oElm.all ) ? oElm.all : oElm.getElementsByTagName( strTagName );
var arrRegExpClassNames = [];
if ( typeof oClassNames == 'object' ) {
for ( var i = 0; i < oClassNames.length; i++ ) {
arrRegExpClassNames[arrRegExpClassNames.length] =
new RegExp( "(^|\\s)" + oClassNames[i].replace( /\-/g, "\\-" ) + "(\\s|$)" );
}
} else {
arrRegExpClassNames[arrRegExpClassNames.length] =
new RegExp( "(^|\\s)" + oClassNames.replace( /\-/g, "\\-" ) + "(\\s|$)" );
}
var oElement;
var bMatchesAll;
for ( var j = 0; j < arrElements.length; j++ ) {
oElement = arrElements[j];
bMatchesAll = true;
for ( var k = 0; k < arrRegExpClassNames.length; k++ ) {
if ( !arrRegExpClassNames[k].test( oElement.className ) ) {
bMatchesAll = false;
break;
}
}
if ( bMatchesAll ) {
arrReturnElements[arrReturnElements.length] = oElement;
}
}
return arrReturnElements;
},
/**
* Main function that performs all the magic on all div elements that have
* class="tab" and are inside a div that has class="tabcontainer".
*/
main: function() {
var tabcontainers = TabSystem.getElementsByClassName( document, 'div', 'tabcontainer' );
for ( var tc = 0; tc < tabcontainers.length; tc++ ) {
if ( !tabcontainers[tc] || !document.createElement ) {
return;
}
if ( tabcontainers[tc].nodeName.toLowerCase() == 'a' ) {
return; // Occasional IE problem
}
tabcontainers[tc].className += ' jstabs';
var sections = [];
var children = tabcontainers[tc].childNodes;
var seci = 0;
for ( var i = 0; i < children.length; i++ ) {
if ( children[i].className && children[i].className.match( /tab/i ) ) {
children[i].id = 'tabsection-' + seci + '-' + tc;
children[i].className += ' tabsection';
// Opera and KHTML-based browsers get a special class
if ( TabSystem.isOpera || TabSystem.isKHTML ) {
children[i].className += ' tabsection operatabsection';
}
var legends = TabSystem.getElementsByClassName( children[i], 'div', 'tab' );
sections[seci] = {};
legends[0].className = 'mainTab';
if ( legends[0] && legends[0].firstChild.nodeValue ) {
sections[seci].text = legends[0].firstChild.nodeValue;
} else {
sections[seci].text = '# ' + seci;
}
sections[seci].secid = children[i].id;
seci++;
if ( sections.length != 1 ) {
children[i].style.display = 'none';
} else {
var selectedid = children[i].id;
}
}
}
var toc = document.createElement( 'ul' );
toc.className = 'tabtoc';
toc.id = 'tabtoc-' + tc;
toc.selectedid = selectedid;
for ( i = 0; i < sections.length; i++ ) {
var li = document.createElement( 'li' );
if ( i === 0 ) {
li.className = 'selected';
}
var a = document.createElement( 'a' );
a.href = '#' + sections[i].secid;
a.appendChild( document.createTextNode( sections[i].text ) );
a.secid = sections[i].secid;
li.appendChild( a );
toc.appendChild( li );
// Capture current value of variables in the closure
( function ( i, a ) {
$( window ).on( 'hashchange', function () {
if ( location.hash === '#' + sections[i].secid ) {
TabSystem.uncoverTabSection( toc, a );
}
} )
if ( location.hash === '#' + sections[i].secid ) {
TabSystem.uncoverTabSection( toc, a );
}
} )( i, a );
}
tabcontainers[tc].parentNode.insertBefore( toc, tabcontainers[tc] );
}
},
/**
* Show the contents of a tab section when the user clicks on the tab.
*
* @return {boolean} Always false
*/
uncoverTabSection: function( ul, a ) {
var oldsecid = ul.selectedid;
var newsec = document.getElementById( a.secid );
if ( oldsecid != a.secid ) {
document.getElementById( oldsecid ).style.display = 'none';
newsec.style.display = 'block';
ul.selectedid = a.secid;
var lis = ul.getElementsByTagName( 'li' );
for ( var i = 0; i < lis.length; i++ ) {
lis[i].className = '';
}
a.parentNode.className = 'selected';
}
return false;
}
};
// Attach the onload handler using jQuery.
$( function() {
TabSystem.main();
} );
ca67ded68a2486db149f4321c9cfc23ab496e656
50
4
2020-05-26T04:32:37Z
Jaswacker
30585766
javascript
text/javascript
/* Any JavaScript here will be loaded for all users on every page load. */
/**
* JS Tab System, jacked and hacked from the jsprefs in wikibits.js
*
* Original code by Dantman
* Refactored a bit by Jack Phoenix on 11 April 2014
* Support for linking to a particular tab by MatmaRex on 30 December 2016.
* @note Should be rewritten to properly use jQuery like how mediawiki.special.preferences.js does.
*/
var TabSystem = {
/**
* @property {boolean}
* Is the user's browser a KHTML-based one (usually, but not always, Konqueror)?
*/
isKHTML: ( navigator.vendor == 'KDE' || ( document.childNodes && !document.all && !navigator.taintEnabled ) ),
/**
* @property {boolean}
* Is the user's browser Opera?
*/
isOpera: navigator.userAgent.toLowerCase().indexOf( 'opera' ) != -1,
/*
Written by Jonathan Snook, http://www.snook.ca/jonathan
Add-ons by Robert Nyman, http://www.robertnyman.com
Author says "The credit comment is all it takes, no license. Go crazy with it!:-)"
From http://www.robertnyman.com/2005/11/07/the-ultimate-getelementsbyclassname/
*/
getElementsByClassName: function( oElm, strTagName, oClassNames ) {
var arrReturnElements = [];
if ( typeof oElm.getElementsByClassName == 'function' ) {
/* Use a native implementation where possible FF3, Saf3.2, Opera 9.5 */
var arrNativeReturn = oElm.getElementsByClassName( oClassNames );
if ( strTagName == '*' ) {
return arrNativeReturn;
}
for ( var h = 0; h < arrNativeReturn.length; h++ ) {
if ( arrNativeReturn[h].tagName.toLowerCase() == strTagName.toLowerCase() ) {
arrReturnElements[arrReturnElements.length] = arrNativeReturn[h];
}
}
return arrReturnElements;
}
var arrElements = ( strTagName == '*' && oElm.all ) ? oElm.all : oElm.getElementsByTagName( strTagName );
var arrRegExpClassNames = [];
if ( typeof oClassNames == 'object' ) {
for ( var i = 0; i < oClassNames.length; i++ ) {
arrRegExpClassNames[arrRegExpClassNames.length] =
new RegExp( "(^|\\s)" + oClassNames[i].replace( /\-/g, "\\-" ) + "(\\s|$)" );
}
} else {
arrRegExpClassNames[arrRegExpClassNames.length] =
new RegExp( "(^|\\s)" + oClassNames.replace( /\-/g, "\\-" ) + "(\\s|$)" );
}
var oElement;
var bMatchesAll;
for ( var j = 0; j < arrElements.length; j++ ) {
oElement = arrElements[j];
bMatchesAll = true;
for ( var k = 0; k < arrRegExpClassNames.length; k++ ) {
if ( !arrRegExpClassNames[k].test( oElement.className ) ) {
bMatchesAll = false;
break;
}
}
if ( bMatchesAll ) {
arrReturnElements[arrReturnElements.length] = oElement;
}
}
return arrReturnElements;
},
/**
* Main function that performs all the magic on all div elements that have
* class="tab" and are inside a div that has class="tabcontainer".
*/
main: function() {
var tabcontainers = TabSystem.getElementsByClassName( document, 'div', 'tabcontainer' );
for ( var tc = 0; tc < tabcontainers.length; tc++ ) {
if ( !tabcontainers[tc] || !document.createElement ) {
return;
}
if ( tabcontainers[tc].nodeName.toLowerCase() == 'a' ) {
return; // Occasional IE problem
}
tabcontainers[tc].className += ' jstabs';
var sections = [];
var children = tabcontainers[tc].childNodes;
var seci = 0;
for ( var i = 0; i < children.length; i++ ) {
if ( children[i].className && children[i].className.match( /tab/i ) ) {
children[i].id = 'tabsection-' + seci + '-' + tc;
children[i].className += ' tabsection';
// Opera and KHTML-based browsers get a special class
if ( TabSystem.isOpera || TabSystem.isKHTML ) {
children[i].className += ' tabsection operatabsection';
}
var legends = TabSystem.getElementsByClassName( children[i], 'div', 'tab' );
sections[seci] = {};
legends[0].className = 'mainTab';
if ( legends[0] && legends[0].firstChild.nodeValue ) {
sections[seci].text = legends[0].firstChild.nodeValue;
} else {
sections[seci].text = '# ' + seci;
}
sections[seci].secid = children[i].id;
seci++;
if ( sections.length != 1 ) {
children[i].style.display = 'none';
} else {
var selectedid = children[i].id;
}
}
}
var toc = document.createElement( 'ul' );
toc.className = 'tabtoc';
toc.id = 'tabtoc-' + tc;
toc.selectedid = selectedid;
for ( i = 0; i < sections.length; i++ ) {
var li = document.createElement( 'li' );
if ( i === 0 ) {
li.className = 'selected';
}
var a = document.createElement( 'a' );
a.href = '#' + sections[i].secid;
a.appendChild( document.createTextNode( sections[i].text ) );
a.secid = sections[i].secid;
li.appendChild( a );
toc.appendChild( li );
// Capture current value of variables in the closure
( function ( i, a ) {
$( window ).on( 'hashchange', function () {
if ( location.hash === '#' + sections[i].secid ) {
TabSystem.uncoverTabSection( toc, a );
}
} )
if ( location.hash === '#' + sections[i].secid ) {
TabSystem.uncoverTabSection( toc, a );
}
} )( i, a );
}
tabcontainers[tc].parentNode.insertBefore( toc, tabcontainers[tc] );
}
},
/**
* Show the contents of a tab section when the user clicks on the tab.
*
* @return {boolean} Always false
*/
uncoverTabSection: function( ul, a ) {
var oldsecid = ul.selectedid;
var newsec = document.getElementById( a.secid );
if ( oldsecid != a.secid ) {
document.getElementById( oldsecid ).style.display = 'none';
newsec.style.display = 'block';
ul.selectedid = a.secid;
var lis = ul.getElementsByTagName( 'li' );
for ( var i = 0; i < lis.length; i++ ) {
lis[i].className = '';
}
a.parentNode.className = 'selected';
}
return false;
}
};
// Attach the onload handler using jQuery.
$( function() {
TabSystem.main();
} );
/* Blatantly based on Wookiepedia's ShowEras */
function showTitles(className) {
if(typeof(SKIP_ERAS) != 'undefined' && SKIP_ERAS)
return;
var titleDiv = document.getElementById(className);
if(titleDiv == null || titleDiv == undefined)
return;
var cloneNode = titleDiv.cloneNode(true);
var firstHeading = getFirstHeading();
firstHeading.insertBefore(cloneNode, firstHeading.childNodes[0]);
cloneNode.style.display = "block";
}// END JavaScript title rewrite
function getFirstHeading(){
var a = getElementsByClassName(document.getElementById('content'), 'h1', 'firstHeading');
return a[0];
}
0e3abb99e55b7d49a05f073cc5602674c7b9b7d5
51
50
2020-05-26T04:35:59Z
Jaswacker
30585766
javascript
text/javascript
/* Any JavaScript here will be loaded for all users on every page load. */
/**
* JS Tab System, jacked and hacked from the jsprefs in wikibits.js
*
* Original code by Dantman
* Refactored a bit by Jack Phoenix on 11 April 2014
* Support for linking to a particular tab by MatmaRex on 30 December 2016.
* @note Should be rewritten to properly use jQuery like how mediawiki.special.preferences.js does.
*/
var TabSystem = {
/**
* @property {boolean}
* Is the user's browser a KHTML-based one (usually, but not always, Konqueror)?
*/
isKHTML: ( navigator.vendor == 'KDE' || ( document.childNodes && !document.all && !navigator.taintEnabled ) ),
/**
* @property {boolean}
* Is the user's browser Opera?
*/
isOpera: navigator.userAgent.toLowerCase().indexOf( 'opera' ) != -1,
/*
Written by Jonathan Snook, http://www.snook.ca/jonathan
Add-ons by Robert Nyman, http://www.robertnyman.com
Author says "The credit comment is all it takes, no license. Go crazy with it!:-)"
From http://www.robertnyman.com/2005/11/07/the-ultimate-getelementsbyclassname/
*/
getElementsByClassName: function( oElm, strTagName, oClassNames ) {
var arrReturnElements = [];
if ( typeof oElm.getElementsByClassName == 'function' ) {
/* Use a native implementation where possible FF3, Saf3.2, Opera 9.5 */
var arrNativeReturn = oElm.getElementsByClassName( oClassNames );
if ( strTagName == '*' ) {
return arrNativeReturn;
}
for ( var h = 0; h < arrNativeReturn.length; h++ ) {
if ( arrNativeReturn[h].tagName.toLowerCase() == strTagName.toLowerCase() ) {
arrReturnElements[arrReturnElements.length] = arrNativeReturn[h];
}
}
return arrReturnElements;
}
var arrElements = ( strTagName == '*' && oElm.all ) ? oElm.all : oElm.getElementsByTagName( strTagName );
var arrRegExpClassNames = [];
if ( typeof oClassNames == 'object' ) {
for ( var i = 0; i < oClassNames.length; i++ ) {
arrRegExpClassNames[arrRegExpClassNames.length] =
new RegExp( "(^|\\s)" + oClassNames[i].replace( /\-/g, "\\-" ) + "(\\s|$)" );
}
} else {
arrRegExpClassNames[arrRegExpClassNames.length] =
new RegExp( "(^|\\s)" + oClassNames.replace( /\-/g, "\\-" ) + "(\\s|$)" );
}
var oElement;
var bMatchesAll;
for ( var j = 0; j < arrElements.length; j++ ) {
oElement = arrElements[j];
bMatchesAll = true;
for ( var k = 0; k < arrRegExpClassNames.length; k++ ) {
if ( !arrRegExpClassNames[k].test( oElement.className ) ) {
bMatchesAll = false;
break;
}
}
if ( bMatchesAll ) {
arrReturnElements[arrReturnElements.length] = oElement;
}
}
return arrReturnElements;
},
/**
* Main function that performs all the magic on all div elements that have
* class="tab" and are inside a div that has class="tabcontainer".
*/
main: function() {
var tabcontainers = TabSystem.getElementsByClassName( document, 'div', 'tabcontainer' );
for ( var tc = 0; tc < tabcontainers.length; tc++ ) {
if ( !tabcontainers[tc] || !document.createElement ) {
return;
}
if ( tabcontainers[tc].nodeName.toLowerCase() == 'a' ) {
return; // Occasional IE problem
}
tabcontainers[tc].className += ' jstabs';
var sections = [];
var children = tabcontainers[tc].childNodes;
var seci = 0;
for ( var i = 0; i < children.length; i++ ) {
if ( children[i].className && children[i].className.match( /tab/i ) ) {
children[i].id = 'tabsection-' + seci + '-' + tc;
children[i].className += ' tabsection';
// Opera and KHTML-based browsers get a special class
if ( TabSystem.isOpera || TabSystem.isKHTML ) {
children[i].className += ' tabsection operatabsection';
}
var legends = TabSystem.getElementsByClassName( children[i], 'div', 'tab' );
sections[seci] = {};
legends[0].className = 'mainTab';
if ( legends[0] && legends[0].firstChild.nodeValue ) {
sections[seci].text = legends[0].firstChild.nodeValue;
} else {
sections[seci].text = '# ' + seci;
}
sections[seci].secid = children[i].id;
seci++;
if ( sections.length != 1 ) {
children[i].style.display = 'none';
} else {
var selectedid = children[i].id;
}
}
}
var toc = document.createElement( 'ul' );
toc.className = 'tabtoc';
toc.id = 'tabtoc-' + tc;
toc.selectedid = selectedid;
for ( i = 0; i < sections.length; i++ ) {
var li = document.createElement( 'li' );
if ( i === 0 ) {
li.className = 'selected';
}
var a = document.createElement( 'a' );
a.href = '#' + sections[i].secid;
a.appendChild( document.createTextNode( sections[i].text ) );
a.secid = sections[i].secid;
li.appendChild( a );
toc.appendChild( li );
// Capture current value of variables in the closure
( function ( i, a ) {
$( window ).on( 'hashchange', function () {
if ( location.hash === '#' + sections[i].secid ) {
TabSystem.uncoverTabSection( toc, a );
}
} )
if ( location.hash === '#' + sections[i].secid ) {
TabSystem.uncoverTabSection( toc, a );
}
} )( i, a );
}
tabcontainers[tc].parentNode.insertBefore( toc, tabcontainers[tc] );
}
},
/**
* Show the contents of a tab section when the user clicks on the tab.
*
* @return {boolean} Always false
*/
uncoverTabSection: function( ul, a ) {
var oldsecid = ul.selectedid;
var newsec = document.getElementById( a.secid );
if ( oldsecid != a.secid ) {
document.getElementById( oldsecid ).style.display = 'none';
newsec.style.display = 'block';
ul.selectedid = a.secid;
var lis = ul.getElementsByTagName( 'li' );
for ( var i = 0; i < lis.length; i++ ) {
lis[i].className = '';
}
a.parentNode.className = 'selected';
}
return false;
}
};
// Attach the onload handler using jQuery.
$( function() {
TabSystem.main();
} );
/* Blatantly based on Wookiepedia's ShowEras */
function showTitles(className) {
if(typeof(SKIP_ERAS) != 'undefined' && SKIP_ERAS)
return;
var titleDiv = document.getElementById(className);
if(titleDiv == null || titleDiv == undefined)
return;
var cloneNode = titleDiv.cloneNode(true);
var firstHeading = getFirstHeading();
firstHeading.insertBefore(cloneNode, firstHeading.childNodes[0]);
cloneNode.style.display = "block";
}// END JavaScript title rewrite
5bdc01c016e968e855d470329344bc1ff0378209
52
51
2020-05-26T04:45:41Z
Jaswacker
30585766
javascript
text/javascript
/* Any JavaScript here will be loaded for all users on every page load. */
/**
* JS Tab System, jacked and hacked from the jsprefs in wikibits.js
*
* Original code by Dantman
* Refactored a bit by Jack Phoenix on 11 April 2014
* Support for linking to a particular tab by MatmaRex on 30 December 2016.
* @note Should be rewritten to properly use jQuery like how mediawiki.special.preferences.js does.
*/
var TabSystem = {
/**
* @property {boolean}
* Is the user's browser a KHTML-based one (usually, but not always, Konqueror)?
*/
isKHTML: ( navigator.vendor == 'KDE' || ( document.childNodes && !document.all && !navigator.taintEnabled ) ),
/**
* @property {boolean}
* Is the user's browser Opera?
*/
isOpera: navigator.userAgent.toLowerCase().indexOf( 'opera' ) != -1,
/*
Written by Jonathan Snook, http://www.snook.ca/jonathan
Add-ons by Robert Nyman, http://www.robertnyman.com
Author says "The credit comment is all it takes, no license. Go crazy with it!:-)"
From http://www.robertnyman.com/2005/11/07/the-ultimate-getelementsbyclassname/
*/
getElementsByClassName: function( oElm, strTagName, oClassNames ) {
var arrReturnElements = [];
if ( typeof oElm.getElementsByClassName == 'function' ) {
/* Use a native implementation where possible FF3, Saf3.2, Opera 9.5 */
var arrNativeReturn = oElm.getElementsByClassName( oClassNames );
if ( strTagName == '*' ) {
return arrNativeReturn;
}
for ( var h = 0; h < arrNativeReturn.length; h++ ) {
if ( arrNativeReturn[h].tagName.toLowerCase() == strTagName.toLowerCase() ) {
arrReturnElements[arrReturnElements.length] = arrNativeReturn[h];
}
}
return arrReturnElements;
}
var arrElements = ( strTagName == '*' && oElm.all ) ? oElm.all : oElm.getElementsByTagName( strTagName );
var arrRegExpClassNames = [];
if ( typeof oClassNames == 'object' ) {
for ( var i = 0; i < oClassNames.length; i++ ) {
arrRegExpClassNames[arrRegExpClassNames.length] =
new RegExp( "(^|\\s)" + oClassNames[i].replace( /\-/g, "\\-" ) + "(\\s|$)" );
}
} else {
arrRegExpClassNames[arrRegExpClassNames.length] =
new RegExp( "(^|\\s)" + oClassNames.replace( /\-/g, "\\-" ) + "(\\s|$)" );
}
var oElement;
var bMatchesAll;
for ( var j = 0; j < arrElements.length; j++ ) {
oElement = arrElements[j];
bMatchesAll = true;
for ( var k = 0; k < arrRegExpClassNames.length; k++ ) {
if ( !arrRegExpClassNames[k].test( oElement.className ) ) {
bMatchesAll = false;
break;
}
}
if ( bMatchesAll ) {
arrReturnElements[arrReturnElements.length] = oElement;
}
}
return arrReturnElements;
},
/**
* Main function that performs all the magic on all div elements that have
* class="tab" and are inside a div that has class="tabcontainer".
*/
main: function() {
var tabcontainers = TabSystem.getElementsByClassName( document, 'div', 'tabcontainer' );
for ( var tc = 0; tc < tabcontainers.length; tc++ ) {
if ( !tabcontainers[tc] || !document.createElement ) {
return;
}
if ( tabcontainers[tc].nodeName.toLowerCase() == 'a' ) {
return; // Occasional IE problem
}
tabcontainers[tc].className += ' jstabs';
var sections = [];
var children = tabcontainers[tc].childNodes;
var seci = 0;
for ( var i = 0; i < children.length; i++ ) {
if ( children[i].className && children[i].className.match( /tab/i ) ) {
children[i].id = 'tabsection-' + seci + '-' + tc;
children[i].className += ' tabsection';
// Opera and KHTML-based browsers get a special class
if ( TabSystem.isOpera || TabSystem.isKHTML ) {
children[i].className += ' tabsection operatabsection';
}
var legends = TabSystem.getElementsByClassName( children[i], 'div', 'tab' );
sections[seci] = {};
legends[0].className = 'mainTab';
if ( legends[0] && legends[0].firstChild.nodeValue ) {
sections[seci].text = legends[0].firstChild.nodeValue;
} else {
sections[seci].text = '# ' + seci;
}
sections[seci].secid = children[i].id;
seci++;
if ( sections.length != 1 ) {
children[i].style.display = 'none';
} else {
var selectedid = children[i].id;
}
}
}
var toc = document.createElement( 'ul' );
toc.className = 'tabtoc';
toc.id = 'tabtoc-' + tc;
toc.selectedid = selectedid;
for ( i = 0; i < sections.length; i++ ) {
var li = document.createElement( 'li' );
if ( i === 0 ) {
li.className = 'selected';
}
var a = document.createElement( 'a' );
a.href = '#' + sections[i].secid;
a.appendChild( document.createTextNode( sections[i].text ) );
a.secid = sections[i].secid;
li.appendChild( a );
toc.appendChild( li );
// Capture current value of variables in the closure
( function ( i, a ) {
$( window ).on( 'hashchange', function () {
if ( location.hash === '#' + sections[i].secid ) {
TabSystem.uncoverTabSection( toc, a );
}
} )
if ( location.hash === '#' + sections[i].secid ) {
TabSystem.uncoverTabSection( toc, a );
}
} )( i, a );
}
tabcontainers[tc].parentNode.insertBefore( toc, tabcontainers[tc] );
}
},
/**
* Show the contents of a tab section when the user clicks on the tab.
*
* @return {boolean} Always false
*/
uncoverTabSection: function( ul, a ) {
var oldsecid = ul.selectedid;
var newsec = document.getElementById( a.secid );
if ( oldsecid != a.secid ) {
document.getElementById( oldsecid ).style.display = 'none';
newsec.style.display = 'block';
ul.selectedid = a.secid;
var lis = ul.getElementsByTagName( 'li' );
for ( var i = 0; i < lis.length; i++ ) {
lis[i].className = '';
}
a.parentNode.className = 'selected';
}
return false;
}
};
// Attach the onload handler using jQuery.
$( function() {
TabSystem.main();
} );
/* Blatantly stolen from TFWiki's factions template */
function showTitles(className) {
if(typeof(SKIP_ERAS) != 'undefined' && SKIP_ERAS)
return;
var titleDiv = document.getElementById(className);
if(titleDiv == null || titleDiv == undefined)
return;
var cloneNode = titleDiv.cloneNode(true);
var firstHeading = getFirstHeading();
firstHeading.insertBefore(cloneNode, firstHeading.childNodes[0]);
cloneNode.style.display = "block";
}// END JavaScript title rewrite
function getFirstHeading(){
var a = getElementsByClassName(document.getElementById('content'), 'h1', 'firstHeading');
return a[0];
}
/* Code for hiding segments */
function hide_block(id) {
document.getElementById(id).style.display = "inline";
document.getElementById(id + "-link").style.display = "none";
}
function replace_hides() {
var hide_blocks = getElementsByClassName(document, "div", "hide");
for (var i=0;i<hide_blocks.length;i++) {
var hide_link = document.createElement("div");
hide_link.innerHTML = "<a href='javascript:hide_block(\"" + hide_blocks[i].getAttribute("id") + "\");' id='" + hide_blocks[i].getAttribute("id") + "-link'><i>Show hidden content.</i></a>";
hide_blocks[i].parentNode.insertBefore(hide_link, hide_blocks[i]);
hide_blocks[i].style.display = "none";
}
}
function omnipedia_hooks() {
showTitles('title-trixicons');
replace_hides();
}
addOnloadHook(omnipedia_hooks);
74c0cee90055f81f0080357c6683b131cc31baa2
MediaWiki:Common.css
8
3
5
2020-05-26T00:33:48Z
Jaswacker
30585766
Created page with "/* CSS placed here will be applied to all skins */ /* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */ .tabtoc { margin: 0; padding: 0; wi..."
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
70f71a54e69619921abd2ba1f0e3e2476cf457dc
Minor Transformations
0
4
6
2020-05-26T01:09:51Z
Jaswacker
30585766
Created page with "<div class="tabcontainer"> <div class="tabbox"> <div class="tab">Mentioned</div> Contents of the first tab will go here. </div> <div class="tabb..."
wikitext
text/x-wiki
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">Mentioned</div>
Contents of the first tab will go here.
</div>
<div class="tabbox">
<div class="tab">Non-Canon</div>
Contents of the second tab will go here.
</div>
<div class="tabbox">
<div class="tab">placeholder</div>
Contents of the third tab will go here.
</div>
</div>
784f8ae769fe174e1e074281d2bc348ae880abdc
7
6
2020-05-26T01:17:25Z
Jaswacker
30585766
wikitext
text/x-wiki
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">Mentioned</div>
These aliens have only been mentioned in the show, but have had no on-screen appearances currently.
== Snakepit ==
placeholder
== Sandbox ==
placeholder
== Shellhead ==
placeholder
</div>
<div class="tabbox">
<div class="tab">Non-Canon</div>
Contents of the second tab will go here.
</div>
<div class="tabbox">
<div class="tab">placeholder</div>
Contents of the third tab will go here.
</div>
</div>
8f6fd1de328c7e987d2ec1467def221d3b6611d8
8
7
2020-05-26T01:40:07Z
Jaswacker
30585766
wikitext
text/x-wiki
<tabview>
Minor Transformations/Test|Test
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">Mentioned</div>
These aliens have only been mentioned in the show, but have had no on-screen appearances currently.
== Snakepit ==
placeholder
== Sandbox ==
placeholder
== Shellhead ==
placeholder
</div>
<div class="tabbox">
<div class="tab">Non-Canon</div>
Contents of the second tab will go here.
</div>
<div class="tabbox">
<div class="tab">placeholder</div>
Contents of the third tab will go here.
</div>
</div>
8f3e0afc6807962250bd1ee3af63a5b7268eb450
9
8
2020-05-26T01:40:23Z
Jaswacker
30585766
wikitext
text/x-wiki
<tabview>
Minor Transformations/Test|Test
</tabview>
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">Mentioned</div>
These aliens have only been mentioned in the show, but have had no on-screen appearances currently.
== Snakepit ==
placeholder
== Sandbox ==
placeholder
== Shellhead ==
placeholder
</div>
<div class="tabbox">
<div class="tab">Non-Canon</div>
Contents of the second tab will go here.
</div>
<div class="tabbox">
<div class="tab">placeholder</div>
Contents of the third tab will go here.
</div>
</div>
708f29967a7d4f7c934882233acb4c55d4282968
10
9
2020-05-26T01:56:33Z
Jaswacker
30585766
wikitext
text/x-wiki
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">Mentioned</div>
These aliens have only been mentioned in the show, but have had no on-screen appearances currently.
== Snakepit ==
placeholder
== Sandbox ==
placeholder
== Shellhead ==
placeholder
</div>
<div class="tabbox">
<div class="tab">Non-Canon</div>
Contents of the second tab will go here.
</div>
<div class="tabbox">
<div class="tab">placeholder</div>
Contents of the third tab will go here.
</div>
</div>
5c1974b1f9573fa5abb0ba08011dc80cef1375bc
12
10
2020-05-26T02:03:49Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|test}}
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">Mentioned</div>
These aliens have only been mentioned in the show, but have had no on-screen appearances currently.
== Snakepit ==
placeholder
== Sandbox ==
placeholder
== Shellhead ==
placeholder
</div>
<div class="tabbox">
<div class="tab">Non-Canon</div>
Contents of the second tab will go here.
</div>
<div class="tabbox">
<div class="tab">placeholder</div>
Contents of the third tab will go here.
</div>
</div>
813485864126b3b3cf60cc4bc34bc221643b4423
39
12
2020-05-26T04:13:31Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|test}}
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">Mentioned</div>
These aliens have only been mentioned in the show, but have had no on-screen appearances currently.
== Snakepit ==
placeholder
== Sandbox ==
placeholder
== Shellhead ==
placeholder
</div>
<div class="tabbox">
<div class="tab">Non-Canon</div>
These transformations are considered [Continuity#Non-Canon non-canon]. They have not appeared in any seen continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
== Decimus Prime ==
<gallery>
DecimusPrime_RobotMode.jpg|Decimus Prime's ''robot mode.''
DecimusPrime_AltMode.jpg|Decimus Prime's ''alt-mode.''
</gallery>
Decimus Prime is [Ben Tennyson Ben's] transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian].
This form was designed by [Derrick J Wyatt] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
</div>
<div class="tabbox">
<div class="tab">placeholder</div>
Contents of the third tab will go here.
</div>
</div>
668c5bf84643734c8f4468289045b33b87afa76b
41
39
2020-05-26T04:14:16Z
Jaswacker
30585766
/* Decimus Prime */
wikitext
text/x-wiki
{{trix|test}}
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">Mentioned</div>
These aliens have only been mentioned in the show, but have had no on-screen appearances currently.
== Snakepit ==
placeholder
== Sandbox ==
placeholder
== Shellhead ==
placeholder
</div>
<div class="tabbox">
<div class="tab">Non-Canon</div>
These transformations are considered [Continuity#Non-Canon non-canon]. They have not appeared in any seen continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
== Decimus Prime ==
<gallery>
DecimusPrime_RobotMode.jpeg|Decimus Prime's ''robot mode.''
DecimusPrime_AltMode.jpeg|Decimus Prime's ''alt-mode.''
</gallery>
Decimus Prime is [Ben Tennyson Ben's] transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian].
This form was designed by [Derrick J Wyatt] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
</div>
<div class="tabbox">
<div class="tab">placeholder</div>
Contents of the third tab will go here.
</div>
</div>
68d52b3b0ff982a8fda403f95ccccd861d6ea0a8
42
41
2020-05-26T04:15:48Z
Jaswacker
30585766
/* Decimus Prime */
wikitext
text/x-wiki
{{trix|test}}
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">Mentioned</div>
These aliens have only been mentioned in the show, but have had no on-screen appearances currently.
== Snakepit ==
placeholder
== Sandbox ==
placeholder
== Shellhead ==
placeholder
</div>
<div class="tabbox">
<div class="tab">Non-Canon</div>
These transformations are considered [Continuity#Non-Canon non-canon]. They have not appeared in any seen continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
== Decimus Prime ==
[[File:DecimusPrime_RobotMode.jpeg|thumb|300px]]
Decimus Prime is [Ben Tennyson Ben's] transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian].
This form was designed by [Derrick J Wyatt] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
</div>
<div class="tabbox">
<div class="tab">placeholder</div>
Contents of the third tab will go here.
</div>
</div>
547d1b1b6a5d02dbefb97d4fb6dd12e525c8b8e3
43
42
2020-05-26T04:16:30Z
Jaswacker
30585766
/* Decimus Prime */
wikitext
text/x-wiki
{{trix|test}}
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">Mentioned</div>
These aliens have only been mentioned in the show, but have had no on-screen appearances currently.
== Snakepit ==
placeholder
== Sandbox ==
placeholder
== Shellhead ==
placeholder
</div>
<div class="tabbox">
<div class="tab">Non-Canon</div>
These transformations are considered [Continuity#Non-Canon non-canon]. They have not appeared in any seen continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
== Decimus Prime ==
[[File:DecimusPrime_RobotMode.jpeg|thumb|300px]]
Decimus Prime is [[Ben Tennyson Ben's]] transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian].
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
</div>
<div class="tabbox">
<div class="tab">placeholder</div>
Contents of the third tab will go here.
</div>
</div>
851a519aadf5885db3eb2d748e738d403f844a1d
44
43
2020-05-26T04:23:28Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|test}}
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">Mentioned</div>
These aliens have only been mentioned in the show, but have had no on-screen appearances currently.
__TOC__
== Snakepit ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode '''[[Ken 10]].'''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
== Sandbox ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode '''[[Ken 10]].'''
Sandbox is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
== Shellhead ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode '''[[Ken 10]].'''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
</div>
<div class="tabbox">
<div class="tab">Non-Canon</div>
These transformations are considered [[Continuity#Non-Canon non-canon]]. They have not appeared in any seen continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
__TOC__
== Decimus Prime ==
[[File:DecimusPrime_RobotMode.jpeg|thumb|200px]]
[[File:DecimusPrime_AltMode.jpeg|thumb|200px]]
Decimus Prime is [[Ben Tennyson Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''Transformers'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
</div>
<div class="tabbox">
<div class="tab">placeholder</div>
Contents of the third tab will go here.
</div>
</div>
df1f9664da78be6b45e4570fdd7984281c6bf3d1
45
44
2020-05-26T04:25:13Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|test}}
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">Mentioned</div>
These aliens have only been mentioned in the show, but have had no on-screen appearances currently.
== Snakepit ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
== Sandbox ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Sandbox is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
== Shellhead ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
</div>
<div class="tabbox">
<div class="tab">Non-Canon</div>
These transformations are considered [[Continuity#Non-Canon non-canon]]. They have not appeared in any seen continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
== Decimus Prime ==
[[File:DecimusPrime_RobotMode.jpeg|thumb|200px]]
[[File:DecimusPrime_AltMode.jpeg|thumb|200px]]
Decimus Prime is [[Ben Tennyson Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
</div>
<div class="tabbox">
<div class="tab">placeholder</div>
Contents of the third tab will go here.
</div>
</div>
e451864e2f0a4a01e5797a0b81007949b400048b
46
45
2020-05-26T04:25:40Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|test}}
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">Mentioned</div>
These aliens have only been mentioned in the show, but have had no on-screen appearances currently.
== Snakepit ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
== Sandbox ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Sandbox is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
== Shellhead ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
</div>
<div class="tabbox">
<div class="tab">Non-Canon</div>
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any seen continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
== Decimus Prime ==
[[File:DecimusPrime_RobotMode.jpeg|thumb|200px]]
[[File:DecimusPrime_AltMode.jpeg|thumb|200px]]
Decimus Prime is [[Ben Tennyson Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
</div>
<div class="tabbox">
<div class="tab">placeholder</div>
Contents of the third tab will go here.
</div>
</div>
8464c9f2605458a886ecddca367de27600ed8202
47
46
2020-05-26T04:27:08Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|os|af|ov|bio|reboot}}
__NOTOC__
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">Mentioned</div>
These aliens have only been mentioned in the show, but have had no on-screen appearances currently.
== Snakepit ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
== Sandbox ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Sandbox is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
== Shellhead ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
</div>
<div class="tabbox">
<div class="tab">Non-Canon</div>
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any seen continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
== Decimus Prime ==
[[File:DecimusPrime_RobotMode.jpeg|thumb|200px]]
[[File:DecimusPrime_AltMode.jpeg|thumb|200px]]
Decimus Prime is [[Ben Tennyson Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
</div>
<div class="tabbox">
<div class="tab">placeholder</div>
Contents of the third tab will go here.
</div>
</div>
dd77ba80ad9fba67989081e4159699401dfae039
48
47
2020-05-26T04:29:03Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|os|af|ov|bio|reboot}}
__NOTOC__
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">Mentioned</div>
These aliens have only been mentioned in the show, but have had no on-screen appearances currently.
== Snakepit ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
== Sandbox ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Sandbox is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
== Shellhead ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
</div>
<div class="tabbox">
<div class="tab">Non-Canon</div>
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any seen continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
== Decimus Prime ==
[[File:DecimusPrime_RobotMode.jpeg|thumb|200px]]
[[File:DecimusPrime_AltMode.jpeg|thumb|200px]]
Decimus Prime is [[Ben Tennyson Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
</div>
<div class="tabbox">
<div class="tab">placeholder</div>
Contents of the third tab will go here.
</div>
</div>
54ada6635920aca5c8ebe11463c2c9af866243a5
49
48
2020-05-26T04:29:36Z
Jaswacker
30585766
/* Decimus Prime */
wikitext
text/x-wiki
{{trix|os|af|ov|bio|reboot}}
__NOTOC__
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">Mentioned</div>
These aliens have only been mentioned in the show, but have had no on-screen appearances currently.
== Snakepit ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
== Sandbox ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Sandbox is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
== Shellhead ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
</div>
<div class="tabbox">
<div class="tab">Non-Canon</div>
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any seen continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
== Decimus Prime ==
[[File:DecimusPrime_RobotMode.jpeg|thumb|200px]]
[[File:DecimusPrime_AltMode.jpeg|thumb|200px]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
</div>
<div class="tabbox">
<div class="tab">placeholder</div>
Contents of the third tab will go here.
</div>
</div>
bca2f0ee2325aa6ee0e765d8baca8177c112b52d
Template:Trix
10
5
11
2020-05-26T02:02:51Z
Jaswacker
30585766
Created page with "<div id="title-trixicons" style="float: right; display: none;">{{Trix/icons|option={{{1|}}}}}{{Trix/icons|option={{{2|}}}}}{{Trix/icons|option={{{3|}}}}}{{Trix/icons|option={{..."
wikitext
text/x-wiki
<div id="title-trixicons" style="float: right; display: none;">{{Trix/icons|option={{{1|}}}}}{{Trix/icons|option={{{2|}}}}}{{Trix/icons|option={{{3|}}}}}{{Trix/icons|option={{{4|}}}}}{{Trix/icons|option={{{5|}}}}}</div>
70297331e6d5bf877d1e4b003a1e2c1f7c96ee2c
22
11
2020-05-26T03:14:25Z
Jaswacker
30585766
wikitext
text/x-wiki
<div id="title-trixicons" style="float: right; display: none;">{{Trix/icons|option={{{1|}}}}}{{Trix/icons|option={{{2|}}}}}{{Trix/icons|option={{{3|}}}}}{{Trix/icons|option={{{4|}}}}}{{Trix/icons|option={{{5|}}}}}</div>
[[Category:Templates]]
654972bfc9c9f271f1a300723a6bc3f2103af1d1
23
22
2020-05-26T03:21:57Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div id="title-trixicons" style="float: right; display: none;">{{Trix/icons|option={{{1|}}}}}{{Trix/icons|option={{{2|}}}}}{{Trix/icons|option={{{3|}}}}}{{Trix/icons|option={{{4|}}}}}{{Trix/icons|option={{{5|}}}}}{{Trix/icons|option={{{6|}}}}}{{Trix/icons|option={{{7|}}}}}{{Trix/icons|option={{{8|}}}}}{{Trix/icons|option={{{9|}}}}}{{Trix/icons|option={{{10|}}}}}</div></includeonly><noinclude>{{doc}}
[[Category:Templates]]
</noinclude>
2bb03314f08e11f2d4c9758763ae0cdce09b1cfa
24
23
2020-05-26T03:22:44Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div id="title-trixicons" style="float: right; display: none;">{{Trix/icons|option={{{1|}}}}}{{Trix/icons|option={{{2|}}}}}{{Trix/icons|option={{{3|}}}}}{{Trix/icons|option={{{4|}}}}}{{Trix/icons|option={{{5|}}}}}{{Trix/icons|option={{{6|}}}}}{{Trix/icons|option={{{7|}}}}}{{Trix/icons|option={{{8|}}}}}{{Trix/icons|option={{{9|}}}}}{{Trix/icons|option={{{10|}}}}}</div></includeonly><noinclude>
[[Category:Templates]]
</noinclude>
71fe12dcac88bc02d2b4d15f10956f8cb4f20d39
25
24
2020-05-26T03:25:59Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div id="title-trixicons" style="float: right; display: none;">{{Trix/icons|option={{{1|}}}}}{{Trix/icons|option={{{2|}}}}}{{Trix/icons|option={{{3|}}}}}{{Trix/icons|option={{{4|}}}}}{{Trix/icons|option={{{5|}}}}}{{Trix/icons|option={{{6|}}}}}{{Trix/icons|option={{{7|}}}}}{{Trix/icons|option={{{8|}}}}}{{Trix/icons|option={{{9|}}}}}{{Trix/icons|option={{{10|}}}}}</div></includeonly><noinclude>{{doc}}
[[Category:Templates]]
</noinclude>
2bb03314f08e11f2d4c9758763ae0cdce09b1cfa
29
25
2020-05-26T03:37:04Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div id="title-trixicons" style="float: right; display: none;">{{Trix/icons|option={{{1|}}}}}{{Trix/icons|option={{{2|}}}}}{{Trix/icons|option={{{3|}}}}}{{Trix/icons|option={{{4|}}}}}{{Trix/icons|option={{{5|}}}}}{{Trix/icons|option={{{6|}}}}}{{Trix/icons|option={{{7|}}}}}{{Trix/icons|option={{{8|}}}}}{{Trix/icons|option={{{9|}}}}}{{Trix/icons|option={{{10|}}}}}</div></includeonly><noinclude>{{Trix/doc}}
[[Category:Templates]]
</noinclude>
0d413d7c0ab72c61beab668d700ab73323a54c05
Upchuck
0
6
13
2020-05-26T03:00:09Z
Jaswacker
30585766
Created page with "{{trix|os|af|ua|ov}} placeholder"
wikitext
text/x-wiki
{{trix|os|af|ua|ov}}
placeholder
cc07a748c89f79e5d66886a3f1af6087a4eb1271
Template:Trix/icons recurs
10
7
14
2020-05-26T03:08:06Z
Jaswacker
30585766
Created page with "{{#if:{{{custom|}}}| {{#tag:imagemap |File:{{{custom}}}{{!}}{{{cSize|30px}}} default [[{{{cLink}}}{{!}}{{{cPretty|{{{cLink}}}}}}]] desc none }}|}}<noinclude> </noinclude>"
wikitext
text/x-wiki
{{#if:{{{custom|}}}|
{{#tag:imagemap
|File:{{{custom}}}{{!}}{{{cSize|30px}}}
default [[{{{cLink}}}{{!}}{{{cPretty|{{{cLink}}}}}}]]
desc none
}}|}}<noinclude>
</noinclude>
0e4638e90cf9563ccf3e356184e3ccd4479cb6b1
21
14
2020-05-26T03:14:02Z
Jaswacker
30585766
wikitext
text/x-wiki
{{#if:{{{custom|}}}|
{{#tag:imagemap
|File:{{{custom}}}{{!}}{{{cSize|30px}}}
default [[{{{cLink}}}{{!}}{{{cPretty|{{{cLink}}}}}}]]
desc none
}}|}}<noinclude>
[[Category:Templates]]
</noinclude>
37109bb0245c48cf6284057d9cc3d1089a520d6c
File:UAF Icon.png
6
9
16
2020-05-26T03:11:48Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Category:Templates
14
11
18
2020-05-26T03:12:55Z
Jaswacker
30585766
Created blank page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Template:Trix/icons
10
12
19
2020-05-26T03:13:21Z
Jaswacker
30585766
Created page with "<includeonly>{{#if:{{{custom|}}}| {{#tag:imagemap |Image:{{{custom}}}{{!}}{{{cSize|30px}}} default [[{{{cLink}}}{{!}}{{{cPretty|{{{cLink}}}}}}]] desc none }}|}}<!-- Options..."
wikitext
text/x-wiki
<includeonly>{{#if:{{{custom|}}}|
{{#tag:imagemap
|Image:{{{custom}}}{{!}}{{{cSize|30px}}}
default [[{{{cLink}}}{{!}}{{{cPretty|{{{cLink}}}}}}]]
desc none
}}|}}<!--
Options
-->{{#if:{{{option|}}}|{{#switch:{{{option}}}
|os={{trix/icons_recurs|custom=OS_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Original Series}}
|osau={{trix/icons_recurs|custom=OS_icon.png|cLink=Continuity#Non-Canon|cPretty=Alternate Universe}}
|af={{trix/icons_recurs|custom=UAF_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Alien Force}}
|ua={{trix/icons_recurs|custom=UAF_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Alien}}
|uafalbedo={{trix/icons_recurs|custom=UAF_icon_alb.png|cLink=Albedo}}
|uafult={{trix/icons_recurs|custom=ULT_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Form}}
|uafultalbedo={{trix/icons_recurs|custom=ULT_icon_alb.png|cLink=Albedo|cPretty=Ultimate Form}}
|ov={{trix/icons_recurs|custom=OV_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Omniverse}}
|ovalbedo={{trix/icons_recurs|custom=OV_icon_alb.png|cLink=Albedo}}
|ovultalbedo={{trix/icons_recurs|custom=OVULT_icon_alb.png|cLink=Albedo|cPretty=Ultimate Form}}
|ov23={{trix/icons_recurs|custom=B23_icon.png|cLink=Ben Tennyson (Dimension 23)|cPretty=Ben 23}}
|ovgwen={{trix/icons_recurs|custom=G10_icon.png|cLink=Gwen Tennyson (dimen)|cPretty=Gwen 10}}
|ovmad={{trix/icons_recurs|custom=MAD_icon.png|cLink=Mad Ben}}
|ovbad={{trix/icons_recurs|custom=BAD_icon.png|cLink=Bad Ben}}
|ovnega={{trix/icons_recurs|custom=NEG_icon.png|cLink=Nega Ben}}
|ovbenzarro={{trix/icons_recurs|custom=ZAR_icon.png|cLink=Benzarro}}
|reboot={{trix/icons_recurs|custom=RB_icon.png|cLink=Ben Tennyson (Reboot)|cPretty=Reboot}}
|fusion={{trix/icons_recurs|custom=FSN_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Fusion Alien}}
|bio={{trix/icons_recurs|custom=BIO_icon.png|cLink=Ben 10,000 (Omniverse)|cPretty=Fusion Alien}}
|{{{option}}}
}}|}}
</includeonly><noinclude>
[[Category:Templates]]
<pre>{{factions/icons_recurs
|custom=OV_icon.png
|cLink=Ben Tennyson (Prime)
|cPretty=Omniverse - Mouseover text, if different from the Link
|cSize=30px - Override the default size
}}</pre>
</noinclude>
8cc4497a911702fec4836edddbb76d09dd0c551e
20
19
2020-05-26T03:13:41Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{{#if:{{{custom|}}}|
{{#tag:imagemap
|Image:{{{custom}}}{{!}}{{{cSize|30px}}}
default [[{{{cLink}}}{{!}}{{{cPretty|{{{cLink}}}}}}]]
desc none
}}|}}<!--
Options
-->{{#if:{{{option|}}}|{{#switch:{{{option}}}
|os={{trix/icons_recurs|custom=OS_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Original Series}}
|osau={{trix/icons_recurs|custom=OS_icon.png|cLink=Continuity#Non-Canon|cPretty=Alternate Universe}}
|af={{trix/icons_recurs|custom=UAF_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Alien Force}}
|ua={{trix/icons_recurs|custom=UAF_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Alien}}
|uafalbedo={{trix/icons_recurs|custom=UAF_icon_alb.png|cLink=Albedo}}
|uafult={{trix/icons_recurs|custom=ULT_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Form}}
|uafultalbedo={{trix/icons_recurs|custom=ULT_icon_alb.png|cLink=Albedo|cPretty=Ultimate Form}}
|ov={{trix/icons_recurs|custom=OV_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Omniverse}}
|ovalbedo={{trix/icons_recurs|custom=OV_icon_alb.png|cLink=Albedo}}
|ovultalbedo={{trix/icons_recurs|custom=OVULT_icon_alb.png|cLink=Albedo|cPretty=Ultimate Form}}
|ov23={{trix/icons_recurs|custom=B23_icon.png|cLink=Ben Tennyson (Dimension 23)|cPretty=Ben 23}}
|ovgwen={{trix/icons_recurs|custom=G10_icon.png|cLink=Gwen Tennyson (dimen)|cPretty=Gwen 10}}
|ovmad={{trix/icons_recurs|custom=MAD_icon.png|cLink=Mad Ben}}
|ovbad={{trix/icons_recurs|custom=BAD_icon.png|cLink=Bad Ben}}
|ovnega={{trix/icons_recurs|custom=NEG_icon.png|cLink=Nega Ben}}
|ovbenzarro={{trix/icons_recurs|custom=ZAR_icon.png|cLink=Benzarro}}
|reboot={{trix/icons_recurs|custom=RB_icon.png|cLink=Ben Tennyson (Reboot)|cPretty=Reboot}}
|fusion={{trix/icons_recurs|custom=FSN_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Fusion Alien}}
|bio={{trix/icons_recurs|custom=BIO_icon.png|cLink=Ben 10,000 (Omniverse)|cPretty=Fusion Alien}}
|{{{option}}}
}}|}}
</includeonly><noinclude>
[[Category:Templates]]
<pre>{{trix/icons_recurs
|custom=OV_icon.png
|cLink=Ben Tennyson (Prime)
|cPretty=Omniverse - Mouseover text, if different from the Link
|cSize=30px - Override the default size
}}</pre>
</noinclude>
4d1fbebc01049c321226e79eb082d4fa1b47b433
30
20
2020-05-26T03:38:20Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{{#if:{{{custom|}}}|
{{#tag:imagemap
|Image:{{{custom}}}{{!}}{{{cSize|30px}}}
default [[{{{cLink}}}{{!}}{{{cPretty|{{{cLink}}}}}}]]
desc none
}}|}}<!--
Options
-->{{#if:{{{option|}}}|{{#switch:{{{option}}}
|os={{trix/icons_recurs|custom=OS icon.png.png|cLink=Ben Tennyson (Prime)|cPretty=Original Series}}
|osau={{trix/icons_recurs|custom=OS_icon.png|cLink=Continuity#Non-Canon|cPretty=Alternate Universe}}
|af={{trix/icons_recurs|custom=UAF_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Alien Force}}
|ua={{trix/icons_recurs|custom=UAF_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Alien}}
|uafalbedo={{trix/icons_recurs|custom=UAF_icon_alb.png|cLink=Albedo}}
|uafult={{trix/icons_recurs|custom=ULT_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Form}}
|uafultalbedo={{trix/icons_recurs|custom=ULT_icon_alb.png|cLink=Albedo|cPretty=Ultimate Form}}
|ov={{trix/icons_recurs|custom=OV_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Omniverse}}
|ovalbedo={{trix/icons_recurs|custom=OV_icon_alb.png|cLink=Albedo}}
|ovultalbedo={{trix/icons_recurs|custom=OVULT_icon_alb.png|cLink=Albedo|cPretty=Ultimate Form}}
|ov23={{trix/icons_recurs|custom=B23_icon.png|cLink=Ben Tennyson (Dimension 23)|cPretty=Ben 23}}
|ovgwen={{trix/icons_recurs|custom=G10_icon.png|cLink=Gwen Tennyson (dimen)|cPretty=Gwen 10}}
|ovmad={{trix/icons_recurs|custom=MAD_icon.png|cLink=Mad Ben}}
|ovbad={{trix/icons_recurs|custom=BAD_icon.png|cLink=Bad Ben}}
|ovnega={{trix/icons_recurs|custom=NEG_icon.png|cLink=Nega Ben}}
|ovbenzarro={{trix/icons_recurs|custom=ZAR_icon.png|cLink=Benzarro}}
|reboot={{trix/icons_recurs|custom=RB_icon.png|cLink=Ben Tennyson (Reboot)|cPretty=Reboot}}
|fusion={{trix/icons_recurs|custom=FSN_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Fusion Alien}}
|bio={{trix/icons_recurs|custom=BIO_icon.png|cLink=Ben 10,000 (Omniverse)|cPretty=Fusion Alien}}
|{{{option}}}
}}|}}
</includeonly><noinclude>
[[Category:Templates]]
<pre>{{trix/icons_recurs
|custom=OV_icon.png
|cLink=Ben Tennyson (Prime)
|cPretty=Omniverse - Mouseover text, if different from the Link
|cSize=30px - Override the default size
}}</pre>
</noinclude>
27ec2352f0f899edebc595957c7338b9d0be6df5
33
30
2020-05-26T03:41:47Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{{#if:{{{custom|}}}|
{{#tag:imagemap
|Image:{{{custom}}}{{!}}{{{cSize|30px}}}
default [[{{{cLink}}}{{!}}{{{cPretty|{{{cLink}}}}}}]]
desc none
}}|}}<!--
Options
-->{{#if:{{{option|}}}|{{#switch:{{{option}}}
|os={{trix/icons_recurs|custom=OS icon.png.png|cLink=Ben Tennyson (Prime)|cPretty=Original Series}}
|osau={{trix/icons_recurs|custom=OS_icon.png|cLink=Continuity#Non-Canon|cPretty=Alternate Universe}}
|af={{trix/icons_recurs|custom=UAF_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Alien Force}}
|ua={{trix/icons_recurs|custom=UAF_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Alien}}
|uafalbedo={{trix/icons_recurs|custom=UAF_icon_alb.png|cLink=Albedo}}
|uafult={{trix/icons_recurs|custom=ULT_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Form}}
|uafultalbedo={{trix/icons_recurs|custom=ULT_icon_alb.png|cLink=Albedo|cPretty=Ultimate Form}}
|ov={{trix/icons_recurs|custom=OV_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Omniverse}}
|ovalbedo={{trix/icons_recurs|custom=OV_icon_alb.png|cLink=Albedo}}
|ovultalbedo={{trix/icons_recurs|custom=OVULT_icon_alb.png|cLink=Albedo|cPretty=Ultimate Form}}
|ovtt={{trix/icons_recurs|custom=B23_icon.png|cLink=Ben Tennyson (Dimension 23)|cPretty=Ben 23}}
|ovgwen={{trix/icons_recurs|custom=G10_icon.png|cLink=Gwen Tennyson (dimen)|cPretty=Gwen 10}}
|ovmad={{trix/icons_recurs|custom=MAD_icon.png|cLink=Mad Ben}}
|ovbad={{trix/icons_recurs|custom=BAD_icon.png|cLink=Bad Ben}}
|ovnega={{trix/icons_recurs|custom=NEG_icon.png|cLink=Nega Ben}}
|ovbenzarro={{trix/icons_recurs|custom=ZAR_icon.png|cLink=Benzarro}}
|reboot={{trix/icons_recurs|custom=RB_icon.png|cLink=Ben Tennyson (Reboot)|cPretty=Reboot}}
|fusion={{trix/icons_recurs|custom=FSN_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Fusion Alien}}
|bio={{trix/icons_recurs|custom=BIO_icon.png|cLink=Ben 10,000 (Omniverse)|cPretty=Fusion Alien}}
|{{{option}}}
}}|}}
</includeonly><noinclude>
[[Category:Templates]]
<pre>{{trix/icons_recurs
|custom=OV_icon.png
|cLink=Ben Tennyson (Prime)
|cPretty=Omniverse - Mouseover text, if different from the Link
|cSize=30px - Override the default size
}}</pre>
</noinclude>
511a8d471bee089d7b1a517525b19fb560c43eba
35
33
2020-05-26T03:43:55Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{{#if:{{{custom|}}}|
{{#tag:imagemap
|Image:{{{custom}}}{{!}}{{{cSize|30px}}}
default [[{{{cLink}}}{{!}}{{{cPretty|{{{cLink}}}}}}]]
desc none
}}|}}<!--
Options
-->{{#if:{{{option|}}}|{{#switch:{{{option}}}
|os={{trix/icons_recurs|custom=OS_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Original Series}}
|osau={{trix/icons_recurs|custom=OS_icon.png|cLink=Continuity#Non-Canon|cPretty=Alternate Universe}}
|af={{trix/icons_recurs|custom=UAF_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Alien Force}}
|ua={{trix/icons_recurs|custom=UAF_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Alien}}
|uafalbedo={{trix/icons_recurs|custom=UAF_icon_alb.png|cLink=Albedo}}
|uafult={{trix/icons_recurs|custom=ULT_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Form}}
|uafultalbedo={{trix/icons_recurs|custom=ULT_icon_alb.png|cLink=Albedo|cPretty=Ultimate Form}}
|ov={{trix/icons_recurs|custom=OV_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Omniverse}}
|ovalbedo={{trix/icons_recurs|custom=OV_icon_alb.png|cLink=Albedo}}
|ovultalbedo={{trix/icons_recurs|custom=OVULT_icon_alb.png|cLink=Albedo|cPretty=Ultimate Form}}
|ovtt={{trix/icons_recurs|custom=B23_icon.png|cLink=Ben Tennyson (Dimension 23)|cPretty=Ben 23}}
|ovgwen={{trix/icons_recurs|custom=G10_icon.png|cLink=Gwen Tennyson (dimen)|cPretty=Gwen 10}}
|ovmad={{trix/icons_recurs|custom=MAD_icon.png|cLink=Mad Ben}}
|ovbad={{trix/icons_recurs|custom=BAD_icon.png|cLink=Bad Ben}}
|ovnega={{trix/icons_recurs|custom=NEG_icon.png|cLink=Nega Ben}}
|ovbenzarro={{trix/icons_recurs|custom=ZAR_icon.png|cLink=Benzarro}}
|reboot={{trix/icons_recurs|custom=RB_icon.png|cLink=Ben Tennyson (Reboot)|cPretty=Reboot}}
|fusion={{trix/icons_recurs|custom=FSN_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Fusion Alien}}
|bio={{trix/icons_recurs|custom=BIO_icon.png|cLink=Ben 10,000 (Omniverse)|cPretty=Fusion Alien}}
|{{{option}}}
}}|}}
</includeonly><noinclude>
[[Category:Templates]]
<pre>{{trix/icons_recurs
|custom=OV_icon.png
|cLink=Ben Tennyson (Prime)
|cPretty=Omniverse - Mouseover text, if different from the Link
|cSize=30px - Override the default size
}}</pre>
</noinclude>
e570d3de2d7658c15bc30145e4854c39d520bb75
36
35
2020-05-26T03:44:36Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{{#if:{{{custom|}}}|
{{#tag:imagemap
|Image:{{{custom}}}{{!}}{{{cSize|30px}}}
default [[{{{cLink}}}{{!}}{{{cPretty|{{{cLink}}}}}}]]
desc none
}}|}}<!--
Options
-->{{#if:{{{option|}}}|{{#switch:{{{option}}}
|os={{trix/icons_recurs|custom=File:OS_icon.png.png|cLink=Ben Tennyson (Prime)|cPretty=Original Series}}
|osau={{trix/icons_recurs|custom=OS_icon.png|cLink=Continuity#Non-Canon|cPretty=Alternate Universe}}
|af={{trix/icons_recurs|custom=UAF_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Alien Force}}
|ua={{trix/icons_recurs|custom=UAF_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Alien}}
|uafalbedo={{trix/icons_recurs|custom=UAF_icon_alb.png|cLink=Albedo}}
|uafult={{trix/icons_recurs|custom=ULT_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Form}}
|uafultalbedo={{trix/icons_recurs|custom=ULT_icon_alb.png|cLink=Albedo|cPretty=Ultimate Form}}
|ov={{trix/icons_recurs|custom=OV_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Omniverse}}
|ovalbedo={{trix/icons_recurs|custom=OV_icon_alb.png|cLink=Albedo}}
|ovultalbedo={{trix/icons_recurs|custom=OVULT_icon_alb.png|cLink=Albedo|cPretty=Ultimate Form}}
|ovtt={{trix/icons_recurs|custom=B23_icon.png|cLink=Ben Tennyson (Dimension 23)|cPretty=Ben 23}}
|ovgwen={{trix/icons_recurs|custom=G10_icon.png|cLink=Gwen Tennyson (dimen)|cPretty=Gwen 10}}
|ovmad={{trix/icons_recurs|custom=MAD_icon.png|cLink=Mad Ben}}
|ovbad={{trix/icons_recurs|custom=BAD_icon.png|cLink=Bad Ben}}
|ovnega={{trix/icons_recurs|custom=NEG_icon.png|cLink=Nega Ben}}
|ovbenzarro={{trix/icons_recurs|custom=ZAR_icon.png|cLink=Benzarro}}
|reboot={{trix/icons_recurs|custom=RB_icon.png|cLink=Ben Tennyson (Reboot)|cPretty=Reboot}}
|fusion={{trix/icons_recurs|custom=FSN_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Fusion Alien}}
|bio={{trix/icons_recurs|custom=BIO_icon.png|cLink=Ben 10,000 (Omniverse)|cPretty=Fusion Alien}}
|{{{option}}}
}}|}}
</includeonly><noinclude>
[[Category:Templates]]
<pre>{{trix/icons_recurs
|custom=OV_icon.png
|cLink=Ben Tennyson (Prime)
|cPretty=Omniverse - Mouseover text, if different from the Link
|cSize=30px - Override the default size
}}</pre>
</noinclude>
1cdb3f48c63b032c48a7bec8ef1fc2c951eecc10
37
36
2020-05-26T03:45:08Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{{#if:{{{custom|}}}|
{{#tag:imagemap
|Image:{{{custom}}}{{!}}{{{cSize|30px}}}
default [[{{{cLink}}}{{!}}{{{cPretty|{{{cLink}}}}}}]]
desc none
}}|}}<!--
Options
-->{{#if:{{{option|}}}|{{#switch:{{{option}}}
|os={{trix/icons_recurs|custom=OS_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Original Series}}
|osau={{trix/icons_recurs|custom=OS_icon.png|cLink=Continuity#Non-Canon|cPretty=Alternate Universe}}
|af={{trix/icons_recurs|custom=UAF_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Alien Force}}
|ua={{trix/icons_recurs|custom=UAF_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Alien}}
|uafalbedo={{trix/icons_recurs|custom=UAF_icon_alb.png|cLink=Albedo}}
|uafult={{trix/icons_recurs|custom=ULT_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Form}}
|uafultalbedo={{trix/icons_recurs|custom=ULT_icon_alb.png|cLink=Albedo|cPretty=Ultimate Form}}
|ov={{trix/icons_recurs|custom=OV_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Omniverse}}
|ovalbedo={{trix/icons_recurs|custom=OV_icon_alb.png|cLink=Albedo}}
|ovultalbedo={{trix/icons_recurs|custom=OVULT_icon_alb.png|cLink=Albedo|cPretty=Ultimate Form}}
|ovtt={{trix/icons_recurs|custom=B23_icon.png|cLink=Ben Tennyson (Dimension 23)|cPretty=Ben 23}}
|ovgwen={{trix/icons_recurs|custom=G10_icon.png|cLink=Gwen Tennyson (dimen)|cPretty=Gwen 10}}
|ovmad={{trix/icons_recurs|custom=MAD_icon.png|cLink=Mad Ben}}
|ovbad={{trix/icons_recurs|custom=BAD_icon.png|cLink=Bad Ben}}
|ovnega={{trix/icons_recurs|custom=NEG_icon.png|cLink=Nega Ben}}
|ovbenzarro={{trix/icons_recurs|custom=ZAR_icon.png|cLink=Benzarro}}
|reboot={{trix/icons_recurs|custom=RB_icon.png|cLink=Ben Tennyson (Reboot)|cPretty=Reboot}}
|fusion={{trix/icons_recurs|custom=FSN_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Fusion Alien}}
|bio={{trix/icons_recurs|custom=BIO_icon.png|cLink=Ben 10,000 (Omniverse)|cPretty=Fusion Alien}}
|{{{option}}}
}}|}}
</includeonly><noinclude>
[[Category:Templates]]
<pre>{{trix/icons_recurs
|custom=OV_icon.png
|cLink=Ben Tennyson (Prime)
|cPretty=Omniverse - Mouseover text, if different from the Link
|cSize=30px - Override the default size
}}</pre>
</noinclude>
e570d3de2d7658c15bc30145e4854c39d520bb75
Template:Trix/doc
10
13
26
2020-05-26T03:35:28Z
Jaswacker
30585766
Created page with "<pre>{{trix |os |ov}} </pre> {{trix|os|ov}} ==Trix icon names== Trix icon names used by this template are lowercase. Any mis-typed text not recognized as the template will b..."
wikitext
text/x-wiki
<pre>{{trix
|os
|ov}}
</pre>
{{trix|os|ov}}
==Trix icon names==
Trix icon names used by this template are lowercase. Any mis-typed text not recognized as the template will be rendered as text. (You will notice, it's hard to miss.)
{| class="prettytable sortable" border="1"
|-
!ICON NAME
!TEMPLATE TEXT
!ICON
|-
|Original Series ||os ||{{Trix/icons|option=os }}
|-
|Alternate Universe ||osau ||{{Trix/icons|option=osau }}
|-
|Alien Force ||af ||{{Trixs/icons|option=af }}
|-
|Ultimate Alien ||ua ||{{Trix/icons|option=ua }}
|-
|Albedo (UAF) ||uafalbedo ||{{Trix/icons|option=uafalbedo }}
|-
|Ultimate Form (UAF) ||uafult ||{{Trix/icons|option=uafult}}
|-
|Albedo Ultimate Form (UAF) ||uafultalbedo ||{{Trix/icons|option=uafultalbedo}}
|-
|Omniverse ||ov ||{{Trix/icons|option=ov}}
|-
|Albedo Ultimate Form (OV) ||ovultalbedo ||{{Trix/icons|option=ovultalbedo}}
|-
|Ben 23 ||ov23 ||{{Trix/icons|option=ov23 }}
|-
|Gwen 10 (OV) ||predacon ||{{Trix/icons|option=ovgwen }}
|-
|Mad Ben ||maximalbm ||{{Trix/icons|option=ovmad }}
|-
|Bad Ben ||vehicon ||{{Trix/icons|option=ovbad }}
|-
|Nega Ben ||dinobot ||{{Trix/icons|option=ovnega }}
|-
|Benzarro ||mutant ||{{Trix/icons|option=ovbenzarro }}
|-
|Reboot||predaconrid ||{{Trix/icons|option=reboot }}
|-
|Fusion Alien ||wreckers ||{{Trix/icons|option=fusion }}
|-
|Biomnitrix Alien ||minicon ||{{Trix/icons|option=bio }}
|}
068f2c582fbf82dcb3d927035c19c3ece1032717
27
26
2020-05-26T03:35:53Z
Jaswacker
30585766
/* Trix icon names */
wikitext
text/x-wiki
<pre>{{trix
|os
|ov}}
</pre>
{{trix|os|ov}}
==Trix icon names==
Trix icon names used by this template are lowercase. Any mis-typed text not recognized as the template will be rendered as text. (You will notice, it's hard to miss.)
{| class="prettytable sortable" border="1"
|-
!ICON NAME
!TEMPLATE TEXT
!ICON
|-
|Original Series ||os ||{{Trix/icons|option=os }}
|-
|Alternate Universe ||osau ||{{Trix/icons|option=osau }}
|-
|Alien Force ||af ||{{Trix/icons|option=af }}
|-
|Ultimate Alien ||ua ||{{Trix/icons|option=ua }}
|-
|Albedo (UAF) ||uafalbedo ||{{Trix/icons|option=uafalbedo }}
|-
|Ultimate Form (UAF) ||uafult ||{{Trix/icons|option=uafult}}
|-
|Albedo Ultimate Form (UAF) ||uafultalbedo ||{{Trix/icons|option=uafultalbedo}}
|-
|Omniverse ||ov ||{{Trix/icons|option=ov}}
|-
|Albedo Ultimate Form (OV) ||ovultalbedo ||{{Trix/icons|option=ovultalbedo}}
|-
|Ben 23 ||ov23 ||{{Trix/icons|option=ov23 }}
|-
|Gwen 10 (OV) ||predacon ||{{Trix/icons|option=ovgwen }}
|-
|Mad Ben ||maximalbm ||{{Trix/icons|option=ovmad }}
|-
|Bad Ben ||vehicon ||{{Trix/icons|option=ovbad }}
|-
|Nega Ben ||dinobot ||{{Trix/icons|option=ovnega }}
|-
|Benzarro ||mutant ||{{Trix/icons|option=ovbenzarro }}
|-
|Reboot||predaconrid ||{{Trix/icons|option=reboot }}
|-
|Fusion Alien ||wreckers ||{{Trix/icons|option=fusion }}
|-
|Biomnitrix Alien ||minicon ||{{Trix/icons|option=bio }}
|}
3a1b0a538d656b90aaed905652b97d54f9a15f98
28
27
2020-05-26T03:36:35Z
Jaswacker
30585766
/* Trix icon names */
wikitext
text/x-wiki
<pre>{{trix
|os
|ov}}
</pre>
{{trix|os|ov}}
==Trix icon names==
Trix icon names used by this template are lowercase. Any mis-typed text not recognized as the template will be rendered as text. (You will notice, it's hard to miss.)
{| class="prettytable sortable" border="1"
|-
!ICON NAME
!TEMPLATE TEXT
!ICON
|-
|Original Series ||os ||{{Trix/icons|option=os }}
|-
|Alternate Universe ||osau ||{{Trix/icons|option=osau }}
|-
|Alien Force ||af ||{{Trix/icons|option=af }}
|-
|Ultimate Alien ||ua ||{{Trix/icons|option=ua }}
|-
|Albedo (UAF) ||uafalbedo ||{{Trix/icons|option=uafalbedo }}
|-
|Ultimate Form (UAF) ||uafult ||{{Trix/icons|option=uafult}}
|-
|Albedo Ultimate Form (UAF) ||uafultalbedo ||{{Trix/icons|option=uafultalbedo}}
|-
|Omniverse ||ov ||{{Trix/icons|option=ov}}
|-
|Albedo Ultimate Form (OV) ||ovultalbedo ||{{Trix/icons|option=ovultalbedo}}
|-
|Ben 23 ||ov23 ||{{Trix/icons|option=ov23 }}
|-
|Gwen 10 (OV) ||ovgwen ||{{Trix/icons|option=ovgwen }}
|-
|Mad Ben ||ovmad ||{{Trix/icons|option=ovmad }}
|-
|Bad Ben ||ovbad ||{{Trix/icons|option=ovbad }}
|-
|Nega Ben ||ovnega ||{{Trix/icons|option=ovnega }}
|-
|Benzarro ||ovbenzarro ||{{Trix/icons|option=ovbenzarro }}
|-
|Reboot ||reboot ||{{Trix/icons|option=reboot }}
|-
|Fusion Alien ||fusion ||{{Trix/icons|option=fusion }}
|-
|Biomnitrix Alien ||bio ||{{Trix/icons|option=bio }}
|}
f380355dda29972d901c5a20a4ad3eb6c9cfe34b
31
28
2020-05-26T03:40:02Z
Jaswacker
30585766
wikitext
text/x-wiki
<pre>{{trix
|os
|ov}}
</pre>
{{trix|os|ov}}
==Trix icon names==
Trix icon names used by this template are lowercase. Any mis-typed text not recognized as the template will be rendered as text. (You will notice, it's hard to miss.)
{| class="prettytable sortable" border="1"
|-
!ICON NAME
!TEMPLATE TEXT
!ICON
|-
|Original Series ||os ||{{Trix/icons|option=os }}
|-
|Alternate Universe ||osau ||{{Trix/icons|option=osau }}
|-
|Alien Force ||af ||{{Trix/icons|option=af }}
|-
|Ultimate Alien ||ua ||{{Trix/icons|option=ua }}
|-
|Albedo (UAF) ||uafalbedo ||{{Trix/icons|option=uafalbedo }}
|-
|Ultimate Form (UAF) ||uafult ||{{Trix/icons|option=uafult}}
|-
|Albedo Ultimate Form (UAF) ||uafultalbedo ||{{Trix/icons|option=uafultalbedo}}
|-
|Omniverse ||ov ||{{Trix/icons|option=ov}}
|-
|Albedo Ultimate Form (OV) ||ovultalbedo ||{{Trix/icons|option=ovultalbedo}}
|-
|Ben 23 ||ov23 ||{{Trix/icons|option=ov23 }}
|-
|Gwen 10 (OV) ||ovgwen ||{{Trix/icons|option=ovgwen }}
|-
|Mad Ben ||ovmad ||{{Trix/icons|option=ovmad }}
|-
|Bad Ben ||ovbad ||{{Trix/icons|option=ovbad }}
|-
|Nega Ben ||ovnega ||{{Trix/icons|option=ovnega }}
|-
|Benzarro ||ovbenzarro ||{{Trix/icons|option=ovbenzarro }}
|-
|Reboot ||reboot ||{{Trix/icons|option=reboot }}
|-
|Fusion Alien ||fusion ||{{Trix/icons|option=fusion }}
|-
|Biomnitrix Alien ||bio ||{{Trix/icons|option=bio }}
|}
[[Category:Templates]]
16cfd14178fc8035e32969d1cedc6859ac9633b7
32
31
2020-05-26T03:41:28Z
Jaswacker
30585766
/* Trix icon names */
wikitext
text/x-wiki
<pre>{{trix
|os
|ov}}
</pre>
{{trix|os|ov}}
==Trix icon names==
Trix icon names used by this template are lowercase. Any mis-typed text not recognized as the template will be rendered as text. (You will notice, it's hard to miss.)
{| class="prettytable sortable" border="1"
|-
!ICON NAME
!TEMPLATE TEXT
!ICON
|-
|Original Series ||os ||{{Trix/icons|option=os }}
|-
|Alternate Universe ||osau ||{{Trix/icons|option=osau }}
|-
|Alien Force ||af ||{{Trix/icons|option=af }}
|-
|Ultimate Alien ||ua ||{{Trix/icons|option=ua }}
|-
|Albedo (UAF) ||uafalbedo ||{{Trix/icons|option=uafalbedo }}
|-
|Ultimate Form (UAF) ||uafult ||{{Trix/icons|option=uafult}}
|-
|Albedo Ultimate Form (UAF) ||uafultalbedo ||{{Trix/icons|option=uafultalbedo}}
|-
|Omniverse ||ov ||{{Trix/icons|option=ov}}
|-
|Albedo Ultimate Form (OV) ||ovultalbedo ||{{Trix/icons|option=ovultalbedo}}
|-
|Ben 23 ||ovtt ||{{Trix/icons|option=ovtt }}
|-
|Gwen 10 (OV) ||ovgwen ||{{Trix/icons|option=ovgwen }}
|-
|Mad Ben ||ovmad ||{{Trix/icons|option=ovmad }}
|-
|Bad Ben ||ovbad ||{{Trix/icons|option=ovbad }}
|-
|Nega Ben ||ovnega ||{{Trix/icons|option=ovnega }}
|-
|Benzarro ||ovbenzarro ||{{Trix/icons|option=ovbenzarro }}
|-
|Reboot ||reboot ||{{Trix/icons|option=reboot }}
|-
|Fusion Alien ||fusion ||{{Trix/icons|option=fusion }}
|-
|Biomnitrix Alien ||bio ||{{Trix/icons|option=bio }}
|}
[[Category:Templates]]
661c96d236bcce00ff4d5d417c5b782ff7e36226
34
32
2020-05-26T03:42:32Z
Jaswacker
30585766
/* Trix icon names */
wikitext
text/x-wiki
<pre>{{trix
|os
|ov}}
</pre>
{{trix|os|ov}}
==Trix icon names==
Trix icon names used by this template are lowercase. Any mis-typed text not recognized as the template will be rendered as text. (You will notice, it's hard to miss.)
{| class="prettytable sortable" border="1"
|-
!ICON NAME
!TEMPLATE TEXT
!ICON
|-
|Original Series ||os ||{{Trix/icons|option=os }}
|-
|Alternate Universe ||osau ||{{Trix/icons|option=osau }}
|-
|Alien Force ||af ||{{Trix/icons|option=af }}
|-
|Ultimate Alien ||ua ||{{Trix/icons|option=ua }}
|-
|Albedo (UAF) ||uafalbedo ||{{Trix/icons|option=uafalbedo }}
|-
|Ultimate Form (UAF) ||uafult ||{{Trix/icons|option=uafult }}
|-
|Albedo Ultimate Form (UAF) ||uafultalbedo ||{{Trix/icons|option=uafultalbedo }}
|-
|Omniverse ||ov ||{{Trix/icons|option=ov }}
|-
|Albedo Ultimate Form (OV) ||ovultalbedo ||{{Trix/icons|option=ovultalbedo }}
|-
|Ben 23 ||ovtt ||{{Trix/icons|option=ovtt }}
|-
|Gwen 10 (OV) ||ovgwen ||{{Trix/icons|option=ovgwen }}
|-
|Mad Ben ||ovmad ||{{Trix/icons|option=ovmad }}
|-
|Bad Ben ||ovbad ||{{Trix/icons|option=ovbad }}
|-
|Nega Ben ||ovnega ||{{Trix/icons|option=ovnega }}
|-
|Benzarro ||ovbenzarro ||{{Trix/icons|option=ovbenzarro }}
|-
|Reboot ||reboot ||{{Trix/icons|option=reboot }}
|-
|Fusion Alien ||fusion ||{{Trix/icons|option=fusion }}
|-
|Biomnitrix Alien ||bio ||{{Trix/icons|option=bio }}
|}
[[Category:Templates]]
ee5adf86c63359724c475727f7e0715e76a71137
File:DecimusPrime RobotMode.jpeg
6
14
38
2020-05-26T04:05:19Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:DecimusPrime AltMode.jpeg
6
15
40
2020-05-26T04:14:08Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
MediaWiki:Common.js
8
2
53
52
2020-05-26T04:50:19Z
Jaswacker
30585766
javascript
text/javascript
/* Any JavaScript here will be loaded for all users on every page load. */
/**
* JS Tab System, jacked and hacked from the jsprefs in wikibits.js
*
* Original code by Dantman
* Refactored a bit by Jack Phoenix on 11 April 2014
* Support for linking to a particular tab by MatmaRex on 30 December 2016.
* @note Should be rewritten to properly use jQuery like how mediawiki.special.preferences.js does.
*/
var TabSystem = {
/**
* @property {boolean}
* Is the user's browser a KHTML-based one (usually, but not always, Konqueror)?
*/
isKHTML: ( navigator.vendor == 'KDE' || ( document.childNodes && !document.all && !navigator.taintEnabled ) ),
/**
* @property {boolean}
* Is the user's browser Opera?
*/
isOpera: navigator.userAgent.toLowerCase().indexOf( 'opera' ) != -1,
/*
Written by Jonathan Snook, http://www.snook.ca/jonathan
Add-ons by Robert Nyman, http://www.robertnyman.com
Author says "The credit comment is all it takes, no license. Go crazy with it!:-)"
From http://www.robertnyman.com/2005/11/07/the-ultimate-getelementsbyclassname/
*/
getElementsByClassName: function( oElm, strTagName, oClassNames ) {
var arrReturnElements = [];
if ( typeof oElm.getElementsByClassName == 'function' ) {
/* Use a native implementation where possible FF3, Saf3.2, Opera 9.5 */
var arrNativeReturn = oElm.getElementsByClassName( oClassNames );
if ( strTagName == '*' ) {
return arrNativeReturn;
}
for ( var h = 0; h < arrNativeReturn.length; h++ ) {
if ( arrNativeReturn[h].tagName.toLowerCase() == strTagName.toLowerCase() ) {
arrReturnElements[arrReturnElements.length] = arrNativeReturn[h];
}
}
return arrReturnElements;
}
var arrElements = ( strTagName == '*' && oElm.all ) ? oElm.all : oElm.getElementsByTagName( strTagName );
var arrRegExpClassNames = [];
if ( typeof oClassNames == 'object' ) {
for ( var i = 0; i < oClassNames.length; i++ ) {
arrRegExpClassNames[arrRegExpClassNames.length] =
new RegExp( "(^|\\s)" + oClassNames[i].replace( /\-/g, "\\-" ) + "(\\s|$)" );
}
} else {
arrRegExpClassNames[arrRegExpClassNames.length] =
new RegExp( "(^|\\s)" + oClassNames.replace( /\-/g, "\\-" ) + "(\\s|$)" );
}
var oElement;
var bMatchesAll;
for ( var j = 0; j < arrElements.length; j++ ) {
oElement = arrElements[j];
bMatchesAll = true;
for ( var k = 0; k < arrRegExpClassNames.length; k++ ) {
if ( !arrRegExpClassNames[k].test( oElement.className ) ) {
bMatchesAll = false;
break;
}
}
if ( bMatchesAll ) {
arrReturnElements[arrReturnElements.length] = oElement;
}
}
return arrReturnElements;
},
/**
* Main function that performs all the magic on all div elements that have
* class="tab" and are inside a div that has class="tabcontainer".
*/
main: function() {
var tabcontainers = TabSystem.getElementsByClassName( document, 'div', 'tabcontainer' );
for ( var tc = 0; tc < tabcontainers.length; tc++ ) {
if ( !tabcontainers[tc] || !document.createElement ) {
return;
}
if ( tabcontainers[tc].nodeName.toLowerCase() == 'a' ) {
return; // Occasional IE problem
}
tabcontainers[tc].className += ' jstabs';
var sections = [];
var children = tabcontainers[tc].childNodes;
var seci = 0;
for ( var i = 0; i < children.length; i++ ) {
if ( children[i].className && children[i].className.match( /tab/i ) ) {
children[i].id = 'tabsection-' + seci + '-' + tc;
children[i].className += ' tabsection';
// Opera and KHTML-based browsers get a special class
if ( TabSystem.isOpera || TabSystem.isKHTML ) {
children[i].className += ' tabsection operatabsection';
}
var legends = TabSystem.getElementsByClassName( children[i], 'div', 'tab' );
sections[seci] = {};
legends[0].className = 'mainTab';
if ( legends[0] && legends[0].firstChild.nodeValue ) {
sections[seci].text = legends[0].firstChild.nodeValue;
} else {
sections[seci].text = '# ' + seci;
}
sections[seci].secid = children[i].id;
seci++;
if ( sections.length != 1 ) {
children[i].style.display = 'none';
} else {
var selectedid = children[i].id;
}
}
}
var toc = document.createElement( 'ul' );
toc.className = 'tabtoc';
toc.id = 'tabtoc-' + tc;
toc.selectedid = selectedid;
for ( i = 0; i < sections.length; i++ ) {
var li = document.createElement( 'li' );
if ( i === 0 ) {
li.className = 'selected';
}
var a = document.createElement( 'a' );
a.href = '#' + sections[i].secid;
a.appendChild( document.createTextNode( sections[i].text ) );
a.secid = sections[i].secid;
li.appendChild( a );
toc.appendChild( li );
// Capture current value of variables in the closure
( function ( i, a ) {
$( window ).on( 'hashchange', function () {
if ( location.hash === '#' + sections[i].secid ) {
TabSystem.uncoverTabSection( toc, a );
}
} )
if ( location.hash === '#' + sections[i].secid ) {
TabSystem.uncoverTabSection( toc, a );
}
} )( i, a );
}
tabcontainers[tc].parentNode.insertBefore( toc, tabcontainers[tc] );
}
},
/**
* Show the contents of a tab section when the user clicks on the tab.
*
* @return {boolean} Always false
*/
uncoverTabSection: function( ul, a ) {
var oldsecid = ul.selectedid;
var newsec = document.getElementById( a.secid );
if ( oldsecid != a.secid ) {
document.getElementById( oldsecid ).style.display = 'none';
newsec.style.display = 'block';
ul.selectedid = a.secid;
var lis = ul.getElementsByTagName( 'li' );
for ( var i = 0; i < lis.length; i++ ) {
lis[i].className = '';
}
a.parentNode.className = 'selected';
}
return false;
}
};
// Attach the onload handler using jQuery.
$( function() {
TabSystem.main();
} );
/* Blatantly stolen from TFWiki's factions template */
function showTitles(className) {
if(typeof(SKIP_ERAS) != 'undefined' && SKIP_ERAS)
return;
var titleDiv = document.getElementById(className);
if(titleDiv == null || titleDiv == undefined)
return;
var cloneNode = titleDiv.cloneNode(true);
var firstHeading = getFirstHeading();
firstHeading.insertBefore(cloneNode, firstHeading.childNodes[0]);
cloneNode.style.display = "block";
}// END JavaScript title rewrite
function getFirstHeading(){
var a = getElementsByClassName(document.getElementById('content'), 'h1', 'firstHeading');
return a[0];
}
/* Code for hiding segments */
function hide_block(id) {
document.getElementById(id).style.display = "inline";
document.getElementById(id + "-link").style.display = "none";
}
function replace_hides() {
var hide_blocks = getElementsByClassName(document, "div", "hide");
for (var i=0;i<hide_blocks.length;i++) {
var hide_link = document.createElement("div");
hide_link.innerHTML = "<a href='javascript:hide_block(\"" + hide_blocks[i].getAttribute("id") + "\");' id='" + hide_blocks[i].getAttribute("id") + "-link'><i>Show hidden content.</i></a>";
hide_blocks[i].parentNode.insertBefore(hide_link, hide_blocks[i]);
hide_blocks[i].style.display = "none";
}
}
function omnipedia_hooks() {
showTitles('title-trixicons');
replace_hides();
}
addOnloadHook(omnipedia_hooks);
/* ========== Upload preview ==========
========== -BEGIN- ==========
========== CODE IS UNREVIEWED ========== */
e59769f11bedaae66a49960f8cea6085cf1333a6
54
53
2020-05-26T04:51:02Z
Jaswacker
30585766
javascript
text/javascript
/* Any JavaScript here will be loaded for all users on every page load. */
/**
* JS Tab System, jacked and hacked from the jsprefs in wikibits.js
*
* Original code by Dantman
* Refactored a bit by Jack Phoenix on 11 April 2014
* Support for linking to a particular tab by MatmaRex on 30 December 2016.
* @note Should be rewritten to properly use jQuery like how mediawiki.special.preferences.js does.
*/
var TabSystem = {
/**
* @property {boolean}
* Is the user's browser a KHTML-based one (usually, but not always, Konqueror)?
*/
isKHTML: ( navigator.vendor == 'KDE' || ( document.childNodes && !document.all && !navigator.taintEnabled ) ),
/**
* @property {boolean}
* Is the user's browser Opera?
*/
isOpera: navigator.userAgent.toLowerCase().indexOf( 'opera' ) != -1,
/*
Written by Jonathan Snook, http://www.snook.ca/jonathan
Add-ons by Robert Nyman, http://www.robertnyman.com
Author says "The credit comment is all it takes, no license. Go crazy with it!:-)"
From http://www.robertnyman.com/2005/11/07/the-ultimate-getelementsbyclassname/
*/
getElementsByClassName: function( oElm, strTagName, oClassNames ) {
var arrReturnElements = [];
if ( typeof oElm.getElementsByClassName == 'function' ) {
/* Use a native implementation where possible FF3, Saf3.2, Opera 9.5 */
var arrNativeReturn = oElm.getElementsByClassName( oClassNames );
if ( strTagName == '*' ) {
return arrNativeReturn;
}
for ( var h = 0; h < arrNativeReturn.length; h++ ) {
if ( arrNativeReturn[h].tagName.toLowerCase() == strTagName.toLowerCase() ) {
arrReturnElements[arrReturnElements.length] = arrNativeReturn[h];
}
}
return arrReturnElements;
}
var arrElements = ( strTagName == '*' && oElm.all ) ? oElm.all : oElm.getElementsByTagName( strTagName );
var arrRegExpClassNames = [];
if ( typeof oClassNames == 'object' ) {
for ( var i = 0; i < oClassNames.length; i++ ) {
arrRegExpClassNames[arrRegExpClassNames.length] =
new RegExp( "(^|\\s)" + oClassNames[i].replace( /\-/g, "\\-" ) + "(\\s|$)" );
}
} else {
arrRegExpClassNames[arrRegExpClassNames.length] =
new RegExp( "(^|\\s)" + oClassNames.replace( /\-/g, "\\-" ) + "(\\s|$)" );
}
var oElement;
var bMatchesAll;
for ( var j = 0; j < arrElements.length; j++ ) {
oElement = arrElements[j];
bMatchesAll = true;
for ( var k = 0; k < arrRegExpClassNames.length; k++ ) {
if ( !arrRegExpClassNames[k].test( oElement.className ) ) {
bMatchesAll = false;
break;
}
}
if ( bMatchesAll ) {
arrReturnElements[arrReturnElements.length] = oElement;
}
}
return arrReturnElements;
},
/**
* Main function that performs all the magic on all div elements that have
* class="tab" and are inside a div that has class="tabcontainer".
*/
main: function() {
var tabcontainers = TabSystem.getElementsByClassName( document, 'div', 'tabcontainer' );
for ( var tc = 0; tc < tabcontainers.length; tc++ ) {
if ( !tabcontainers[tc] || !document.createElement ) {
return;
}
if ( tabcontainers[tc].nodeName.toLowerCase() == 'a' ) {
return; // Occasional IE problem
}
tabcontainers[tc].className += ' jstabs';
var sections = [];
var children = tabcontainers[tc].childNodes;
var seci = 0;
for ( var i = 0; i < children.length; i++ ) {
if ( children[i].className && children[i].className.match( /tab/i ) ) {
children[i].id = 'tabsection-' + seci + '-' + tc;
children[i].className += ' tabsection';
// Opera and KHTML-based browsers get a special class
if ( TabSystem.isOpera || TabSystem.isKHTML ) {
children[i].className += ' tabsection operatabsection';
}
var legends = TabSystem.getElementsByClassName( children[i], 'div', 'tab' );
sections[seci] = {};
legends[0].className = 'mainTab';
if ( legends[0] && legends[0].firstChild.nodeValue ) {
sections[seci].text = legends[0].firstChild.nodeValue;
} else {
sections[seci].text = '# ' + seci;
}
sections[seci].secid = children[i].id;
seci++;
if ( sections.length != 1 ) {
children[i].style.display = 'none';
} else {
var selectedid = children[i].id;
}
}
}
var toc = document.createElement( 'ul' );
toc.className = 'tabtoc';
toc.id = 'tabtoc-' + tc;
toc.selectedid = selectedid;
for ( i = 0; i < sections.length; i++ ) {
var li = document.createElement( 'li' );
if ( i === 0 ) {
li.className = 'selected';
}
var a = document.createElement( 'a' );
a.href = '#' + sections[i].secid;
a.appendChild( document.createTextNode( sections[i].text ) );
a.secid = sections[i].secid;
li.appendChild( a );
toc.appendChild( li );
// Capture current value of variables in the closure
( function ( i, a ) {
$( window ).on( 'hashchange', function () {
if ( location.hash === '#' + sections[i].secid ) {
TabSystem.uncoverTabSection( toc, a );
}
} )
if ( location.hash === '#' + sections[i].secid ) {
TabSystem.uncoverTabSection( toc, a );
}
} )( i, a );
}
tabcontainers[tc].parentNode.insertBefore( toc, tabcontainers[tc] );
}
},
/**
* Show the contents of a tab section when the user clicks on the tab.
*
* @return {boolean} Always false
*/
uncoverTabSection: function( ul, a ) {
var oldsecid = ul.selectedid;
var newsec = document.getElementById( a.secid );
if ( oldsecid != a.secid ) {
document.getElementById( oldsecid ).style.display = 'none';
newsec.style.display = 'block';
ul.selectedid = a.secid;
var lis = ul.getElementsByTagName( 'li' );
for ( var i = 0; i < lis.length; i++ ) {
lis[i].className = '';
}
a.parentNode.className = 'selected';
}
return false;
}
};
// Attach the onload handler using jQuery.
$( function() {
TabSystem.main();
} );
/* Blatantly stolen from TFWiki's factions template */
function showTitles(className) {
if(typeof(SKIP_ERAS) != 'undefined' && SKIP_ERAS)
return;
var titleDiv = document.getElementById(className);
if(titleDiv == null || titleDiv == undefined)
return;
var cloneNode = titleDiv.cloneNode(true);
var firstHeading = getFirstHeading();
firstHeading.insertBefore(cloneNode, firstHeading.childNodes[0]);
cloneNode.style.display = "block";
}// END JavaScript title rewrite
function getFirstHeading(){
var a = getElementsByClassName(document.getElementById('content'), 'h1', 'firstHeading');
return a[0];
}
/* Code for hiding segments */
function hide_block(id) {
document.getElementById(id).style.display = "inline";
document.getElementById(id + "-link").style.display = "none";
}
function replace_hides() {
var hide_blocks = getElementsByClassName(document, "div", "hide");
for (var i=0;i<hide_blocks.length;i++) {
var hide_link = document.createElement("div");
hide_link.innerHTML = "<a href='javascript:hide_block(\"" + hide_blocks[i].getAttribute("id") + "\");' id='" + hide_blocks[i].getAttribute("id") + "-link'><i>Show hidden content.</i></a>";
hide_blocks[i].parentNode.insertBefore(hide_link, hide_blocks[i]);
hide_blocks[i].style.display = "none";
}
}
function hooks() {
showTitles('title-trixicons');
replace_hides();
}
addOnloadHook(hooks);
/* ========== Upload preview ==========
========== -BEGIN- ==========
========== CODE IS UNREVIEWED ========== */
f344a42b162bd5c0261ab177146a601032d78fa6
55
54
2020-05-26T05:00:44Z
Jaswacker
30585766
javascript
text/javascript
/* Any JavaScript here will be loaded for all users on every page load. */
/**
* JS Tab System, jacked and hacked from the jsprefs in wikibits.js
*
* Original code by Dantman
* Refactored a bit by Jack Phoenix on 11 April 2014
* Support for linking to a particular tab by MatmaRex on 30 December 2016.
* @note Should be rewritten to properly use jQuery like how mediawiki.special.preferences.js does.
*/
var TabSystem = {
/**
* @property {boolean}
* Is the user's browser a KHTML-based one (usually, but not always, Konqueror)?
*/
isKHTML: ( navigator.vendor == 'KDE' || ( document.childNodes && !document.all && !navigator.taintEnabled ) ),
/**
* @property {boolean}
* Is the user's browser Opera?
*/
isOpera: navigator.userAgent.toLowerCase().indexOf( 'opera' ) != -1,
/*
Written by Jonathan Snook, http://www.snook.ca/jonathan
Add-ons by Robert Nyman, http://www.robertnyman.com
Author says "The credit comment is all it takes, no license. Go crazy with it!:-)"
From http://www.robertnyman.com/2005/11/07/the-ultimate-getelementsbyclassname/
*/
getElementsByClassName: function( oElm, strTagName, oClassNames ) {
var arrReturnElements = [];
if ( typeof oElm.getElementsByClassName == 'function' ) {
/* Use a native implementation where possible FF3, Saf3.2, Opera 9.5 */
var arrNativeReturn = oElm.getElementsByClassName( oClassNames );
if ( strTagName == '*' ) {
return arrNativeReturn;
}
for ( var h = 0; h < arrNativeReturn.length; h++ ) {
if ( arrNativeReturn[h].tagName.toLowerCase() == strTagName.toLowerCase() ) {
arrReturnElements[arrReturnElements.length] = arrNativeReturn[h];
}
}
return arrReturnElements;
}
var arrElements = ( strTagName == '*' && oElm.all ) ? oElm.all : oElm.getElementsByTagName( strTagName );
var arrRegExpClassNames = [];
if ( typeof oClassNames == 'object' ) {
for ( var i = 0; i < oClassNames.length; i++ ) {
arrRegExpClassNames[arrRegExpClassNames.length] =
new RegExp( "(^|\\s)" + oClassNames[i].replace( /\-/g, "\\-" ) + "(\\s|$)" );
}
} else {
arrRegExpClassNames[arrRegExpClassNames.length] =
new RegExp( "(^|\\s)" + oClassNames.replace( /\-/g, "\\-" ) + "(\\s|$)" );
}
var oElement;
var bMatchesAll;
for ( var j = 0; j < arrElements.length; j++ ) {
oElement = arrElements[j];
bMatchesAll = true;
for ( var k = 0; k < arrRegExpClassNames.length; k++ ) {
if ( !arrRegExpClassNames[k].test( oElement.className ) ) {
bMatchesAll = false;
break;
}
}
if ( bMatchesAll ) {
arrReturnElements[arrReturnElements.length] = oElement;
}
}
return arrReturnElements;
},
/**
* Main function that performs all the magic on all div elements that have
* class="tab" and are inside a div that has class="tabcontainer".
*/
main: function() {
var tabcontainers = TabSystem.getElementsByClassName( document, 'div', 'tabcontainer' );
for ( var tc = 0; tc < tabcontainers.length; tc++ ) {
if ( !tabcontainers[tc] || !document.createElement ) {
return;
}
if ( tabcontainers[tc].nodeName.toLowerCase() == 'a' ) {
return; // Occasional IE problem
}
tabcontainers[tc].className += ' jstabs';
var sections = [];
var children = tabcontainers[tc].childNodes;
var seci = 0;
for ( var i = 0; i < children.length; i++ ) {
if ( children[i].className && children[i].className.match( /tab/i ) ) {
children[i].id = 'tabsection-' + seci + '-' + tc;
children[i].className += ' tabsection';
// Opera and KHTML-based browsers get a special class
if ( TabSystem.isOpera || TabSystem.isKHTML ) {
children[i].className += ' tabsection operatabsection';
}
var legends = TabSystem.getElementsByClassName( children[i], 'div', 'tab' );
sections[seci] = {};
legends[0].className = 'mainTab';
if ( legends[0] && legends[0].firstChild.nodeValue ) {
sections[seci].text = legends[0].firstChild.nodeValue;
} else {
sections[seci].text = '# ' + seci;
}
sections[seci].secid = children[i].id;
seci++;
if ( sections.length != 1 ) {
children[i].style.display = 'none';
} else {
var selectedid = children[i].id;
}
}
}
var toc = document.createElement( 'ul' );
toc.className = 'tabtoc';
toc.id = 'tabtoc-' + tc;
toc.selectedid = selectedid;
for ( i = 0; i < sections.length; i++ ) {
var li = document.createElement( 'li' );
if ( i === 0 ) {
li.className = 'selected';
}
var a = document.createElement( 'a' );
a.href = '#' + sections[i].secid;
a.appendChild( document.createTextNode( sections[i].text ) );
a.secid = sections[i].secid;
li.appendChild( a );
toc.appendChild( li );
// Capture current value of variables in the closure
( function ( i, a ) {
$( window ).on( 'hashchange', function () {
if ( location.hash === '#' + sections[i].secid ) {
TabSystem.uncoverTabSection( toc, a );
}
} )
if ( location.hash === '#' + sections[i].secid ) {
TabSystem.uncoverTabSection( toc, a );
}
} )( i, a );
}
tabcontainers[tc].parentNode.insertBefore( toc, tabcontainers[tc] );
}
},
/**
* Show the contents of a tab section when the user clicks on the tab.
*
* @return {boolean} Always false
*/
uncoverTabSection: function( ul, a ) {
var oldsecid = ul.selectedid;
var newsec = document.getElementById( a.secid );
if ( oldsecid != a.secid ) {
document.getElementById( oldsecid ).style.display = 'none';
newsec.style.display = 'block';
ul.selectedid = a.secid;
var lis = ul.getElementsByTagName( 'li' );
for ( var i = 0; i < lis.length; i++ ) {
lis[i].className = '';
}
a.parentNode.className = 'selected';
}
return false;
}
};
// Attach the onload handler using jQuery.
$( function() {
TabSystem.main();
} );
/* Blatantly stolen from TFWiki's factions template */
function showTitles(className) {
if(typeof(SKIP_ERAS) != 'undefined' && SKIP_ERAS)
return;
var titleDiv = document.getElementById(className);
if(titleDiv == null || titleDiv == undefined)
return;
var cloneNode = titleDiv.cloneNode(true);
var firstHeading = getFirstHeading();
firstHeading.insertBefore(cloneNode, firstHeading.childNodes[0]);
cloneNode.style.display = "block";
}// END JavaScript title rewrite
function getFirstHeading(){
var a = getElementsByClassName(document.getElementById('content'), 'h1', 'firstHeading');
return a[0];
}
/* Code for hiding segments */
function hide_block(id) {
document.getElementById(id).style.display = "inline";
document.getElementById(id + "-link").style.display = "none";
}
function replace_hides() {
var hide_blocks = getElementsByClassName(document, "div", "hide");
for (var i=0;i<hide_blocks.length;i++) {
var hide_link = document.createElement("div");
hide_link.innerHTML = "<a href='javascript:hide_block(\"" + hide_blocks[i].getAttribute("id") + "\");' id='" + hide_blocks[i].getAttribute("id") + "-link'><i>Show hidden content.</i></a>";
hide_blocks[i].parentNode.insertBefore(hide_link, hide_blocks[i]);
hide_blocks[i].style.display = "none";
}
}
function tfwiki_hooks() {
showTitles('title-trixicons'); //Move faction and other icons to the header bar
replace_hides(); //Insert 'Show Hidden Content' links for the Hide template
}
/* Run on page load */
$(document).ready(tfwiki_hooks);
2ec714786e2af5d31a421d52192d7952a1cd27b1
56
55
2020-05-26T05:01:22Z
Jaswacker
30585766
javascript
text/javascript
/* Any JavaScript here will be loaded for all users on every page load. */
/**
* JS Tab System, jacked and hacked from the jsprefs in wikibits.js
*
* Original code by Dantman
* Refactored a bit by Jack Phoenix on 11 April 2014
* Support for linking to a particular tab by MatmaRex on 30 December 2016.
* @note Should be rewritten to properly use jQuery like how mediawiki.special.preferences.js does.
*/
var TabSystem = {
/**
* @property {boolean}
* Is the user's browser a KHTML-based one (usually, but not always, Konqueror)?
*/
isKHTML: ( navigator.vendor == 'KDE' || ( document.childNodes && !document.all && !navigator.taintEnabled ) ),
/**
* @property {boolean}
* Is the user's browser Opera?
*/
isOpera: navigator.userAgent.toLowerCase().indexOf( 'opera' ) != -1,
/*
Written by Jonathan Snook, http://www.snook.ca/jonathan
Add-ons by Robert Nyman, http://www.robertnyman.com
Author says "The credit comment is all it takes, no license. Go crazy with it!:-)"
From http://www.robertnyman.com/2005/11/07/the-ultimate-getelementsbyclassname/
*/
getElementsByClassName: function( oElm, strTagName, oClassNames ) {
var arrReturnElements = [];
if ( typeof oElm.getElementsByClassName == 'function' ) {
/* Use a native implementation where possible FF3, Saf3.2, Opera 9.5 */
var arrNativeReturn = oElm.getElementsByClassName( oClassNames );
if ( strTagName == '*' ) {
return arrNativeReturn;
}
for ( var h = 0; h < arrNativeReturn.length; h++ ) {
if ( arrNativeReturn[h].tagName.toLowerCase() == strTagName.toLowerCase() ) {
arrReturnElements[arrReturnElements.length] = arrNativeReturn[h];
}
}
return arrReturnElements;
}
var arrElements = ( strTagName == '*' && oElm.all ) ? oElm.all : oElm.getElementsByTagName( strTagName );
var arrRegExpClassNames = [];
if ( typeof oClassNames == 'object' ) {
for ( var i = 0; i < oClassNames.length; i++ ) {
arrRegExpClassNames[arrRegExpClassNames.length] =
new RegExp( "(^|\\s)" + oClassNames[i].replace( /\-/g, "\\-" ) + "(\\s|$)" );
}
} else {
arrRegExpClassNames[arrRegExpClassNames.length] =
new RegExp( "(^|\\s)" + oClassNames.replace( /\-/g, "\\-" ) + "(\\s|$)" );
}
var oElement;
var bMatchesAll;
for ( var j = 0; j < arrElements.length; j++ ) {
oElement = arrElements[j];
bMatchesAll = true;
for ( var k = 0; k < arrRegExpClassNames.length; k++ ) {
if ( !arrRegExpClassNames[k].test( oElement.className ) ) {
bMatchesAll = false;
break;
}
}
if ( bMatchesAll ) {
arrReturnElements[arrReturnElements.length] = oElement;
}
}
return arrReturnElements;
},
/**
* Main function that performs all the magic on all div elements that have
* class="tab" and are inside a div that has class="tabcontainer".
*/
main: function() {
var tabcontainers = TabSystem.getElementsByClassName( document, 'div', 'tabcontainer' );
for ( var tc = 0; tc < tabcontainers.length; tc++ ) {
if ( !tabcontainers[tc] || !document.createElement ) {
return;
}
if ( tabcontainers[tc].nodeName.toLowerCase() == 'a' ) {
return; // Occasional IE problem
}
tabcontainers[tc].className += ' jstabs';
var sections = [];
var children = tabcontainers[tc].childNodes;
var seci = 0;
for ( var i = 0; i < children.length; i++ ) {
if ( children[i].className && children[i].className.match( /tab/i ) ) {
children[i].id = 'tabsection-' + seci + '-' + tc;
children[i].className += ' tabsection';
// Opera and KHTML-based browsers get a special class
if ( TabSystem.isOpera || TabSystem.isKHTML ) {
children[i].className += ' tabsection operatabsection';
}
var legends = TabSystem.getElementsByClassName( children[i], 'div', 'tab' );
sections[seci] = {};
legends[0].className = 'mainTab';
if ( legends[0] && legends[0].firstChild.nodeValue ) {
sections[seci].text = legends[0].firstChild.nodeValue;
} else {
sections[seci].text = '# ' + seci;
}
sections[seci].secid = children[i].id;
seci++;
if ( sections.length != 1 ) {
children[i].style.display = 'none';
} else {
var selectedid = children[i].id;
}
}
}
var toc = document.createElement( 'ul' );
toc.className = 'tabtoc';
toc.id = 'tabtoc-' + tc;
toc.selectedid = selectedid;
for ( i = 0; i < sections.length; i++ ) {
var li = document.createElement( 'li' );
if ( i === 0 ) {
li.className = 'selected';
}
var a = document.createElement( 'a' );
a.href = '#' + sections[i].secid;
a.appendChild( document.createTextNode( sections[i].text ) );
a.secid = sections[i].secid;
li.appendChild( a );
toc.appendChild( li );
// Capture current value of variables in the closure
( function ( i, a ) {
$( window ).on( 'hashchange', function () {
if ( location.hash === '#' + sections[i].secid ) {
TabSystem.uncoverTabSection( toc, a );
}
} )
if ( location.hash === '#' + sections[i].secid ) {
TabSystem.uncoverTabSection( toc, a );
}
} )( i, a );
}
tabcontainers[tc].parentNode.insertBefore( toc, tabcontainers[tc] );
}
},
/**
* Show the contents of a tab section when the user clicks on the tab.
*
* @return {boolean} Always false
*/
uncoverTabSection: function( ul, a ) {
var oldsecid = ul.selectedid;
var newsec = document.getElementById( a.secid );
if ( oldsecid != a.secid ) {
document.getElementById( oldsecid ).style.display = 'none';
newsec.style.display = 'block';
ul.selectedid = a.secid;
var lis = ul.getElementsByTagName( 'li' );
for ( var i = 0; i < lis.length; i++ ) {
lis[i].className = '';
}
a.parentNode.className = 'selected';
}
return false;
}
};
// Attach the onload handler using jQuery.
$( function() {
TabSystem.main();
} );
/* Blatantly based on Wookiepedia's ShowEras */
/* Used for the faction icon template*/
/* That template generates a div that contains another div, which itself contains */
/* the image and link which make up the icon. The id of the main div is */
/* which is what then gets passed into this function, is 'title-factionicons' */
/* This function copies a div tag with the passed in id, puts the copy */
/* before the page title bar h1 tag, and makes the copy visible. */
/* The main div is expected to have it's 'display' CSS attribute set to none to hide it */
/* in the main portion of the page. */
function showTitles(className) {
//This check seems to be a holdover from Wookiepedia and not functional for us as SKIP_ERAS is not defined anywhere in our code (that I've found so far). Can probably be removed.
if(typeof(SKIP_ERAS) != 'undefined' && SKIP_ERAS)
return;
//Get the HTML element with the id passed in. This element is the div that contains the faction icon.
var titleDiv = document.getElementById(className);
if(titleDiv == null || titleDiv == undefined)
return;
//Make a copy of the Title bar div
var cloneNode = titleDiv.cloneNode(true);
//Get the first h1 tag with a class of 'firstHeading' inside of the div that has the id 'content'.
var firstHeading = $('#content h1.firstHeading')[0];
//Insert the cloned node before the heading.
firstHeading.insertBefore(cloneNode, firstHeading.childNodes[0]);
//Make the cloned node visible
cloneNode.style.display = "block";
}// END showTitles
/* Code for hiding segments */
function hide_block(id) {
document.getElementById(id).style.display = "inline";
document.getElementById(id + "-link").style.display = "none";
}
/* Used for the Hide template, this function inserts the */
/* 'Show Hidden Content' links used by the template and hides */
/* the list markup generated by the template */
function replace_hides() {
$('div.hide').each(
function(blockToHide){
//Create div for the 'Show Hidden Content' link
var hide_link = document.createElement("div");
// Create link
hide_link.innerHTML = "<a href='javascript:hide_block(\"" + blockToHide.getAttribute("id") + "\");' id='" + blockToHide.getAttribute("id") + "-link'><i>Show hidden content.</i></a>";
//Insert the link before the list to be hidden
blockToHide.parentNode.insertBefore(hide_link, blockToHide);
//Hide the list
blockToHide.style.display = "none";
}
);
}
function tfwiki_hooks() {
showTitles('title-trixicons'); //Move faction and other icons to the header bar
replace_hides(); //Insert 'Show Hidden Content' links for the Hide template
}
/* Run on page load */
$(document).ready(tfwiki_hooks);
b6064ce491b716b2a4f3102aa8d6d8041f309ae2
MediaWiki:Common.css
8
3
57
5
2020-05-26T05:02:02Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
226e6d1e0085d2f097e3375de0ce67886e3d53c0
91
57
2020-05-26T17:36:20Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
7726e404b08cfb77a2972a3ba938db3ecb9d56ba
Template:Trix/icons
10
12
58
37
2020-05-26T05:23:15Z
2604:6000:130D:4651:AD8F:1DE1:FC27:885A
0
wikitext
text/x-wiki
<includeonly>{{#if:{{{custom|}}}|
{{#tag:imagemap
|Image:{{{custom}}}{{!}}{{{cSize|30px}}}
default [[{{{cLink}}}{{!}}{{{cPretty|{{{cLink}}}}}}]]
desc none
}}|}}<!--
Options
-->{{#if:{{{option|}}}|{{#switch:{{{option}}}
|os={{trix/icons_recurs|custom=OS_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Original Series}}
|osau={{trix/icons_recurs|custom=OS_Icon.png.png|cLink=Continuity#Non-Canon|cPretty=Alternate Universe}}
|af={{trix/icons_recurs|custom=UAF_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Alien Force}}
|ua={{trix/icons_recurs|custom=UAF_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Alien}}
|uafalbedo={{trix/icons_recurs|custom=UAF_icon_alb.png|cLink=Albedo}}
|uafult={{trix/icons_recurs|custom=ULT_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Form}}
|uafultalbedo={{trix/icons_recurs|custom=ULT_icon_alb.png|cLink=Albedo|cPretty=Ultimate Form}}
|ov={{trix/icons_recurs|custom=OV_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Omniverse}}
|ovalbedo={{trix/icons_recurs|custom=OV_icon_alb.png|cLink=Albedo}}
|ovultalbedo={{trix/icons_recurs|custom=OVULT_icon_alb.png|cLink=Albedo|cPretty=Ultimate Form}}
|ovtt={{trix/icons_recurs|custom=B23_icon.png|cLink=Ben Tennyson (Dimension 23)|cPretty=Ben 23}}
|ovgwen={{trix/icons_recurs|custom=G10_icon.png|cLink=Gwen Tennyson (dimen)|cPretty=Gwen 10}}
|ovmad={{trix/icons_recurs|custom=MAD_icon.png|cLink=Mad Ben}}
|ovbad={{trix/icons_recurs|custom=BAD_icon.png|cLink=Bad Ben}}
|ovnega={{trix/icons_recurs|custom=NEG_icon.png|cLink=Nega Ben}}
|ovbenzarro={{trix/icons_recurs|custom=ZAR_icon.png|cLink=Benzarro}}
|reboot={{trix/icons_recurs|custom=RB_icon.png|cLink=Ben Tennyson (Reboot)|cPretty=Reboot}}
|fusion={{trix/icons_recurs|custom=FSN_icon.png|cLink=Ben Tennyson (Prime)|cPretty=Fusion Alien}}
|bio={{trix/icons_recurs|custom=BIO_icon.png|cLink=Ben 10,000 (Omniverse)|cPretty=Fusion Alien}}
|{{{option}}}
}}|}}
</includeonly><noinclude>
[[Category:Templates]]
<pre>{{trix/icons_recurs
|custom=OV_icon.png
|cLink=Ben Tennyson (Prime)
|cPretty=Omniverse - Mouseover text, if different from the Link
|cSize=30px - Override the default size
}}</pre>
</noinclude>
1fc4a767015989346f1b6909ff03a96b1470dab8
65
58
2020-05-26T14:56:03Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{{#if:{{{custom|}}}|
{{#tag:imagemap
|Image:{{{custom}}}{{!}}{{{cSize|30px}}}
default [[{{{cLink}}}{{!}}{{{cPretty|{{{cLink}}}}}}]]
desc none
}}|}}<!--
Options
-->{{#if:{{{option|}}}|{{#switch:{{{option}}}
|ogs={{trix/icons_recurs|custom=OGS_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Original Series}}
|non={{trix/icons_recurs|custom=NON_Icon.png|cLink=Continuity#Non-Canon|cPretty=Non-Canon}}
|auu={{trix/icons_recurs|custom=NON_Icon.png|cLink=Continuity#Non-Canon|cPretty=Alternate Universe}}
|alf={{trix/icons_recurs|custom=UAF_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Alien Force}}
|ula={{trix/icons_recurs|custom=UAF_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Alien}}
|alb={{trix/icons_recurs|custom=ALB_Icon.png|cLink=Albedo}}
|ult={{trix/icons_recurs|custom=ULT_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Form}}
|num={{trix/icons_recurs|custom=NUM_Icon.png|cLink=Albedo|cPretty=Ultimate Form}}
|onv={{trix/icons_recurs|custom=ONV_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Omniverse}}
|aso={{trix/icons_recurs|custom=ASO_Icon.png|cLink=Albedo}}
|rum={{trix/icons_recurs|custom=RUM_Icon.png|cLink=Albedo|cPretty=Ultimate Form}}
|b23={{trix/icons_recurs|custom=B23_Icon.png|cLink=Ben Tennyson (Dimension 23)|cPretty=Ben 23}}
|g10={{trix/icons_recurs|custom=G10_Icon.png|cLink=Gwen Tennyson (dimen)|cPretty=Gwen 10}}
|mad={{trix/icons_recurs|custom=MAD_Icon.png|cLink=Mad Ben}}
|bad={{trix/icons_recurs|custom=BAD_Icon.png|cLink=Bad Ben}}
|neg={{trix/icons_recurs|custom=NEG_Icon.png|cLink=Nega Ben}}
|zar={{trix/icons_recurs|custom=ZAR_Icon.png|cLink=Benzarro}}
|rbt={{trix/icons_recurs|custom=RBT_Icon.png|cLink=Ben Tennyson (Reboot)|cPretty=Reboot}}
|fsn={{trix/icons_recurs|custom=FSN_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Fusion Alien}}
|bio={{trix/icons_recurs|custom=BIO_Icon.png|cLink=Ben 10,000 (Omniverse)|cPretty=Fusion Alien}}
|arg={{trix/icons_recurs|custom=ARG_Icon.png|cLink=Argit|cPretty=Argit}}
|nem={{trix/icons_recurs|custom=NEM_Icon.png|cLink=Nemetrix|cPretty=Nemetrix Alien}}
|{{{option}}}
}}|}}
</includeonly><noinclude>
[[Category:Templates]]
<pre>{{trix/icons_recurs
|custom=OV_icon.png
|cLink=Ben Tennyson (Prime)
|cPretty=Omniverse - Mouseover text, if different from the Link
|cSize=30px - Override the default size
}}</pre>
</noinclude>
50f1c52e1cae8152ab1e23f5662b5358878d1024
67
65
2020-05-26T15:01:13Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{{#if:{{{custom|}}}|
{{#tag:imagemap
|Image:{{{custom}}}{{!}}{{{cSize|30px}}}
default [[{{{cLink}}}{{!}}{{{cPretty|{{{cLink}}}}}}]]
desc none
}}|}}<!--
Options
-->{{#if:{{{option|}}}|{{#switch:{{{option}}}
|ogs={{trix/icons_recurs|custom=OGS_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Original Series}}
|non={{trix/icons_recurs|custom=NON_Icon.png|cLink=Continuity#Non-Canon|cPretty=Non-Canon}}
|auu={{trix/icons_recurs|custom=NON_Icon.png|cLink=Continuity#Non-Canon|cPretty=Alternate Universe}}
|alf={{trix/icons_recurs|custom=UAF_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Alien Force}}
|ula={{trix/icons_recurs|custom=UAF_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Alien}}
|alb={{trix/icons_recurs|custom=ALB_Icon.png|cLink=Albedo}}
|ult={{trix/icons_recurs|custom=ULT_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Form}}
|num={{trix/icons_recurs|custom=NUM_Icon.png|cLink=Albedo|cPretty=Ultimate Form}}
|onv={{trix/icons_recurs|custom=ONV_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Omniverse}}
|aso={{trix/icons_recurs|custom=ASO_Icon.png|cLink=Albedo}}
|rum={{trix/icons_recurs|custom=RUM_Icon.png|cLink=Albedo|cPretty=Ultimate Form}}
|b23={{trix/icons_recurs|custom=B23_Icon.png|cLink=Ben Tennyson (Dimension 23)|cPretty=Ben 23}}
|g10={{trix/icons_recurs|custom=G10_Icon.png|cLink=Gwen Tennyson (dimen)|cPretty=Gwen 10}}
|mad={{trix/icons_recurs|custom=MAD_Icon.png|cLink=Mad Ben}}
|bad={{trix/icons_recurs|custom=BAD_Icon.png|cLink=Bad Ben}}
|neg={{trix/icons_recurs|custom=NEG_Icon.png|cLink=Nega Ben}}
|zar={{trix/icons_recurs|custom=ZAR_Icon.png|cLink=Benzarro}}
|rbt={{trix/icons_recurs|custom=RBT_Icon.png|cLink=Ben Tennyson (Reboot)|cPretty=Reboot}}
|fsn={{trix/icons_recurs|custom=FSN_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Fusion Alien}}
|bio={{trix/icons_recurs|custom=BIO_Icon.png|cLink=Ben 10,000 (Omniverse)|cPretty=Fusion Alien}}
|arg={{trix/icons_recurs|custom=ARG_Icon.png|cLink=Argit|cPretty=Argit}}
|nem={{trix/icons_recurs|custom=NEM_Icon.png|cLink=Nemetrix|cPretty=Nemetrix Alien}}
|ant={{trix/icons_recurs|custom=ANT_Icon.png|cLink=Kevin Levin (Reboot)|cPretty=Antitrix Alien}}
|{{{option}}}
}}|}}
</includeonly><noinclude>
[[Category:Templates]]
<pre>{{trix/icons_recurs
|custom=OV_icon.png
|cLink=Ben Tennyson (Prime)
|cPretty=Omniverse - Mouseover text, if different from the Link
|cSize=30px - Override the default size
}}</pre>
</noinclude>
f63bef8eb26ad3603e640025e4302730cbd47e73
68
67
2020-05-26T15:01:30Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{{#if:{{{custom|}}}|
{{#tag:imagemap
|Image:{{{custom}}}{{!}}{{{cSize|30px}}}
default [[{{{cLink}}}{{!}}{{{cPretty|{{{cLink}}}}}}]]
desc none
}}|}}<!--
Options
-->{{#if:{{{option|}}}|{{#switch:{{{option}}}
|ogs={{trix/icons_recurs|custom=OGS_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Original Series}}
|non={{trix/icons_recurs|custom=NON_Icon.png|cLink=Continuity#Non-Canon|cPretty=Non-Canon}}
|auu={{trix/icons_recurs|custom=NON_Icon.png|cLink=Continuity#Non-Canon|cPretty=Alternate Universe}}
|alf={{trix/icons_recurs|custom=UAF_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Alien Force}}
|ula={{trix/icons_recurs|custom=UAF_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Alien}}
|alb={{trix/icons_recurs|custom=ALB_Icon.png|cLink=Albedo}}
|ult={{trix/icons_recurs|custom=ULT_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Form}}
|num={{trix/icons_recurs|custom=NUM_Icon.png|cLink=Albedo|cPretty=Ultimate Form}}
|onv={{trix/icons_recurs|custom=ONV_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Omniverse}}
|aso={{trix/icons_recurs|custom=ASO_Icon.png|cLink=Albedo}}
|rum={{trix/icons_recurs|custom=RUM_Icon.png|cLink=Albedo|cPretty=Ultimate Form}}
|b23={{trix/icons_recurs|custom=B23_Icon.png|cLink=Ben Tennyson (Dimension 23)|cPretty=Ben 23}}
|g10={{trix/icons_recurs|custom=G10_Icon.png|cLink=Gwen Tennyson (dimen)|cPretty=Gwen 10}}
|mad={{trix/icons_recurs|custom=MAD_Icon.png|cLink=Mad Ben}}
|bad={{trix/icons_recurs|custom=BAD_Icon.png|cLink=Bad Ben}}
|neg={{trix/icons_recurs|custom=NEG_Icon.png|cLink=Nega Ben}}
|zar={{trix/icons_recurs|custom=ZAR_Icon.png|cLink=Benzarro}}
|rbt={{trix/icons_recurs|custom=RBT_Icon.png|cLink=Ben Tennyson (Reboot)|cPretty=Reboot}}
|fsn={{trix/icons_recurs|custom=FSN_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Fusion Alien}}
|bio={{trix/icons_recurs|custom=BIO_Icon.png|cLink=Ben 10,000 (Omniverse)|cPretty=Fusion Alien}}
|arg={{trix/icons_recurs|custom=ARG_Icon.png|cLink=Argit|cPretty=Argit}}
|nem={{trix/icons_recurs|custom=NEM_Icon.png|cLink=Nemetrix|cPretty=Nemetrix Alien}}
|ant={{trix/icons_recurs|custom=ANT_Icon.png|cLink=Kevin Levin (Reboot)|cPretty=Antitrix Alien}}
|{{{option}}}
}}|}}
</includeonly><noinclude>
[[Category:Templates]]
<pre>{{trix/icons_recurs
|custom=ONV_Icon.png
|cLink=Ben Tennyson (Prime)
|cPretty=Omniverse - Mouseover text, if different from the Link
|cSize=30px - Override the default size
}}</pre>
</noinclude>
1b34b6508b38efcefbd9836775518f48d2dd82e6
Upchuck
0
6
59
13
2020-05-26T05:31:09Z
2604:6000:130D:4651:AD8F:1DE1:FC27:885A
0
wikitext
text/x-wiki
{{trix|af|ua|ov}}
placeholder
c62de74a71c2ab1722bad78ef1987641306f479d
61
59
2020-05-26T14:21:33Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
-- Appearance ==
=== [[Ben 10 (2005)]] ===
placeholder
=== [[Ben 10: Alien Force]] ===
placeholder
=== [[Ben 10: Ultimate Alien]] ===
placeholder
=== [[Ben 10: Omniverse]] ===
==== Perk ====
placeholder
==== Murk ====
Placeholder
==== [[Ben 10/Generator Rex: Heroes United]] ===
placeholder
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Episode Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Trivia ==
* trivia
== Insignias ==
A table showing all the omnitrix insignias, or other important logos and designs featured on the character.
== Galleries ==
Two image links to two galleries, "Gallery" (screenshots) and "Designs" (models/reconstructions.)
ad1231dd87c5c5eba9f23ca380d957479436fa94
62
61
2020-05-26T14:22:15Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
== Appearance ==
=== [[Ben 10 (2005)]] ===
placeholder
=== [[Ben 10: Alien Force]] ===
placeholder
=== [[Ben 10: Ultimate Alien]] ===
placeholder
=== [[Ben 10: Omniverse]] ===
==== Perk ====
placeholder
==== Murk ====
Placeholder
==== [[Ben 10/Generator Rex: Heroes United]] ====
placeholder
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Episode Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Trivia ==
* trivia
== Insignias ==
A table showing all the omnitrix insignias, or other important logos and designs featured on the character.
== Galleries ==
Two image links to two galleries, "Gallery" (screenshots) and "Designs" (models/reconstructions.)
e28a0212c51c0d56c9b73abace0689eb115aa3b2
63
62
2020-05-26T14:22:59Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
== Appearance ==
=== [[Ben 10 (2005)]] ===
placeholder
=== [[Ben 10: Alien Force]] ===
placeholder
=== [[Ben 10: Ultimate Alien]] ===
placeholder
=== [[Ben 10: Omniverse]] ===
===== Perk =====
placeholder
===== Murk =====
Placeholder
==== [[Ben 10/Generator Rex: Heroes United]] ====
placeholder
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Episode Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Trivia ==
* trivia
== Insignias ==
A table showing all the omnitrix insignias, or other important logos and designs featured on the character.
== Galleries ==
Two image links to two galleries, "Gallery" (screenshots) and "Designs" (models/reconstructions.)
0072f086d796dc98f15e6e82d26be11352f7ea83
64
63
2020-05-26T14:41:03Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
== History ==
placeholder. This is basically everything that's ever happened to the character
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Episode Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
====Toyline====
[[File:image.png|thumb|upright=1.66|caption]]
*'''Name of Toy''' (Series/size, year)
: Description and information
: about the toy
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
== Galleries ==
Two image links to two galleries, "Gallery" (screenshots) and "Designs" (models/reconstructions.)
14e45bb53df4769e45ef7f40f3f0c2216a4cb6a6
83
64
2020-05-26T16:22:43Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
== History ==
placeholder. This is basically everything that's ever happened to the character
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
====Toyline====
[[File:image.png|thumb|upright=1.66|caption]]
*'''Name of Toy''' (Series/size, year)
: Description and information
: about the toy
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
== Galleries ==
Two image links to two galleries, "Gallery" (screenshots) and "Designs" (models/reconstructions.)
45bd5366e892d22ef0ae9843cf9fe9defb56e537
File:NON Icon.png
6
16
60
2020-05-26T08:55:35Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Template:Trix/doc
10
13
66
34
2020-05-26T15:00:15Z
Jaswacker
30585766
/* Trix icon names */
wikitext
text/x-wiki
<pre>{{trix
|os
|ov}}
</pre>
{{trix|os|ov}}
==Trix icon names==
Trix icon names used by this template are lowercase. Any mis-typed text not recognized as the template will be rendered as text. (You will notice, it's hard to miss.)
{| class="prettytable sortable" border="1"
|-
!ICON NAME
!TEMPLATE TEXT
!ICON
|-
|Original Series ||ogs ||{{Trix/icons|option=ogs }}
|-
|Non-Canon ||non ||{{Trix/icons|option=non }}
|-
|Unspecified Alternate Universe ||auu ||{{Trix/icons|option=non }}
|-
|Alien Force ||alf ||{{Trix/icons|option=alf }}
|-
|Ultimate Alien ||ula ||{{Trix/icons|option=ula }}
|-
|Albedo (UAF) ||alb ||{{Trix/icons|option=alb }}
|-
|Ultimatrix ||ult ||{{Trix/icons|option=ult }}
|-
|Negative Ultimatrix ||num ||{{Trix/icons|option=num }}
|-
|Omniverse ||onv ||{{Trix/icons|option=onv }}
|-
|Reconstructed Ultimatrix ||rum ||{{Trix/icons|option=rum }}
|-
|Ben 23 ||b23 ||{{Trix/icons|option=b23 }}
|-
|Gwen 10 (Omniverse) ||g10 ||{{Trix/icons|option=g10 }}
|-
|Mad Ben ||mad ||{{Trix/icons|option=mad }}
|-
|Bad Ben ||bad ||{{Trix/icons|option=bad }}
|-
|Nega Ben ||nega ||{{Trix/icons|option=nega }}
|-
|Benzarro ||zar ||{{Trix/icons|option=zar }}
|-
|Reboot ||rbt ||{{Trix/icons|option=rbt }}
|-
|Fusion Alien ||fsn ||{{Trix/icons|option=fsn }}
|-
|Biomnitrix Alien ||bio ||{{Trix/icons|option=bio }}
|-
|Argit ||arg ||{{Trix/icons|option=arg }}
|-
|Nemetrix Alien ||nem ||{{Trix/icons|option=nem }}
|-
|Antitrix Alien ||ant ||{{Trix/icons|option=ant }}
|}
[[Category:Templates]]
542e044b04aa28fdb0ecaae8a95a37a8d29a0429
69
66
2020-05-26T15:02:34Z
Jaswacker
30585766
wikitext
text/x-wiki
<pre>{{trix
|ogs
|non
|alf
|onv}}
</pre>
{{trix|ogs|non|alf|onv}}
==Trix icon names==
Trix icon names used by this template are lowercase. Any mis-typed text not recognized as the template will be rendered as text. (You will notice, it's hard to miss.)
{| class="prettytable sortable" border="1"
|-
!ICON NAME
!TEMPLATE TEXT
!ICON
|-
|Original Series ||ogs ||{{Trix/icons|option=ogs }}
|-
|Non-Canon ||non ||{{Trix/icons|option=non }}
|-
|Unspecified Alternate Universe ||auu ||{{Trix/icons|option=non }}
|-
|Alien Force ||alf ||{{Trix/icons|option=alf }}
|-
|Ultimate Alien ||ula ||{{Trix/icons|option=ula }}
|-
|Albedo (UAF) ||alb ||{{Trix/icons|option=alb }}
|-
|Ultimatrix ||ult ||{{Trix/icons|option=ult }}
|-
|Negative Ultimatrix ||num ||{{Trix/icons|option=num }}
|-
|Omniverse ||onv ||{{Trix/icons|option=onv }}
|-
|Reconstructed Ultimatrix ||rum ||{{Trix/icons|option=rum }}
|-
|Ben 23 ||b23 ||{{Trix/icons|option=b23 }}
|-
|Gwen 10 (Omniverse) ||g10 ||{{Trix/icons|option=g10 }}
|-
|Mad Ben ||mad ||{{Trix/icons|option=mad }}
|-
|Bad Ben ||bad ||{{Trix/icons|option=bad }}
|-
|Nega Ben ||nega ||{{Trix/icons|option=nega }}
|-
|Benzarro ||zar ||{{Trix/icons|option=zar }}
|-
|Reboot ||rbt ||{{Trix/icons|option=rbt }}
|-
|Fusion Alien ||fsn ||{{Trix/icons|option=fsn }}
|-
|Biomnitrix Alien ||bio ||{{Trix/icons|option=bio }}
|-
|Argit ||arg ||{{Trix/icons|option=arg }}
|-
|Nemetrix Alien ||nem ||{{Trix/icons|option=nem }}
|-
|Antitrix Alien ||ant ||{{Trix/icons|option=ant }}
|}
[[Category:Templates]]
0dca90a28f640c089a154102d89ae1d04c6c5495
102
69
2020-05-26T18:11:44Z
Jaswacker
30585766
wikitext
text/x-wiki
<pre>{{trix
|ogs
|non
|alf
|onv}}
</pre>
{{trix|ogs|non|alf|onv}}
==Trix icon names==
Trix icon names used by this template are lowercase. Any mis-typed text not recognized as the template will be rendered as text. (You will notice, it's hard to miss.)
{| class="prettytable sortable" border="1"
|-
!ICON NAME
!TEMPLATE TEXT
!ICON
|-
|Original Series ||ogs ||{{Trix/icons|option=ogs }}
|-
|Non-Canon ||non ||{{Trix/icons|option=non }}
|-
|Unspecified Alternate Universe ||auu ||{{Trix/icons|option=non }}
|-
|Alien Force ||alf ||{{Trix/icons|option=alf }}
|-
|Ultimate Alien ||ula ||{{Trix/icons|option=ula }}
|-
|Albedo (UAF) ||alb ||{{Trix/icons|option=alb }}
|-
|Ultimatrix ||ult ||{{Trix/icons|option=ult }}
|-
|Negative Ultimatrix ||num ||{{Trix/icons|option=num }}
|-
|Omniverse ||onv ||{{Trix/icons|option=onv }}
|-
|Reconstructed Ultimatrix ||rum ||{{Trix/icons|option=rum }}
|-
|Ben 23 ||b23 ||{{Trix/icons|option=b23 }}
|-
|Gwen 10 (Omniverse) ||g10 ||{{Trix/icons|option=g10 }}
|-
|Mad Ben ||mad ||{{Trix/icons|option=mad }}
|-
|Bad Ben ||bad ||{{Trix/icons|option=bad }}
|-
|Nega Ben ||neg ||{{Trix/icons|option=neg }}
|-
|Benzarro ||zar ||{{Trix/icons|option=zar }}
|-
|Reboot ||rbt ||{{Trix/icons|option=rbt }}
|-
|Fusion Alien ||fsn ||{{Trix/icons|option=fsn }}
|-
|Biomnitrix Alien ||bio ||{{Trix/icons|option=bio }}
|-
|Argit ||arg ||{{Trix/icons|option=arg }}
|-
|Nemetrix Alien ||nem ||{{Trix/icons|option=nem }}
|-
|Antitrix Alien ||ant ||{{Trix/icons|option=ant }}
|}
[[Category:Templates]]
0c394510894072c66eccf4c58e15c84e538c59be
103
102
2020-05-26T18:13:31Z
Jaswacker
30585766
wikitext
text/x-wiki
<pre>{{trix
|ogs
|non
|alf
|onv}}
</pre>
{{trix|ogs|non|alf|onv}}
==Trix icon names==
Trix icon names used by this template are lowercase. Any mis-typed text not recognized as the template will be rendered as text. (You will notice, it's hard to miss.)
{| class="prettytable sortable" border="1"
|-
!ICON NAME
!TEMPLATE TEXT
!ICON
|-
|Original Series ||ogs ||{{Trix/icons|option=ogs }}
|-
|Non-Canon ||non ||{{Trix/icons|option=non }}
|-
|Unspecified Alternate Universe ||auu ||{{Trix/icons|option=non }}
|-
|Alien Force ||alf ||{{Trix/icons|option=alf }}
|-
|Ultimate Alien ||ula ||{{Trix/icons|option=ula }}
|-
|Albedo (UAF) ||abd ||{{Trix/icons|option=abd }}
|-
|Ultimatrix ||ult ||{{Trix/icons|option=ult }}
|-
|Negative Ultimatrix ||num ||{{Trix/icons|option=num }}
|-
|Omniverse ||onv ||{{Trix/icons|option=onv }}
|-
|Albedo (OV) ||aso ||{{Trix/icons|option=aso }}
|-
|Reconstructed Ultimatrix ||rum ||{{Trix/icons|option=rum }}
|-
|Ben 23 ||b23 ||{{Trix/icons|option=b23 }}
|-
|Gwen 10 (Omniverse) ||g10 ||{{Trix/icons|option=g10 }}
|-
|Mad Ben ||mad ||{{Trix/icons|option=mad }}
|-
|Bad Ben ||bad ||{{Trix/icons|option=bad }}
|-
|Nega Ben ||neg ||{{Trix/icons|option=neg }}
|-
|Benzarro ||zar ||{{Trix/icons|option=zar }}
|-
|Reboot ||rbt ||{{Trix/icons|option=rbt }}
|-
|Fusion Alien ||fsn ||{{Trix/icons|option=fsn }}
|-
|Biomnitrix Alien ||bio ||{{Trix/icons|option=bio }}
|-
|Argit ||arg ||{{Trix/icons|option=arg }}
|-
|Nemetrix Alien ||nem ||{{Trix/icons|option=nem }}
|-
|Antitrix Alien ||ant ||{{Trix/icons|option=ant }}
|}
[[Category:Templates]]
6b530cee4e3c42edaea4a4bb88b9609966668cf4
MediaWiki:MonoBook.css
8
17
70
2020-05-26T15:04:08Z
Jaswacker
30585766
Created page with "/* CSS placed here will affect users of the MonoBook skin */ #globalWrapper { background-image: url("https://cdn.discordapp.com/attachments/714642587100774465/71474041873..."
css
text/css
/* CSS placed here will affect users of the MonoBook skin */
#globalWrapper {
background-image: url("https://cdn.discordapp.com/attachments/714642587100774465/714740418733932625/Wiki_BG.png");
}
9f4d8f812b140d7e61fad023f11e44f09785997a
71
70
2020-05-26T15:04:35Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the MonoBook skin */
#globalWrapper {
background-image: url(https://cdn.discordapp.com/attachments/714642587100774465/714740418733932625/Wiki_BG.png);
}
ecb3d0bd6b5235d07b94db828ac178ab1de01093
72
71
2020-05-26T15:05:51Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the MonoBook skin */
#globalWrapper {
background-image: url("https://cdn.discordapp.com/attachments/714642587100774465/714740418733932625/Wiki_BG.png");
}
9f4d8f812b140d7e61fad023f11e44f09785997a
73
72
2020-05-26T15:09:13Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the MonoBook skin */
#globalWrapper {
background-image: url("https://cdn.discordapp.com/attachments/714642587100774465/714740418733932625/Wiki_BG.png");
background-color: #000;
}
be481a4b4864daaf578f8dd1e06c71ae1433aca9
74
73
2020-05-26T15:09:28Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the MonoBook skin */
#globalWrapper {
background-color: #000;
}
ffab404e46d6e567a43ec60fbefd7bab4d7eede1
75
74
2020-05-26T15:10:30Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the MonoBook skin */
#globalWrapper {
background-color: #000;
background-image: url("https://cdn.discordapp.com/attachments/714642587100774465/714740418733932625/Wiki_BG.png");
}
7c523ccd9edf55dd7df0591dbdb7e8561f262db0
76
75
2020-05-26T15:12:55Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the MonoBook skin */
div#globalWrapper {
background-image: url("https://cdn.discordapp.com/attachments/714642587100774465/714740418733932625/Wiki_BG.png");
}
b07baf0e284b9231a4ea99c447c9331888c20f8d
77
76
2020-05-26T15:13:30Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the MonoBook skin */
div#globalWrapper {
background-color: #000;
}
fc6ed76f228c00854c6497a6b9099fcad240de3b
78
77
2020-05-26T15:19:15Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the MonoBook skin */
body > div#globalWrapper {
background-color: #000;
}
dd66f5d314786ad1cf761490d5c93ae244591163
79
78
2020-05-26T15:35:37Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the MonoBook skin */
body > div#globalWrapper {
background-color: #000;
background-image: url("https://cdn.discordapp.com/attachments/714642587100774465/714740418733932625/Wiki_BG.png");
}
c6091b78355a0544cd8750223512c19a0d494d64
MediaWiki:Monobook.css
8
18
80
2020-05-26T15:35:47Z
Jaswacker
30585766
Created page with "/* CSS placed here will affect users of the MonoBook skin */ body > div#globalWrapper { background-color: #000; background-image: url("https://cdn.discordapp.com/atta..."
css
text/css
/* CSS placed here will affect users of the MonoBook skin */
body > div#globalWrapper {
background-color: #000;
background-image: url("https://cdn.discordapp.com/attachments/714642587100774465/714740418733932625/Wiki_BG.png");
}
c6091b78355a0544cd8750223512c19a0d494d64
81
80
2020-05-26T15:36:04Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the MonoBook skin */
body > div#globalWrapper {
background-image: url("https://cdn.discordapp.com/attachments/714642587100774465/714740418733932625/Wiki_BG.png");
}
b3672216e8e93bf62bd018a8e6cbb9c726c8e60d
82
81
2020-05-26T16:05:12Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the MonoBook skin */
body > div#globalWrapper {
background-image: url("https://cdn.discordapp.com/attachments/714642587100774465/714871098692337765/wikibg_placeholder.png");
background-color: rgb(0, 0, 0);
}
151a211929067e63eccefdb18217b6f03b70cedf
85
82
2020-05-26T17:09:07Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the MonoBook skin */
body > div#globalWrapper {
background-image: url("https://cdn.discordapp.com/attachments/407355607612522498/714887557942476930/unknown.png");
background-color: #7bdf56;
}
cd3d065065e2e8480decd74617ad4058ab894f29
87
85
2020-05-26T17:15:08Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the MonoBook skin */
body > div#globalWrapper {
background-image: url("https://cdn.discordapp.com/attachments/407355607612522498/714889297806885025/unknown.png");
background-color: #7bdf56;
}
5177798fd60d6caa4ce5abdc8e68ed536ff69f50
File:Favicon.ico
6
19
84
2020-05-26T16:48:59Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Wiki.png
6
20
86
2020-05-26T17:10:35Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Ben Tennyson
0
21
88
2020-05-26T17:23:13Z
Jaswacker
30585766
Redirected page to [[Ben Tennyson (disambiguation)]]
wikitext
text/x-wiki
#REDIRECT [[Ben Tennyson (disambiguation)]]
f20a76baecdc4351ec6c476f8b50554895595ad0
Template:Disambig
10
22
89
2020-05-26T17:29:48Z
Jaswacker
30585766
Created page with "{| style="margin:0 1em; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:block;" cellpadding="0" cellspacing="0" class="tt1_disambig" |- |''This is a Help:Di..."
wikitext
text/x-wiki
{| style="margin:0 1em; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:block;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This is a [[Help:Disambiguation#Disambiguation pages|disambiguation]] page: a list of articles associated with the same title. If an [[Special:Whatlinkshere/{{NAMESPACE}}:{{PAGENAME}}|internal link]] referred you to this page, you may wish to change the link to point directly to the intended article.''
|}<includeonly>
[[Category:Disambiguation pages]]
</includeonly>
<noinclude>
Use this template at the bottom of a disambiguation page. A disambiguation page lists at least three meanings for the term in question, and the name of the disambiguation page should end with "(disambiguation)".
To include this template in another page, write:
:<nowiki>{{Disambig}}</nowiki>
[[Category:Templates]]
d25d466bd64666f4933296d5d51fccd34715cfd3
90
89
2020-05-26T17:30:45Z
Jaswacker
30585766
wikitext
text/x-wiki
{| style="margin:0 1em; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:block;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This is a disambiguation page: a list of articles associated with the same title. If an [[Special:Whatlinkshere/{{NAMESPACE}}:{{PAGENAME}}|internal link]] referred you to this page, you may wish to change the link to point directly to the intended article.''
|}<includeonly>
[[Category:Disambiguation pages]]
</includeonly>
<noinclude>
Use this template at the bottom of a disambiguation page. A disambiguation page lists at least three meanings for the term in question, and the name of the disambiguation page should end with "(disambiguation)".
To include this template in another page, write:
:<nowiki>{{Disambig}}</nowiki>
[[Category:Templates]]
9f03ff1a83874156fb46c8e088b3b2b49758a1e6
Ben Tennyson (Disambiguation)
0
24
93
2020-05-26T18:00:31Z
Jaswacker
30585766
Created page with "[[Category:Disambiguation]] {{Disambig}} Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a..."
wikitext
text/x-wiki
[[Category:Disambiguation]]
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
__TOC__
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER.png|[[Ben Tennyson (Prime Dimension)|Ben "Prime"]]
File:PLACEHOLDER.png|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
==Alternate Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER.png|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER.png|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER.png|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
</gallery></center>
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER.png|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER.png|[[Max Tennyson (Gwen 10)|Max Tennyson from "Gwen 10"]]
File:PLACEHOLDER.png|[[Gwen Tennyson (placeholder dimension)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER.png|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER.png|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER.png|[[Albedo|Albedo]]
File:PLACEHOLDER.png|[[Eon|Eon]]
File:PLACEHOLDER.png|[[Ben Tennyson (Dimension 23)|"Ben 23"]]
File:PLACEHOLDER.png|[[Ben Tennyson (placeholder dimension)|"No-Watch Ben"]]
File:PLACEHOLDER.png|[[Mad Ben|Mad Ben]]
File:PLACEHOLDER.png|[[Bad Ben|Bad Ben]]
File:PLACEHOLDER.pngg|[[Nega Ben|Nega Ben]]
File:PLACEHOLDER.pngg|[[Benzarro|Benzarro]]
File:PLACEHOLDER.pngg|[[Argit (placeholder dimension)|"Argit 10"]]
</gallery></center>
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER.png|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:PLACEHOLDER.png|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'']]
</gallery></center>
8fea6231a40fb50fd97688dee2de5b95e549cc10
94
93
2020-05-26T18:02:16Z
Jaswacker
30585766
wikitext
text/x-wiki
[[Category:Disambiguation]]
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER.png|[[Ben Tennyson (Prime Dimension)|Ben "Prime"]]
File:PLACEHOLDER.png|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Alternate Versions of Ben Tennyson==
===Future Versions of Ben Tennyson===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER.png|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER.png|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER.png|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER.png|[[Eon|Eon]]
</gallery></center>
===The Greater Multiverse===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER.png|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER.png|[[Max Tennyson (Gwen 10)|Max Tennyson from "Gwen 10"]]
File:PLACEHOLDER.png|[[Gwen Tennyson (placeholder dimension)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER.png|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER.png|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER.png|[[Albedo|Albedo]]
File:PLACEHOLDER.png|[[Ben Tennyson (Dimension 23)|"Ben 23"]]
File:PLACEHOLDER.png|[[Ben Tennyson (placeholder dimension)|"No-Watch Ben"]]
File:PLACEHOLDER.png|[[Mad Ben|Mad Ben]]
File:PLACEHOLDER.png|[[Bad Ben|Bad Ben]]
File:PLACEHOLDER.png|[[Nega Ben|Nega Ben]]
File:PLACEHOLDER.png|[[Benzarro|Benzarro]]
File:PLACEHOLDER.png|[[Argit (placeholder dimension)|"Argit 10"]]
</gallery></center>
===Live Action===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER.png|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:PLACEHOLDER.png|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'']]
</gallery></center>
fe50af5843e70e08737fe5c3b6e073911898c6a9
95
94
2020-05-26T18:04:25Z
Jaswacker
30585766
wikitext
text/x-wiki
[[Category:Disambiguation]]
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER.png|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:PLACEHOLDER.png|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Alternate Versions of Ben Tennyson==
===Future Versions of Ben Tennyson===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER.png|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER.png|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER.png|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER.png|[[Eon|Eon]]
</gallery></center>
===The Greater Multiverse===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER.png|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER.png|[[Max Tennyson (Gwen 10)|Max Tennyson from "Gwen 10"]]
File:PLACEHOLDER.png|[[Gwen Tennyson (placeholder dimension)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER.png|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER.png|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER.png|[[Albedo|Albedo]]
File:PLACEHOLDER.png|[[Ben Tennyson (Dimension 23)|"Ben 23"]]
File:PLACEHOLDER.png|[[Ben Tennyson (placeholder dimension)|"No-Watch Ben"]]
File:PLACEHOLDER.png|[[Mad Ben|Mad Ben]]
File:PLACEHOLDER.png|[[Bad Ben|Bad Ben]]
File:PLACEHOLDER.png|[[Nega Ben|Nega Ben]]
File:PLACEHOLDER.png|[[Benzarro|Benzarro]]
File:PLACEHOLDER.png|[[Argit (placeholder dimension)|"Argit 10"]]
</gallery></center>
===Live Action===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER.png|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:PLACEHOLDER.png|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'']]
</gallery></center>
92e7a9007c3f860f2928f940d0d7a1dea4dd0381
96
95
2020-05-26T18:05:09Z
Jaswacker
30585766
wikitext
text/x-wiki
[[Category:Disambiguation]]
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER.png|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:PLACEHOLDER.png|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Alternate Versions of Ben Tennyson==
===Future Versions of Ben Tennyson===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER.png|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER.png|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER.png|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER.png|[[Eon|Eon]]
</gallery></center>
===The Greater Multiverse===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER.png|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER.png|[[Max Tennyson (Gwen 10)|Max Tennyson from "Gwen 10"]]
File:PLACEHOLDER.png|[[Gwen Tennyson (placeholder dimension)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER.png|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER.png|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER.png|[[Albedo|Albedo]]
File:PLACEHOLDER.png|[[Ben Tennyson (Dimension 23)|"Ben 23"]]
File:PLACEHOLDER.png|[[Ben Tennyson (placeholder dimension)|"No-Watch Ben"]]
File:PLACEHOLDER.png|[[Mad Ben|Mad Ben]]
File:PLACEHOLDER.png|[[Bad Ben|Bad Ben]]
File:PLACEHOLDER.png|[[Nega Ben|Nega Ben]]
File:PLACEHOLDER.png|[[Benzarro|Benzarro]]
File:PLACEHOLDER.png|[[Argit (placeholder dimension)|"Argit 10"]]
</gallery></center>
===Live Action===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER.png|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:PLACEHOLDER.png|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
9ddbcc323c232b37da3ac076a0273ecc1bb67b25
100
96
2020-05-26T18:10:49Z
Jaswacker
30585766
wikitext
text/x-wiki
[[Category:Disambiguation]]
{{Disambig}}
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER.png|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:PLACEHOLDER.png|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Alternate Versions of Ben Tennyson==
===Future Versions of Ben Tennyson===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER.png|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER.png|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER.png|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER.png|[[Eon|Eon]]
</gallery></center>
===The Greater Multiverse===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER.png|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER.png|[[Max Tennyson (Gwen 10)|Max Tennyson from "Gwen 10"]]
File:PLACEHOLDER.png|[[Gwen Tennyson (placeholder dimension)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER.png|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER.png|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER.png|[[Albedo|Albedo]]
File:PLACEHOLDER.png|[[Ben Tennyson (Dimension 23)|"Ben 23"]]
File:PLACEHOLDER.png|[[Ben Tennyson (placeholder dimension)|"No-Watch Ben"]]
File:PLACEHOLDER.png|[[Mad Ben|Mad Ben]]
File:PLACEHOLDER.png|[[Bad Ben|Bad Ben]]
File:PLACEHOLDER.png|[[Nega Ben|Nega Ben]]
File:PLACEHOLDER.png|[[Benzarro|Benzarro]]
File:PLACEHOLDER.png|[[Argit (placeholder dimension)|"Argit 10"]]
</gallery></center>
===Live Action===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER.png|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:PLACEHOLDER.png|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
ae005d1580107cfe0b2f2421d854d8c66d65d4cc
File:NUM Icon.png
6
25
97
2020-05-26T18:08:51Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:RUM Icon.png
6
26
98
2020-05-26T18:09:09Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:ASO Icon.png
6
27
99
2020-05-26T18:09:24Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Template:Trix
10
5
101
29
2020-05-26T18:11:20Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div id="title-trixicons" style="float: right; display: none;">{{Trix/icons|option={{{1|}}}}}{{Trix/icons|option={{{2|}}}}}{{Trix/icons|option={{{3|}}}}}{{Trix/icons|option={{{4|}}}}}{{Trix/icons|option={{{5|}}}}}{{Trix/icons|option={{{6|}}}}}{{Trix/icons|option={{{7|}}}}}{{Trix/icons|option={{{8|}}}}}{{Trix/icons|option={{{9|}}}}}{{Trix/icons|option={{{10|}}}}}{{Trix/icons|option={{{11|}}}}}{{Trix/icons|option={{{12|}}}}}{{Trix/icons|option={{{13|}}}}}{{Trix/icons|option={{{14|}}}}}{{Trix/icons|option={{{15|}}}}}</div></includeonly><noinclude>{{Trix/doc}}
[[Category:Templates]]
</noinclude>
6b3ca0de85a7e6cb28ade67713776fc33c27e9bd
Template:Trix/icons
10
12
104
68
2020-05-26T18:13:56Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{{#if:{{{custom|}}}|
{{#tag:imagemap
|Image:{{{custom}}}{{!}}{{{cSize|30px}}}
default [[{{{cLink}}}{{!}}{{{cPretty|{{{cLink}}}}}}]]
desc none
}}|}}<!--
Options
-->{{#if:{{{option|}}}|{{#switch:{{{option}}}
|ogs={{trix/icons_recurs|custom=OGS_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Original Series}}
|non={{trix/icons_recurs|custom=NON_Icon.png|cLink=Continuity#Non-Canon|cPretty=Non-Canon}}
|auu={{trix/icons_recurs|custom=NON_Icon.png|cLink=Continuity#Non-Canon|cPretty=Alternate Universe}}
|alf={{trix/icons_recurs|custom=UAF_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Alien Force}}
|ula={{trix/icons_recurs|custom=UAF_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Alien}}
|abd={{trix/icons_recurs|custom=ABD_Icon.png|cLink=Albedo}}
|ult={{trix/icons_recurs|custom=ULT_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Form}}
|num={{trix/icons_recurs|custom=NUM_Icon.png|cLink=Albedo|cPretty=Ultimate Form}}
|onv={{trix/icons_recurs|custom=ONV_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Omniverse}}
|aso={{trix/icons_recurs|custom=ASO_Icon.png|cLink=Albedo}}
|rum={{trix/icons_recurs|custom=RUM_Icon.png|cLink=Albedo|cPretty=Ultimate Form}}
|b23={{trix/icons_recurs|custom=B23_Icon.png|cLink=Ben Tennyson (Dimension 23)|cPretty=Ben 23}}
|g10={{trix/icons_recurs|custom=G10_Icon.png|cLink=Gwen Tennyson (dimen)|cPretty=Gwen 10}}
|mad={{trix/icons_recurs|custom=MAD_Icon.png|cLink=Mad Ben}}
|bad={{trix/icons_recurs|custom=BAD_Icon.png|cLink=Bad Ben}}
|neg={{trix/icons_recurs|custom=NEG_Icon.png|cLink=Nega Ben}}
|zar={{trix/icons_recurs|custom=ZAR_Icon.png|cLink=Benzarro}}
|rbt={{trix/icons_recurs|custom=RBT_Icon.png|cLink=Ben Tennyson (Reboot)|cPretty=Reboot}}
|fsn={{trix/icons_recurs|custom=FSN_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Fusion Alien}}
|bio={{trix/icons_recurs|custom=BIO_Icon.png|cLink=Ben 10,000 (Omniverse)|cPretty=Fusion Alien}}
|arg={{trix/icons_recurs|custom=ARG_Icon.png|cLink=Argit|cPretty=Argit}}
|nem={{trix/icons_recurs|custom=NEM_Icon.png|cLink=Nemetrix|cPretty=Nemetrix Alien}}
|ant={{trix/icons_recurs|custom=ANT_Icon.png|cLink=Kevin Levin (Reboot)|cPretty=Antitrix Alien}}
|{{{option}}}
}}|}}
</includeonly><noinclude>
[[Category:Templates]]
<pre>{{trix/icons_recurs
|custom=ONV_Icon.png
|cLink=Ben Tennyson (Prime)
|cPretty=Omniverse - Mouseover text, if different from the Link
|cSize=30px - Override the default size
}}</pre>
</noinclude>
79aa6070da2ff40c89bd2dfe757e3018ea2a8e35
MediaWiki:Monobook.css
8
18
105
87
2020-05-26T18:14:57Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the MonoBook skin */
body > div#globalWrapper {
background-image: url("https://cdn.discordapp.com/attachments/714642587100774465/714900430177435698/Wiki_BG.png");
background-color: #7bdf56;
}
05c448cab93f568a18e8f0580f2aaa9b7d919c29
File:ABD Icon.png
6
28
106
2020-05-26T18:15:48Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Ben
0
29
107
2020-05-26T18:15:53Z
Jaswacker
30585766
Redirected page to [[Ben Tennyson (disambiguation)]]
wikitext
text/x-wiki
#REDIRECT [[Ben Tennyson (disambiguation)]]
f20a76baecdc4351ec6c476f8b50554895595ad0
Template:Trix/doc
10
13
108
103
2020-05-26T18:18:46Z
Jaswacker
30585766
wikitext
text/x-wiki
<pre>{{trix
|ogs
|alf
|onv
|auu}}
</pre>
{{trix|ogs|alf|onv|auu}}
==Trix icon names==
Trix icon names used by this template are lowercase. Any mis-typed text not recognized as the template will be rendered as text. (You will notice, it's hard to miss.)
{| class="prettytable sortable" border="1"
|-
!ICON NAME
!TEMPLATE TEXT
!ICON
|-
|Original Series ||ogs ||{{Trix/icons|option=ogs }}
|-
|Non-Canon ||non ||{{Trix/icons|option=non }}
|-
|Unspecified Alternate Universe ||auu ||{{Trix/icons|option=non }}
|-
|Alien Force ||alf ||{{Trix/icons|option=alf }}
|-
|Ultimate Alien ||ula ||{{Trix/icons|option=ula }}
|-
|Albedo (UAF) ||abd ||{{Trix/icons|option=abd }}
|-
|Ultimatrix ||ult ||{{Trix/icons|option=ult }}
|-
|Negative Ultimatrix ||num ||{{Trix/icons|option=num }}
|-
|Omniverse ||onv ||{{Trix/icons|option=onv }}
|-
|Albedo (OV) ||aso ||{{Trix/icons|option=aso }}
|-
|Reconstructed Ultimatrix ||rum ||{{Trix/icons|option=rum }}
|-
|Ben 23 ||b23 ||{{Trix/icons|option=b23 }}
|-
|Gwen 10 (Omniverse) ||g10 ||{{Trix/icons|option=g10 }}
|-
|Mad Ben ||mad ||{{Trix/icons|option=mad }}
|-
|Bad Ben ||bad ||{{Trix/icons|option=bad }}
|-
|Nega Ben ||neg ||{{Trix/icons|option=neg }}
|-
|Benzarro ||zar ||{{Trix/icons|option=zar }}
|-
|Reboot ||rbt ||{{Trix/icons|option=rbt }}
|-
|Fusion Alien ||fsn ||{{Trix/icons|option=fsn }}
|-
|Biomnitrix Alien ||bio ||{{Trix/icons|option=bio }}
|-
|Argit ||arg ||{{Trix/icons|option=arg }}
|-
|Nemetrix Alien ||nem ||{{Trix/icons|option=nem }}
|-
|Antitrix Alien ||ant ||{{Trix/icons|option=ant }}
|}
[[Category:Templates]]
53335c1eed8101c6fce2809775aa2e9081124dbc
File:OGS Icon.png
6
30
109
2020-05-26T18:21:29Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:ULT Icon.png
6
31
111
2020-05-26T18:23:09Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:ONV Icon.png
6
32
112
2020-05-26T18:24:37Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:B23 Icon.png
6
33
115
2020-05-26T18:26:05Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:G10 Icon.png
6
34
116
2020-05-26T18:26:20Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:BIO Icon.png
6
35
117
2020-05-26T18:26:38Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:FSN Icon.png
6
36
119
2020-05-26T18:26:53Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:ANT Icon.png
6
38
121
2020-05-26T18:27:39Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:PLACEHOLDER.png
6
39
122
2020-05-26T18:27:55Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:NEM Icon.png
6
40
123
2020-05-26T18:28:02Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:ARG Icon.png
6
41
124
2020-05-26T18:28:24Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Ben Tennyson (Disambiguation)
0
24
125
100
2020-05-26T18:28:41Z
Jaswacker
30585766
wikitext
text/x-wiki
[[Category:Disambiguation]]
{{Disambig}}
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Alternate Versions of Ben Tennyson==
===Future Versions of Ben Tennyson===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Eon|Eon]]
</gallery></center>
===The Greater Multiverse===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Max Tennyson (Gwen 10)|Max Tennyson from "Gwen 10"]]
File:PLACEHOLDER2.png|[[Gwen Tennyson (placeholder dimension)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Dimension 23)|"Ben 23"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (placeholder dimension)|"No-Watch Ben"]]
File:PLACEHOLDER2.png|[[Mad Ben|Mad Ben]]
File:PLACEHOLDER2.png|[[Bad Ben|Bad Ben]]
File:PLACEHOLDER2.png|[[Nega Ben|Nega Ben]]
File:PLACEHOLDER2.png|[[Benzarro|Benzarro]]
File:PLACEHOLDER2.png|[[Argit (placeholder dimension)|"Argit 10"]]
</gallery></center>
===Live Action===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:PLACEHOLDER2.png|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
7c62df643c1f5f13f33ec95aceb3dd5e1bd4ca85
131
125
2020-05-26T18:32:50Z
Jaswacker
30585766
wikitext
text/x-wiki
{{Disambig}}
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Alternate Versions of Ben Tennyson==
===Future Versions of Ben Tennyson===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Eon|Eon]]
</gallery></center>
===The Greater Multiverse===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Max Tennyson (Gwen 10)|Max Tennyson from "Gwen 10"]]
File:PLACEHOLDER2.png|[[Gwen Tennyson (placeholder dimension)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Dimension 23)|"Ben 23"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (placeholder dimension)|"No-Watch Ben"]]
File:PLACEHOLDER2.png|[[Mad Ben|Mad Ben]]
File:PLACEHOLDER2.png|[[Bad Ben|Bad Ben]]
File:PLACEHOLDER2.png|[[Nega Ben|Nega Ben]]
File:PLACEHOLDER2.png|[[Benzarro|Benzarro]]
File:PLACEHOLDER2.png|[[Argit (placeholder dimension)|"Argit 10"]]
</gallery></center>
===Live Action===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:PLACEHOLDER2.png|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
2e4fff0f9d4f7dd60e036eeab87cd2325195e9a4
133
131
2020-05-26T18:36:17Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Alternate Versions of Ben Tennyson==
===Future Versions of Ben Tennyson===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Eon|Eon]]
</gallery></center>
===The Greater Multiverse===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Max Tennyson (Gwen 10)|Max Tennyson from "Gwen 10"]]
File:PLACEHOLDER2.png|[[Gwen Tennyson (placeholder dimension)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Dimension 23)|"Ben 23"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (placeholder dimension)|"No-Watch Ben"]]
File:PLACEHOLDER2.png|[[Mad Ben|Mad Ben]]
File:PLACEHOLDER2.png|[[Bad Ben|Bad Ben]]
File:PLACEHOLDER2.png|[[Nega Ben|Nega Ben]]
File:PLACEHOLDER2.png|[[Benzarro|Benzarro]]
File:PLACEHOLDER2.png|[[Argit (placeholder dimension)|"Argit 10"]]
</gallery></center>
===Live Action===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:PLACEHOLDER2.png|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
ef47637f149da021ce80959675b284209fc22b6d
134
133
2020-05-26T18:36:51Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
<br/><br>
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Alternate Versions of Ben Tennyson==
===Future Versions of Ben Tennyson===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Eon|Eon]]
</gallery></center>
===The Greater Multiverse===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Max Tennyson (Gwen 10)|Max Tennyson from "Gwen 10"]]
File:PLACEHOLDER2.png|[[Gwen Tennyson (placeholder dimension)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Dimension 23)|"Ben 23"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (placeholder dimension)|"No-Watch Ben"]]
File:PLACEHOLDER2.png|[[Mad Ben|Mad Ben]]
File:PLACEHOLDER2.png|[[Bad Ben|Bad Ben]]
File:PLACEHOLDER2.png|[[Nega Ben|Nega Ben]]
File:PLACEHOLDER2.png|[[Benzarro|Benzarro]]
File:PLACEHOLDER2.png|[[Argit (placeholder dimension)|"Argit 10"]]
</gallery></center>
===Live Action===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:PLACEHOLDER2.png|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
c3b9a617fb1f9f6645d25c97ae5649593a269766
135
134
2020-05-26T18:45:06Z
Jaswacker
30585766
wikitext
text/x-wiki
{{Disambig}}
<br/><br>
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Alternate Versions of Ben Tennyson==
===Future Versions of Ben Tennyson===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Eon|Eon]]
</gallery></center>
===The Greater Multiverse===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Max Tennyson (Gwen 10)|Max Tennyson from "Gwen 10"]]
File:PLACEHOLDER2.png|[[Gwen Tennyson (placeholder dimension)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Dimension 23)|"Ben 23"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (placeholder dimension)|"No-Watch Ben"]]
File:PLACEHOLDER2.png|[[Mad Ben|Mad Ben]]
File:PLACEHOLDER2.png|[[Bad Ben|Bad Ben]]
File:PLACEHOLDER2.png|[[Nega Ben|Nega Ben]]
File:PLACEHOLDER2.png|[[Benzarro|Benzarro]]
File:PLACEHOLDER2.png|[[Argit (placeholder dimension)|"Argit 10"]]
</gallery></center>
===Live Action===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:PLACEHOLDER2.png|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
1c5a02f172c6f00667f6d86132b1d5670ef51686
138
135
2020-05-26T19:07:57Z
Jaswacker
30585766
wikitext
text/x-wiki
{{Disambig}}
<br/><br>
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Alternate Versions of Ben Tennyson==
===Future Versions of Ben Tennyson===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Eon|Eon]]
</gallery></center>
===The Greater Multiverse===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Max Tennyson (Gwen 10)|Max Tennyson from "Gwen 10"]]
File:PLACEHOLDER2.png|[[Gwen Tennyson (placeholder dimension)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Dimension 23)|"Ben 23"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (placeholder dimension)|"No-Watch Ben"]]
File:PLACEHOLDER2.png|[[Mad Ben|Mad Ben]]
File:PLACEHOLDER2.png|[[Bad Ben|Bad Ben]]
File:PLACEHOLDER2.png|[[Nega Ben|Nega Ben]]
File:PLACEHOLDER2.png|[[Benzarro|Benzarro]]
File:PLACEHOLDER2.png|[[Argit (placeholder dimension)|"Argit 10"]]
</gallery></center>
===Live Action===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben.png|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
c15cf519c97b395ea6388ef6dfa4ef75acde90e0
142
138
2020-05-26T19:09:13Z
Jaswacker
30585766
wikitext
text/x-wiki
{{Disambig}}
<br/>
<br>
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Alternate Versions of Ben Tennyson==
===Future Versions of Ben Tennyson===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Eon|Eon]]
</gallery></center>
===The Greater Multiverse===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Max Tennyson (Gwen 10)|Max Tennyson from "Gwen 10"]]
File:PLACEHOLDER2.png|[[Gwen Tennyson (placeholder dimension)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Dimension 23)|"Ben 23"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (placeholder dimension)|"No-Watch Ben"]]
File:PLACEHOLDER2.png|[[Mad Ben|Mad Ben]]
File:PLACEHOLDER2.png|[[Bad Ben|Bad Ben]]
File:PLACEHOLDER2.png|[[Nega Ben|Nega Ben]]
File:PLACEHOLDER2.png|[[Benzarro|Benzarro]]
File:PLACEHOLDER2.png|[[Argit (placeholder dimension)|"Argit 10"]]
</gallery></center>
===Live Action===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben.png|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
ebc982745d7c6ec4a8efd32dec410dc3e24ab142
143
142
2020-05-26T19:09:55Z
Jaswacker
30585766
wikitext
text/x-wiki
{{Disambig}}
<br/><br>
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
<br/><br>
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Alternate Versions of Ben Tennyson==
===Future Versions of Ben Tennyson===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Eon|Eon]]
</gallery></center>
===The Greater Multiverse===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Max Tennyson (Gwen 10)|Max Tennyson from "Gwen 10"]]
File:PLACEHOLDER2.png|[[Gwen Tennyson (placeholder dimension)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Dimension 23)|"Ben 23"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (placeholder dimension)|"No-Watch Ben"]]
File:PLACEHOLDER2.png|[[Mad Ben|Mad Ben]]
File:PLACEHOLDER2.png|[[Bad Ben|Bad Ben]]
File:PLACEHOLDER2.png|[[Nega Ben|Nega Ben]]
File:PLACEHOLDER2.png|[[Benzarro|Benzarro]]
File:PLACEHOLDER2.png|[[Argit (placeholder dimension)|"Argit 10"]]
</gallery></center>
===Live Action===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben.png|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
a44d5b46d53a69ce728450c927b72019c3311454
144
143
2020-05-26T19:10:23Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Alternate Versions of Ben Tennyson==
===Future Versions of Ben Tennyson===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Eon|Eon]]
</gallery></center>
===The Greater Multiverse===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Max Tennyson (Gwen 10)|Max Tennyson from "Gwen 10"]]
File:PLACEHOLDER2.png|[[Gwen Tennyson (placeholder dimension)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Dimension 23)|"Ben 23"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (placeholder dimension)|"No-Watch Ben"]]
File:PLACEHOLDER2.png|[[Mad Ben|Mad Ben]]
File:PLACEHOLDER2.png|[[Bad Ben|Bad Ben]]
File:PLACEHOLDER2.png|[[Nega Ben|Nega Ben]]
File:PLACEHOLDER2.png|[[Benzarro|Benzarro]]
File:PLACEHOLDER2.png|[[Argit (placeholder dimension)|"Argit 10"]]
</gallery></center>
===Live Action===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben.png|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
d008f625ca87b930aaa6b124d0d209f596a8af6b
145
144
2020-05-26T19:10:43Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
<br/><br>
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Alternate Versions of Ben Tennyson==
===Future Versions of Ben Tennyson===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Eon|Eon]]
</gallery></center>
===The Greater Multiverse===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Max Tennyson (Gwen 10)|Max Tennyson from "Gwen 10"]]
File:PLACEHOLDER2.png|[[Gwen Tennyson (placeholder dimension)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Dimension 23)|"Ben 23"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (placeholder dimension)|"No-Watch Ben"]]
File:PLACEHOLDER2.png|[[Mad Ben|Mad Ben]]
File:PLACEHOLDER2.png|[[Bad Ben|Bad Ben]]
File:PLACEHOLDER2.png|[[Nega Ben|Nega Ben]]
File:PLACEHOLDER2.png|[[Benzarro|Benzarro]]
File:PLACEHOLDER2.png|[[Argit (placeholder dimension)|"Argit 10"]]
</gallery></center>
===Live Action===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben.png|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
ef6ea8678fd9abd675297aecf0c0b7af83795a7c
146
145
2020-05-26T19:13:38Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
<br/><br>
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Alternate Versions of Ben Tennyson==
===Future Versions of Ben Tennyson===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Eon|Eon]]
</gallery></center>
===The Greater Multiverse===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Max Tennyson (Gwen 10)|Max Tennyson from "Gwen 10"]]
File:PLACEHOLDER2.png|[[Gwen Tennyson (placeholder dimension)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Dimension 23)|"Ben 23"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (placeholder dimension)|"No-Watch Ben"]]
File:PLACEHOLDER2.png|[[Mad Ben|Mad Ben]]
File:PLACEHOLDER2.png|[[Bad Ben|Bad Ben]]
File:PLACEHOLDER2.png|[[Nega Ben|Nega Ben]]
File:PLACEHOLDER2.png|[[Benzarro|Benzarro]]
File:PLACEHOLDER2.png|[[Argit (placeholder dimension)|"Argit 10"]]
</gallery></center>
===Live Action===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
46f2a0bb37cc852a7d3c3c947897d745886fcdd5
File:PLACEHOLDER2.png
6
42
126
2020-05-26T18:29:16Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:RBT Icon.png
6
43
127
2020-05-26T18:30:39Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:MAD Icon.png
6
44
128
2020-05-26T18:31:11Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:NEG Icon.png
6
45
129
2020-05-26T18:32:01Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:BAD Icon.png
6
46
130
2020-05-26T18:32:17Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:ZAR Icon.png
6
47
132
2020-05-26T18:32:51Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Wiki.png
6
20
136
86
2020-05-26T18:53:18Z
Carth
30634784
Carth uploaded a new version of [[File:Wiki.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
137
136
2020-05-26T18:55:44Z
Carth
30634784
Carth uploaded a new version of [[File:Wiki.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
157
137
2020-05-26T21:03:27Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:Wiki.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
158
157
2020-05-26T21:38:08Z
Carth
30634784
Carth uploaded a new version of [[File:Wiki.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Rebootrender1.png
6
48
139
2020-05-26T19:08:00Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Omniverserender1.png
6
49
140
2020-05-26T19:08:20Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Alienswarmben.png
6
50
141
2020-05-26T19:08:43Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Alienswarmben2.png
6
51
147
2020-05-26T19:14:37Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Template:Chargallery
10
52
148
2020-05-26T19:53:47Z
Jaswacker
30585766
Created page with "<includeonly><h2>Galleries</h2> File:New Gallery.png|thumb|left|link={{{pagename|{{PAGENAME}}}}}/Gallery|<div style="text-align:center;"><small>Click to view the gallery for..."
wikitext
text/x-wiki
<includeonly><h2>Galleries</h2>
[[File:New Gallery.png|thumb|left|link={{{pagename|{{PAGENAME}}}}}/Gallery|<div style="text-align:center;"><small>Click to view the gallery for <br>{{{pagename|{{PAGENAME}}}}}.</small></div>]]
{{#ifexist:{{PAGENAME}}/Designs|[[File:Design Gallery.png|thumb|right|link={{{pagename|{{PAGENAME}}}}}/Designs|<div style="text-align:center;"><small>Click to view the designs for <br>{{{pagename|{{PAGENAME}}}}}.</small></div>]]}}
{{-}}</includeonly>
<noinclude>[[Category:Templates]]</noinclude>
e1fa356dcd8f4b5d0da1366acc570c55858b9d00
150
148
2020-05-26T19:57:53Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><h2>Galleries</h2>
[[File:New Gallery.png|thumb|left|link={{{pagename|{{PAGENAME}}}}}/Gallery|<div style="text-align:center;"><small>''Click to view the gallery for <br>'''{{{pagename|{{PAGENAME}}}}}.'''''</small></div>]]
[[File:Design Gallery.png|thumb|right|link={{{pagename|{{PAGENAME}}}}}/Designs|<div style="text-align:center;"><small>''Click to view the designs for <br>'''{{{pagename|{{PAGENAME}}}}}.'''''</small></div>]]}}
{{-}}</includeonly>
<noinclude>[[Category:Templates]]</noinclude>
1e29facff8c8fe70cd72c993f7f8e49ef77bd46d
151
150
2020-05-26T20:06:36Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><h2>Galleries</h2>
[[File:New Gallery.png|thumb|left|link={{{pagename|{{PAGENAME}}}}}/Gallery|<div style="text-align:center;"><small>''Click to view the gallery for <br>'''{{{pagename|{{PAGENAME}}}}}.'''''</small></div>]]
[[File:Design Gallery.png|thumb|right|link={{{pagename|{{PAGENAME}}}}}/Designs|<div style="text-align:center;"><small>''Click to view the designs for <br>'''{{{pagename|{{PAGENAME}}}}}.'''''</small></div>]]
</includeonly>
<noinclude>[[Category:Templates]]</noinclude>
7f2a8be1885ab9590bed96de95a8666fff3cc43c
156
151
2020-05-26T21:02:19Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><h2>Galleries</h2>
[[File:New Gallery.png|thumb|width 150 height 160|left|link={{{pagename|{{PAGENAME}}}}}/Gallery|<div style="text-align:center;"><small>''Click to view the gallery for <br>'''{{{pagename|{{PAGENAME}}}}}.'''''</small></div>]]
[[File:Design Gallery.png|thumb|width 150 height 160|right|link={{{pagename|{{PAGENAME}}}}}/Designs|<div style="text-align:center;"><small>''Click to view the designs for <br>'''{{{pagename|{{PAGENAME}}}}}.'''''</small></div>]]
</includeonly>
<noinclude>[[Category:Templates]]</noinclude>
468fa256b2bc7c75d88c53f04a477ff463067003
Upchuck
0
6
149
83
2020-05-26T19:54:16Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
== History ==
placeholder. This is basically everything that's ever happened to the character
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
====Toyline====
[[File:image.png|thumb|upright=1.66|caption]]
*'''Name of Toy''' (Series/size, year)
: Description and information
: about the toy
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
{{Chargallery}}
fb627ebcf1b44f44ef18323d5870d3410f24ade4
File:New Gallery.png
6
53
152
2020-05-26T20:30:38Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
155
152
2020-05-26T20:55:39Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:New Gallery.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Design Gallery.png
6
54
153
2020-05-26T20:30:59Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
154
153
2020-05-26T20:55:17Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:Design Gallery.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
User:Carth
2
55
159
2020-05-26T21:39:15Z
Carth
30634784
Created page with "Name's Carth."
wikitext
text/x-wiki
Name's Carth.
d26b8800402fe4ecdfccf5941250e98444d2546b
Main Page
0
1
160
3
2020-05-26T22:28:54Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ _NOEDITSECTION__
big big placeholders
b70c8636b5d4ed49b8d7842e95235cffa966323a
161
160
2020-05-26T22:29:10Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
big big placeholders
a2ccae8cce3c6b0c1f674c5e53d17002bde35332
163
161
2020-05-26T22:33:34Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
<span id="esmeral"></span>
{{:Main Page/disambig}}
<div class="mainleft" style="text-align: center; vertical-align: top">
{{:Main Page/logo}}
fb13ba5f6325d6d3a820d17a56bda7b6a2847818
164
163
2020-05-26T22:55:48Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
<span id="esmeral"></span>
<div class="mainleft" style="text-align: center; vertical-align: top">
{{:Main Page/logo}}
</imagemap></div>
<div id="mpexternaliconssocmed">
<div style="width:100px;left:10px;position:absolute;z-index:2;top:10px;">We're also on these websites:</div><imagemap>
File:discord pakmar.png|208px
rect 9 65 53 110 [https://discord.com|Invite currently unavailable]
rect 121 0 207 114 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap></div></div>
</div><div class="mainright">
{{Featurebox
|The Franchise
|color=#999
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:both"></div>
{{Featurebox
|Fundamentals
|color=#039
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
8388c1e8ddf57af58ecd228009fdcb5092069ecb
165
164
2020-05-26T22:56:32Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
<span id="esmeral"></span>
<div class="mainleft" style="text-align: center; vertical-align: top">
{{:Main Page/logo}}
</imagemap></div>
<div id="mpexternaliconssocmed">
<div style="width:100px;left:10px;position:absolute;z-index:2;top:10px;">We're also on these websites:</div><imagemap>
File:discord pakmar.png|208px
rect 9 65 53 110 [https://discord.com|Invite currently unavailable]
rect 121 0 207 114 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</div></div>
</div><div class="mainright">
{{Featurebox
|The Franchise
|color=#999
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:both"></div>
{{Featurebox
|Fundamentals
|color=#039
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
9dce2845327971d0c53b3dc4f2312ca9fb6ac96b
166
165
2020-05-26T22:57:01Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
<span id="esmeral"></span>
<div class="mainleft" style="text-align: center; vertical-align: top">
{{:Main Page/logo}}
</imagemap></div>
<div id="mpexternaliconssocmed">
<div style="width:100px;left:10px;position:absolute;z-index:2;top:10px;">We're also on these websites:</div><imagemap>
File:discord pakmar.png|208px
rect 9 65 53 110 [https://discord.com|Invite currently unavailable]
rect 121 0 207 114 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap></div></div>
</div><div class="mainright">
{{Featurebox
|The Franchise
|color=#999
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:both"></div>
{{Featurebox
|Fundamentals
|color=#039
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
8388c1e8ddf57af58ecd228009fdcb5092069ecb
167
166
2020-05-26T22:57:34Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
<span id="esmeral"></span>
<div class="mainleft" style="text-align: center; vertical-align: top">
{{:Main Page/logo}}
</div>
<div id="mpexternaliconssocmed">
<div style="width:100px;left:10px;position:absolute;z-index:2;top:10px;">We're also on these websites:</div><imagemap>
File:discord pakmar.png|208px
rect 9 65 53 110 [https://discord.com|Invite currently unavailable]
rect 121 0 207 114 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap></div></div>
</div><div class="mainright">
{{Featurebox
|The Franchise
|color=#999
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:both"></div>
{{Featurebox
|Fundamentals
|color=#039
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
1e5e72bb30250e8da765529ce96527d794321631
178
167
2020-05-26T23:17:39Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<span id="esmeral"></span>
<div class="mainleft" style="text-align: center; vertical-align: top">
{{:Main Page/logo}}
</div>
<div id="mpexternaliconssocmed">
<div style="width:100px;left:10px;position:absolute;z-index:2;top:10px;">We're also on these websites:</div><imagemap>
File:discord pakmar.png|208px
rect 9 65 53 110 [https://discord.com|Invite currently unavailable]
rect 121 0 207 114 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap></div></div>
</div><div class="mainright">
<div style="clear:both"></div>
{{Featurebox
|The Franchise
|color=#999
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:both"></div>
{{Featurebox
|Fundamentals
|color=#039
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
8c69b9a4714e49aa659146a07f4b6415496249c0
179
178
2020-05-26T23:18:46Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<span id="esmeral"></span>
<div class="mainleft" style="text-align: center; vertical-align: top">
{{:Main Page/logo}}
</div>
<div id="mpexternaliconssocmed">
<div style="width:100px;left:10px;position:absolute;z-index:2;top:150px;">We're also on these websites:</div><imagemap>
File:discord pakmar.png|208px
rect 9 65 53 110 [https://discord.com|Invite currently unavailable]
rect 121 0 207 114 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap></div></div>
</div><div class="mainright">
<div style="clear:both"></div>
{{Featurebox
|The Franchise
|color=#999
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:both"></div>
{{Featurebox
|Fundamentals
|color=#039
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
1f46091685fed06efbb3fca3c13b8d8ee4aba52f
180
179
2020-05-26T23:19:45Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<span id="esmeral"></span>
<div class="mainleft" style="text-align: center; vertical-align: top">
{{:Main Page/logo}}
</div>
<div id="mpexternaliconssocmed">
<imagemap>
File:discord pakmar.png|208px
rect 9 65 53 110 [https://discord.com|Invite currently unavailable]
rect 121 0 207 114 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap></div></div>
</div><div class="mainright">
<div style="clear:both"></div>
{{Featurebox
|The Franchise
|color=#999
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:both"></div>
{{Featurebox
|Fundamentals
|color=#039
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
7b007d6c6b7683d3b5ca39785c1aae867b053699
186
180
2020-05-26T23:27:01Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<span id="esmeral"></span>
<div class="mainleft" style="text-align: center; vertical-align: top">
{{:Main Page/logo}}
</div>
<div id="mpexternaliconssocmed">
<imagemap>
File:discord pakmar.png|350px
rect 9 65 53 110 [https://discord.com|Invite currently unavailable]
rect 121 0 207 114 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap></div></div>
</div><div class="mainright">
<div style="clear:both"></div>
{{Featurebox
|The Franchise
|color=#999
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:both"></div>
{{Featurebox
|Fundamentals
|color=#039
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
034588d2e86e77b01395b7d6e94c015310ab0a01
188
186
2020-05-26T23:40:58Z
Jaswacker
30585766
wikitext
text/x-wiki
<div align="center">
{|cellpadding="5" cellspacing="0" width="100%"
| style="border-bottom:1px solid #ffffff” align="center" valign=“50%”|
<span id="esmeral"></span>
<div class="mainleft" style="text-align: center; vertical-align: top">
{{:Main Page/logo}}
</div>
<div id="mpexternaliconssocmed">
<imagemap>
File:discord pakmar.png|350px
rect 9 65 53 110 [https://discord.com|Invite currently unavailable]
rect 121 0 207 114 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap></div></div>
|-
|style="border-bottom:1px solid #ffffff;” align="center" valign="top" width="50%"|
</div><div class="mainright">
<div style="clear:both"></div>
{{Featurebox
|The Franchise
|color=#999
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
|colspan="2" style="border-bottom:1px solid #ffffff; border-left:1px solid #aaa" align="center" valign="top" width=“bottom”|
</div>
<div style="clear:both"></div>
{{Featurebox
|Fundamentals
|color=#039
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
69d792057d84632d7000b9db7bc5d2c91a572e28
190
188
2020-05-26T23:44:05Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div align="center">
{|cellpadding="5" cellspacing="0" width="100%"
| style="border-bottom:1px solid #ffffff” align="center" valign=“50%”|
<span id="esmeral"></span>
<div class="mainleft" style="text-align: center; vertical-align: top">
{{:Main Page/logo}}
</div>
<div id="mpexternaliconssocmed">
<imagemap>
File:discord pakmar.png|350px
rect 9 65 53 110 [https://discord.com|Invite currently unavailable]
rect 121 0 207 114 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap></div></div>
|-
|style="border-bottom:1px solid #ffffff;” align="center" valign="top" width="50%"|
</div>
<div style="clear:both"></div>
{{Featurebox
|The Franchise
|color=#999
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
|colspan="2" style="border-bottom:1px solid #ffffff; border-left:1px solid #aaa" align="center" valign="top" width=“bottom”|
</div><div class="mainright">
<div style="clear:both"></div>
{{Featurebox
|Fundamentals
|color=#039
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
5416de0115fd732a27fc0e0ec35bcb89f4584f9e
192
190
2020-05-26T23:53:09Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div align="center">
{|cellpadding="5" cellspacing="0" width="100%"
| style="border-bottom:1px solid #ffffff” align="center" valign=“left” width=“50%”|
<span id="esmeral"></span>
<div class="mainleft" style="text-align: center; vertical-align: top">
{{:Main Page/logo}}
</div>
<div id="mpexternaliconssocmed">
<imagemap>
File:discord pakmar.png|350px
rect 9 65 53 110 [https://discord.com|Invite currently unavailable]
rect 121 0 207 114 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap></div></div>
|-
|style="border-bottom:1px solid #ffffff;” align="center" valign=“right” width="50%"|
</div>
<div style="clear:both"></div>
{{Featurebox
|The Franchise
|color=#999
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
|colspan="2" style="border-bottom:1px solid #ffffff; border-left:1px solid #aaa" align="center" valign=“bottom” width=“100%”|
</div><div class="mainright">
<div style="clear:both"></div>
{{Featurebox
|Fundamentals
|color=#039
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
a4f74fd4eb99551227b61abe2c479b67e9450592
193
192
2020-05-26T23:54:46Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div align="center">
{|cellpadding="5" cellspacing="0" width="100%"
| style="border-bottom:1px solid #ffffff” align="center" valign=“left” width=“50%”|
<span id="esmeral"></span>
<div class="mainleft" style="text-align: center; vertical-align: top">
{{:Main Page/logo}}
</div>
<div id="mpexternaliconssocmed">
<imagemap>
File:discord pakmar.png|350px
rect 9 65 53 110 [https://discord.com|Invite currently unavailable]
rect 121 0 207 114 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap></div></div>
|-
|style="border-bottom:1px solid #ffffff;” align="center" valign=“right” width="50%"|
</div><div class="mainright">
</div>
{{Featurebox
|The Franchise
|color=#999
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
|colspan="2" style="border-bottom:1px solid #ffffff; border-left:1px solid #aaa" align="center" valign=“bottom” width=“100%”|
</div>
<div style="clear:both"></div>
{{Featurebox
|Fundamentals
|color=#039
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
affc3204981b7386b45e79039445a63e76d6df55
194
193
2020-05-26T23:57:38Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<span id="esmeral"></span>
<div class="mainleft" style="text-align: center; vertical-align: top">
{{:Main Page/logo}}
</div>
<div id="mpexternaliconssocmed">
<imagemap>
File:discord pakmar.png|350px
rect 9 65 53 110 [https://discord.com|Invite currently unavailable]
rect 121 0 207 114 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap></div></div>
</div><div class="mainright">
</div>
{{Featurebox
|The Franchise
|color=#999
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:both"></div>
{{Featurebox
|Fundamentals
|color=#039
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
25c7eda40fce51c80001dc05ce02f793f48d6204
196
194
2020-05-27T00:15:06Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<span id="esmeral"></span>
<div class="mainleft" style="text-align: center; vertical-align: top">
{{:Main Page/logo}}
<div>
<div id="mpexternaliconssocmed">
<imagemap>
File:discord pakmar.png|350px
rect 9 65 53 110 [https://discord.com|Invite currently unavailable]
rect 121 0 207 114 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap></div>
<div><div class="mainright">
<div style="clear:both"></div>
{{Featurebox
|The Franchise
|color=#999
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
<div>
<div style="clear:both"></div>
{{Featurebox
|Fundamentals
|color=#039
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div><div class="mainleft">
{{Featurebox
|Fundamentals
|color=#c93
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
c0e9da23b9c670b83d37d254280555d8e50d71fa
198
196
2020-05-27T00:16:37Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<span id="esmeral"></span>
<div class="mainleft" style="text-align: center; vertical-align: top">
{{:Main Page/logo}}
<div>
<div id="mpexternaliconssocmed">
<imagemap>
File:discord pakmar.png|350px
rect 9 65 53 110 [https://discord.com|Invite currently unavailable]
rect 121 0 207 114 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap></div>
<div><div class="mainright">
<div style="clear:both"></div>
{{Featurebox
|The Franchise
|color=#999
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
<div>
<div style="clear:both"></div>
{{Featurebox
|Fundamentals
|color=#039
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div><div class="mainleft">
{{Featurebox
|Polls
|color=#c93
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
7394ff0bc21e6014ea55ae4227ab229dd4e16c5c
201
198
2020-05-27T00:22:55Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<span id="esmeral"></span>
<div class="mainleft" style="text-align: center; vertical-align: top">
{{:Main Page/logo}}
</div>
<div id="mpexternaliconssocmed">
<imagemap>
File:discord pakmar.png|350px
rect 9 65 53 110 [https://discord.com|Invite currently unavailable]
rect 121 0 207 114 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap></div>
</div><div class="mainright">
<div style="clear:both"></div>
{{Featurebox
|The Franchise
|color=#999
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:both"></div>
{{Featurebox
|Fundamentals
|color=#039
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div><div class="mainleft">
{{Featurebox
|Polls
|color=#c93
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
45ed83df84137641755374b2306f626aacb264fb
202
201
2020-05-27T00:23:37Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<span id="esmeral"></span>
<div class="mainleft" style="text-align: center; vertical-align: top">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord pakmar.png|350px
rect 9 65 53 110 [https://discord.com|Invite currently unavailable]
rect 121 0 207 114 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap></div>
</div><div class="mainright">
<div style="clear:both"></div>
{{Featurebox
|The Franchise
|color=#999
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:both"></div>
{{Featurebox
|Fundamentals
|color=#039
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div><div class="mainleft">
{{Featurebox
|Polls
|color=#c93
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
1c8232e06ee0512ff4d436d6c89a95a4c76462a9
Main Page/logo
0
56
162
2020-05-26T22:33:01Z
Jaswacker
30585766
Created page with "<includeonly><choose> <option><imagemap>File:PLACEHOLDER2.png|347px|frameless default [[Ben Tennyson (Prime)]] desc none</imagemap></option> <option><imagemap>File:PLACEHOLDER..."
wikitext
text/x-wiki
<includeonly><choose>
<option><imagemap>File:PLACEHOLDER2.png|347px|frameless
default [[Ben Tennyson (Prime)]]
desc none</imagemap></option>
<option><imagemap>File:PLACEHOLDER2.png|347px|frameless
default [[page]]
desc none</imagemap></option>
</choose></includeonly>
<noinclude>Current logos (please update if you add to or remove from the list in the code):
<gallery>
File:PLACEHOLDER2.png
File:PLACEHOLDER2.png
</gallery>[[Category:Main Page templates]]</noinclude>
cf840d3223a23f08ccde581bcabf95f4aaeb28dc
195
162
2020-05-27T00:08:14Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><choose>
<option><imagemap>File:heatblast_logo.png|347px|frameless
default [[Heatblast]]
desc none</imagemap></option>
<option><imagemap>File:wildmutt_logo.png|347px|frameless
default [[Wildmutt]]
desc none</imagemap></option>
<option><imagemap>File:diamondhead_logo.png|347px|frameless
default [[Diamondhead]]
desc none</imagemap></option>
<option><imagemap>File:xlr8_logo.png|347px|frameless
default [[XLR8]]
desc none</imagemap></option>
<option><imagemap>File:greymatter_logo.png|347px|frameless
default [[Grey Matter]]
desc none</imagemap></option>
<option><imagemap>File:fourarms_logo.png|347px|frameless
default [[Four Arms]]
desc none</imagemap></option>
<option><imagemap>File:stinkfly_logo.png|347px|frameless
default [[Stinkfly]]
desc none</imagemap></option>
<option><imagemap>File:ripjaws_logo.png|347px|frameless
default [[Ripjaws]]
desc none</imagemap></option>
<option><imagemap>File:upgrade_logo.png|347px|frameless
default [[Upgrade]]
desc none</imagemap></option>
<option><imagemap>File:ghostfreak_logo.png|347px|frameless
default [[Ghostfreak]]
desc none</imagemap></option>
</choose></includeonly>
<noinclude>Current logos (please update if you add to or remove from the list in the code):
<gallery>
File:heatblast_logo.png
File:wildmutt_logo.png
File:diamondhead_logo.png
File:xlr8_logo.png
File:greymatter_logo.png
File:fourarms_logo.png
File:stinkfly_logo.png
File:ripjaws_logo.png
File:upgrade_logo.png
File:ghostfreak_logo.png
</gallery>[[Category:Main Page templates]]</noinclude>
41ab841bf6f76fc005ebe217b276fbf04a4090a3
Template:Featurebox
10
57
168
2020-05-26T22:58:11Z
Jaswacker
30585766
Created page with "<includeonly><div div id="{{{id|}}}" class="featurebox" style="{{#if:{{{table|}}}|display:table;|}}border-color:{{{color|gray}}};"><p class="featurebox-heading" style="backgro..."
wikitext
text/x-wiki
<includeonly><div div id="{{{id|}}}" class="featurebox" style="{{#if:{{{table|}}}|display:table;|}}border-color:{{{color|gray}}};"><p class="featurebox-heading" style="background-color:{{{color|gray}}};">{{#if:{{{view|}}}|<span style="float:right;font-size:small;font-weight:500;">[[{{{view}}}|v]]</span>|}}{{{title|{{{1|Title}}}}}}</p>
{{{content|{{{2|Content}}}}}}
</div></includeonly><noinclude>{{doc}}
[[Category: Main Page templates]]
</noinclude>
8b305f43f0ae0e95da2c386a3c7c89394c16b57c
Template:Featurebox/doc
10
58
169
2020-05-26T22:59:05Z
Jaswacker
30585766
Created page with "{{Featurebox}} <pre>{{Featurebox |title |content= Box contents (can also be the second term, but "content=" will avoid many common template glitches.) |color=green - String of..."
wikitext
text/x-wiki
{{Featurebox}}
<pre>{{Featurebox
|title
|content= Box contents (can also be the second term, but "content=" will avoid many common template glitches.)
|color=green - String of #FFFFFF (Optional, gray by default)
|id= id assinged to the unit (optional)
|view= name of page to "view this entry" (optional)
|table=true - Behave like a TABLE instead of a DIV
}}</pre>
{{Featurebox|title|content|color=green}}
<noinclude>[[Category:Main Page templates]]</noinclude>
7b8763ba4457706fee287857447ebebf153d6f6f
Category:Main Page templates
14
59
170
2020-05-26T22:59:31Z
Jaswacker
30585766
Created blank page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Main Page/series
0
60
171
2020-05-26T23:04:11Z
Jaswacker
30585766
Created page with "<div align="center"> {|cellpadding="5" cellspacing="0" width="100%" |colspan="2" style="border-bottom:1px solid #aaa" align="center" valign="top"| File:originalserieslogo.pn..."
wikitext
text/x-wiki
<div align="center">
{|cellpadding="5" cellspacing="0" width="100%"
|colspan="2" style="border-bottom:1px solid #aaa" align="center" valign="top"|
[[File:originalserieslogo.png|250px|link=Ben 10 (2005)]]<br>
'''''[[Ben 10 (2005)]]'''''
|-
|style="border-bottom:1px solid #aaa;" align="center" valign="top" width="50%"|
[[File:alienforcelogo.png|200px|link=Ben 10: Alien Force]]<br>
'''''[[Ben 10: Alien Force]]'''''
|style="border-bottom:1px solid #aaa; border-left:1px solid #aaa" align="center" valign="top" width="50%"|
[[File:ultimatealienlogo.png|100px|link=Ben 10: Ultimate Alien]]<br>
'''''[[Ben 10: Ultimate Alien]]'''''<br>
|-
|style="border-bottom:1px solid #aaa;" align="center" valign="top" width="50%"|
[[File:omniverselogo.png|200px|link=Ben 10: Omniverse]]<br>
'''''[[Ben 10: Omniverse]]'''''
|style="border-bottom:1px solid #aaa; border-left:1px solid #aaa" align="center" valign="top" width="50%"|
[[File:rebootlogo.png|100px|link=Ben 10 (Reboot)]]<br>
'''''[[Ben 10 (2016)]]'''''<br>
dc3a886fde2f77a4a2673ff8c4903d3a34af11a4
172
171
2020-05-26T23:05:02Z
Jaswacker
30585766
wikitext
text/x-wiki
<div align="center">
{|cellpadding="5" cellspacing="0" width="100%"
|colspan="2" style="border-bottom:1px solid #aaa" align="center" valign="top"|
[[File:originalserieslogo.png|200px|link=Ben 10 (2005)]]<br>
'''''[[Ben 10 (2005)]]'''''
|-
|style="border-bottom:1px solid #aaa;" align="center" valign="top" width="50%"|
[[File:alienforcelogo.png|200px|link=Ben 10: Alien Force]]<br>
'''''[[Ben 10: Alien Force]]'''''
|style="border-bottom:1px solid #aaa; border-left:1px solid #aaa" align="center" valign="top" width="50%"|
[[File:ultimatealienlogo.png|200px|link=Ben 10: Ultimate Alien]]<br>
'''''[[Ben 10: Ultimate Alien]]'''''<br>
|-
|style="border-bottom:1px solid #aaa;" align="center" valign="top" width="50%"|
[[File:omniverselogo.png|200px|link=Ben 10: Omniverse]]<br>
'''''[[Ben 10: Omniverse]]'''''
|style="border-bottom:1px solid #aaa; border-left:1px solid #aaa" align="center" valign="top" width="50%"|
[[File:rebootlogo.png|200px|link=Ben 10 (Reboot)]]<br>
'''''[[Ben 10 (2016)]]'''''<br>
43736fa9b36b1d9aee20cbdf65d7883cc6cb7889
187
172
2020-05-26T23:30:04Z
Jaswacker
30585766
wikitext
text/x-wiki
<div align="center">
{|cellpadding="5" cellspacing="0" width="100%"
|colspan="2" style="border-bottom:1px solid #aaa" align="center" valign="top"|
[[File:originalserieslogo.png|100px|link=Ben 10 (2005)]]<br>
'''''[[Ben 10 (2005)]]'''''
|-
|style="border-bottom:1px solid #aaa;" align="center" valign="top" width="50%"|
[[File:alienforcelogo.png|100px|link=Ben 10: Alien Force]]<br>
'''''[[Ben 10: Alien Force]]'''''
|style="border-bottom:1px solid #aaa; border-left:1px solid #aaa" align="center" valign="top" width="50%"|
[[File:ultimatealienlogo.png|100px|link=Ben 10: Ultimate Alien]]<br>
'''''[[Ben 10: Ultimate Alien]]'''''<br>
|-
|style="border-bottom:1px solid #aaa;" align="center" valign="top" width="50%"|
[[File:omniverselogo.png|100px|link=Ben 10: Omniverse]]<br>
'''''[[Ben 10: Omniverse]]'''''
|style="border-bottom:1px solid #aaa; border-left:1px solid #aaa" align="center" valign="top" width="50%"|
[[File:rebootlogo.png|100px|link=Ben 10 (Reboot)]]<br>
'''''[[Ben 10 (2016)]]'''''<br>
d676ecb4de554c1bc474e3a7c197aac23443c539
189
187
2020-05-26T23:42:40Z
Jaswacker
30585766
wikitext
text/x-wiki
<div align="center">
{|cellpadding="5" cellspacing="0" width="100%"
| style="border-bottom:1px solid #ffffff” align="center" valign=“50%”|
<span id="esmeral"></span>
<div class="mainleft" style="text-align: center; vertical-align: top">
{{:Main Page/logo}}
</div>
<div id="mpexternaliconssocmed">
<imagemap>
File:discord pakmar.png|350px
rect 9 65 53 110 [https://discord.com|Invite currently unavailable]
rect 121 0 207 114 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap></div></div>
|-
|style="border-bottom:1px solid #ffffff;” align="center" valign="top" width="50%"|
</div>
<div style="clear:both"></div>
{{Featurebox
|The Franchise
|color=#999
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
|colspan="2" style="border-bottom:1px solid #ffffff; border-left:1px solid #aaa" align="center" valign="top" width=“bottom”|
</div><div class="mainright">
<div style="clear:both"></div>
{{Featurebox
|Fundamentals
|color=#039
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
e2989e066e7088d181c7365dcfc69251ef6cdc8b
191
189
2020-05-26T23:50:43Z
Jaswacker
30585766
Undo revision 189 by [[Special:Contributions/Jaswacker|Jaswacker]] ([[User talk:Jaswacker|talk]])
wikitext
text/x-wiki
<div align="center">
{|cellpadding="5" cellspacing="0" width="100%"
|colspan="2" style="border-bottom:1px solid #aaa" align="center" valign="top"|
[[File:originalserieslogo.png|100px|link=Ben 10 (2005)]]<br>
'''''[[Ben 10 (2005)]]'''''
|-
|style="border-bottom:1px solid #aaa;" align="center" valign="top" width="50%"|
[[File:alienforcelogo.png|100px|link=Ben 10: Alien Force]]<br>
'''''[[Ben 10: Alien Force]]'''''
|style="border-bottom:1px solid #aaa; border-left:1px solid #aaa" align="center" valign="top" width="50%"|
[[File:ultimatealienlogo.png|100px|link=Ben 10: Ultimate Alien]]<br>
'''''[[Ben 10: Ultimate Alien]]'''''<br>
|-
|style="border-bottom:1px solid #aaa;" align="center" valign="top" width="50%"|
[[File:omniverselogo.png|100px|link=Ben 10: Omniverse]]<br>
'''''[[Ben 10: Omniverse]]'''''
|style="border-bottom:1px solid #aaa; border-left:1px solid #aaa" align="center" valign="top" width="50%"|
[[File:rebootlogo.png|100px|link=Ben 10 (Reboot)]]<br>
'''''[[Ben 10 (2016)]]'''''<br>
d676ecb4de554c1bc474e3a7c197aac23443c539
199
191
2020-05-27T00:17:33Z
Jaswacker
30585766
wikitext
text/x-wiki
<div align="center">
{|cellpadding="5" cellspacing="0" width="100%"
|colspan="2" style="border-bottom:1px solid #ffffff" align="center" valign="top"|
[[File:originalserieslogo.png|100px|link=Ben 10 (2005)]]<br>
'''''[[Ben 10 (2005)]]'''''
|-
|style="border-bottom:1px solid #ffffff;" align="center" valign="top" width="50%"|
[[File:alienforcelogo.png|100px|link=Ben 10: Alien Force]]<br>
'''''[[Ben 10: Alien Force]]'''''
|style="border-bottom:1px solid #ffffff; border-left:1px solid #ffffff" align="center" valign="top" width="50%"|
[[File:ultimatealienlogo.png|100px|link=Ben 10: Ultimate Alien]]<br>
'''''[[Ben 10: Ultimate Alien]]'''''<br>
|-
|style="border-bottom:1px solid #ffffff;" align="center" valign="top" width="50%"|
[[File:omniverselogo.png|100px|link=Ben 10: Omniverse]]<br>
'''''[[Ben 10: Omniverse]]'''''
|style="border-bottom:1px solid #ffffff; border-left:1px solid #ffffff" align="center" valign="top" width="50%"|
[[File:rebootlogo.png|100px|link=Ben 10 (Reboot)]]<br>
'''''[[Ben 10 (2016)]]'''''<br>
b0acbf1cbdaf7426951ffc50a61166fce5d54a37
200
199
2020-05-27T00:20:07Z
Jaswacker
30585766
wikitext
text/x-wiki
<div align="center">
{|cellpadding="5" cellspacing="0" width="100%"
|colspan="2" style="border-bottom:1px solid #ffffff" align="center" valign="top"|
[[File:originalserieslogo.png|100px|link=Ben 10 (2005)]]<br>
'''''[[Ben 10 (2005)]]'''''
|-
|style="border-bottom:1px solid #ffffff;" align="center" valign="top" width="50%"|
[[File:alienforcelogo.png|100px|link=Ben 10: Alien Force]]<br>
'''''[[Ben 10: Alien Force]]'''''
|style="border-bottom:1px solid #ffffff; border-left:1px solid #ffffff" align="center" valign="top" width="50%"|
[[File:ultimatealienlogo.png|100px|link=Ben 10: Ultimate Alien]]<br>
'''''[[Ben 10: Ultimate Alien]]'''''<br>
|-
|style="border-bottom:1px solid #ffffff;" align="center" valign="top" width="50%"|
[[File:omniverselogo.png|100px|link=Ben 10: Omniverse]]<br>
'''''[[Ben 10: Omniverse]]'''''
|style="border-bottom:1px solid #ffffff; border-left:1px solid #ffffff" align="center" valign="top" width="50%"|
[[File:rebootlogo.png|100px|link=Ben 10 (Reboot)]]<br>
'''''[[Ben 10 (2016)]]'''''<br>
|}
f292e70513c3d7519611de5cc23c764dd2b53efc
207
200
2020-05-27T00:55:10Z
Jaswacker
30585766
wikitext
text/x-wiki
<div align="center">
{|cellpadding="5" cellspacing="0" width="100%"
|colspan="2" style="border-bottom:1px solid #ffffff" align="center" valign="top"|
[[File:originalserieslogo.png|100px|link=Ben 10 (2005)]]<br>
'''''[[Ben 10 (2005)]]'''''</div>
|-
|style="border-bottom:1px solid #ffffff;" align="center" valign="top" width="50%"|
[[File:alienforcelogo.png|100px|link=Ben 10: Alien Force]]<br>
'''''[[Ben 10: Alien Force]]'''''
|style="border-bottom:1px solid #ffffff; border-left:1px solid #ffffff" align="center" valign="top" width="50%"|
[[File:ultimatealienlogo.png|100px|link=Ben 10: Ultimate Alien]]<br>
'''''[[Ben 10: Ultimate Alien]]'''''<br>
|-
|style="border-bottom:1px solid #ffffff;" align="center" valign="top" width="50%"|
[[File:omniverselogo.png|100px|link=Ben 10: Omniverse]]<br>
'''''[[Ben 10: Omniverse]]'''''
|style="border-bottom:1px solid #ffffff; border-left:1px solid #ffffff" align="center" valign="top" width="50%"|
[[File:rebootlogo.png|100px|link=Ben 10 (Reboot)]]<br>
'''''[[Ben 10 (2016)]]'''''<br>
|}
fdf6aa48e76b8aa68f98323912ea211e190dd46f
208
207
2020-05-27T00:57:35Z
Jaswacker
30585766
wikitext
text/x-wiki
<div align="center">
{|cellpadding="5" cellspacing="0" width="100%"
|colspan="2" style="border-bottom:1px solid #ffffff" align="center" valign="top"|
[[File:originalserieslogo.png|100px|link=Ben 10 (2005)]]<br>
'''''[[Ben 10 (2005)]]'''''
|-
|style="border-bottom:1px solid #ffffff;" align="center" valign="top" width="50%"|
[[File:alienforcelogo.png|100px|link=Ben 10: Alien Force]]<br>
'''''[[Ben 10: Alien Force]]'''''
|style="border-bottom:1px solid #ffffff; border-left:1px solid #ffffff" align="center" valign="top" width="50%"|
[[File:ultimatealienlogo.png|100px|link=Ben 10: Ultimate Alien]]<br>
'''''[[Ben 10: Ultimate Alien]]'''''<br>
|-
|style="border-bottom:1px solid #ffffff;" align="center" valign="top" width="50%"|
[[File:omniverselogo.png|100px|link=Ben 10: Omniverse]]<br>
'''''[[Ben 10: Omniverse]]'''''
|style="border-bottom:1px solid #ffffff; border-left:1px solid #ffffff" align="center" valign="top" width="50%"|
[[File:rebootlogo.png|100px|link=Ben 10 (Reboot)]]<br>
'''''[[Ben 10 (2016)]]'''''<br>
|}</div>
718be01c05e2f1250faf287d614734722aa88081
Main Page/fundamentals
0
61
173
2020-05-26T23:08:07Z
Jaswacker
30585766
Created page with "<center>'''New to ''Ben 10''? Start here!'''</center> {|cellpadding="0" cellspacing="0" style="margin:auto;" |- |style="padding:.5em 1em 0 1em;"|'''[[Toy]]s''' |style="padding..."
wikitext
text/x-wiki
<center>'''New to ''Ben 10''? Start here!'''</center>
{|cellpadding="0" cellspacing="0" style="margin:auto;"
|-
|style="padding:.5em 1em 0 1em;"|'''[[Toy]]s'''
|style="padding:.5em 1em 0 1em;"|'''[[Ben 10|Cartoons]]'''
|-
|style="padding:0 1em;"|'''[[Category:Movies|Movies]]'''
|style="padding:0 1em;"|'''[[Continuity|Continuities]]'''
|-
|style="padding:0 1em;"|'''[[Comics]]'''
|style="padding:0 1em;"|'''[[Transformations]]'''
|-
|style="padding:0 1em;"|'''[[Category:Heroes|Characters]]'''
|style="padding:0 1em;"|'''[[Category:Villains|Villains]]'''
|-
|style="padding:0 1em .5em 1em;"|'''[[Video Games]]'''
|style="padding:0 1em .5em 1em;"|'''[[Fandom]]'''
|}<noinclude>
[[Category: Main Page templates]]
</noinclude>
444d4a8eeb91ab752c2283ddc8699ea7fe6b0b48
174
173
2020-05-26T23:10:49Z
Jaswacker
30585766
wikitext
text/x-wiki
<center>'''New to ''Ben 10''? Start here!'''</center>
{|cellpadding="0" cellspacing="0" style="margin:auto;"
|-
|style="padding:.5em 1em 0 1em;"|'''[[Toys]]'''
|style="padding:.5em 1em 0 1em;"|'''[[Ben 10|Cartoons]]'''
|-
|style="padding:0 1em;"|'''[[Category:Movies|Movies]]'''
|style="padding:0 1em;"|'''[[Continuity|Continuities]]'''
|-
|style="padding:0 1em;"|'''[[Comics]]'''
|style="padding:0 1em;"|'''[[Transformations]]'''
|-
|style="padding:0 1em;"|'''[[Category:Heroes|Characters]]'''
|style="padding:0 1em;"|'''[[Category:Villains|Villains]]'''
|-
|style="padding:0 1em .5em 1em;"|'''[[Video Games]]'''
|style="padding:0 1em .5em 1em;"|'''[[Fandom]]'''
|}<noinclude>
[[Category: Main Page templates]]
</noinclude>
bd07c4df5a64199338ac51a0a5588e61bfc88828
175
174
2020-05-26T23:11:51Z
Jaswacker
30585766
wikitext
text/x-wiki
<center>'''New to ''Ben 10''? Start here!'''</center>
{|cellpadding="0" cellspacing="0" style="margin:auto;"
|-
|style="padding:.5em 1em 0 1em;"|'''[[Toys]]'''
|style="padding:.5em 1em 0 1em;"|'''[[Ben 10|Cartoons]]'''
|-
|style="padding:0 1em;"|'''[[Movies]]'''
|style="padding:0 1em;"|'''[[Continuity|Continuities]]'''
|-
|style="padding:0 1em;"|'''[[Comics]]'''
|style="padding:0 1em;"|'''[[Transformations]]'''
|-
|style="padding:0 1em;"|'''[[Heroes|Characters]]'''
|style="padding:0 1em;"|'''[[Villains]]'''
|-
|style="padding:0 1em .5em 1em;"|'''[[Video Games]]'''
|style="padding:0 1em .5em 1em;"|'''[[Fandom]]'''
|}<noinclude>
[[Category: Main Page templates]]
</noinclude>
30b1864a73e49e2b2867606b31ec26a4a6d90323
MediaWiki:Common.css
8
3
176
91
2020-05-26T23:14:57Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
7094aecfaea7a413eedc2c0f1b4922f2954b8a42
File:Discord pakmar.png
6
62
177
2020-05-26T23:17:07Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Alienforcelogo.png
6
63
181
2020-05-26T23:21:51Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Omniverselogo.png
6
64
182
2020-05-26T23:22:11Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Originalserieslogo.png
6
65
183
2020-05-26T23:22:30Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Rebootlogo.png
6
66
184
2020-05-26T23:23:06Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Ultimatealienlogo.png
6
67
185
2020-05-26T23:23:27Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Main Page/poll
0
68
197
2020-05-27T00:15:43Z
Jaswacker
30585766
Created page with "<poll> This is just a test question Yes No Maybe </poll>"
wikitext
text/x-wiki
<poll>
This is just a test question
Yes
No
Maybe
</poll>
145bc461c0b4d9d0b23517f9917ee5789a9ee91c
File:Heatblast logo.png
6
69
203
2020-05-27T00:53:53Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Fourarms logo.png
6
70
204
2020-05-27T00:54:13Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Diamondhead logo.png
6
71
205
2020-05-27T00:54:29Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Xlr8 logo.png
6
72
206
2020-05-27T00:54:47Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Main Page
0
1
209
202
2020-05-27T00:58:22Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<span id="esmeral"></span>
<div class="mainleft" style="text-align: center; vertical-align: top">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord pakmar.png|250px
rect 9 65 53 110 [https://discord.com|Invite currently unavailable]
rect 121 0 207 114 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap></div>
</div><div class="mainright">
<div style="clear:both"></div>
{{Featurebox
|The Franchise
|color=#999
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:both"></div>
{{Featurebox
|Fundamentals
|color=#039
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div><div class="mainleft">
{{Featurebox
|Polls
|color=#c93
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
56a40afa85d168006921a724d7ebcc9192633f00
210
209
2020-05-27T00:59:20Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord pakmar.png|250px
rect 9 65 53 110 [https://discord.com|Invite currently unavailable]
rect 121 0 207 114 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 50%">
{{Featurebox
|The Franchise
|color=#999
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: left; width: 50%">
{{Featurebox
|Fundamentals
|color=#039
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: right; width: 50%">
{{Featurebox
|Polls
|color=#c93
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
7a2e71c646b011c98dfb452c5c5c21b4880151fa
212
210
2020-05-27T01:06:58Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord pakmar.png|250px
rect 2200 1000 4600 2600 [https://discord.com|Invite currently unavailable]
rect 2200 1500 250 3800 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 50%">
{{Featurebox
|The Franchise
|color=#999
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: left; width: 50%">
{{Featurebox
|Fundamentals
|color=#039
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: right; width: 50%">
{{Featurebox
|Polls
|color=#c93
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
bda9fdac872f8ef8c169e20819eeb891bcf2abe6
213
212
2020-05-27T01:08:05Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 2200 1000 4600 2600 [https://discord.com|Invite currently unavailable]
rect 2200 1500 250 3800 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 50%">
{{Featurebox
|The Franchise
|color=#999
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: left; width: 50%">
{{Featurebox
|Fundamentals
|color=#039
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: right; width: 50%">
{{Featurebox
|Polls
|color=#c93
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
3b579e0098e9f8d8066f69a334b8e4a3f70f864f
217
213
2020-05-27T01:23:06Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 2.200 1.000 4.600 2.600 [https://discord.com|Invite currently unavailable]
rect 2.200 1.500 .250 3.800 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 50%">
{{Featurebox
|The Franchise
|color=#999
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: left; width: 50%">
{{Featurebox
|Fundamentals
|color=#039
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: right; width: 50%">
{{Featurebox
|Polls
|color=#c93
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
ed09f047a55e3ea0a32ff14dcf0283508f4c6b8a
227
217
2020-05-27T02:17:04Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 15 105 165 280 [https://discord.com|Invite currently unavailable]
rect 160 65 325 190 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 50%">
{{Featurebox
|The Franchise
|color=#999
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: left; width: 50%">
{{Featurebox
|Fundamentals
|color=#039
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: right; width: 50%">
{{Featurebox
|Polls
|color=#c93
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
1bd9799872444cf6224e64d1e5b7ea059194af88
231
227
2020-05-27T04:16:18Z
2604:6000:130D:4651:4944:1841:242:6867
0
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [https://discord.com|Invite currently unavailable]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 50%">
{{Featurebox
|The Franchise
|color=#999
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: left; width: 50%">
{{Featurebox
|Fundamentals
|color=#039
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: right; width: 50%">
{{Featurebox
|Polls
|color=#c93
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
bd6dd93a0f3a7277f8f514d80ab100e106d66ae6
232
231
2020-05-27T04:19:24Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 50%">
{{Featurebox
|The Franchise
|color=#999
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: left; width: 50%">
{{Featurebox
|Fundamentals
|color=#039
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: right; width: 50%">
{{Featurebox
|Polls
|color=#c93
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
b12482a573ee623e57b56d5014c568c4a0f44ed4
238
232
2020-05-27T06:11:23Z
2604:6000:130D:4651:4944:1841:242:6867
0
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 50%">
{{Featurebox
|The Franchise
|color=#999
|width=.2em
|style=solid
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: left; width: 50%">
{{Featurebox
|Fundamentals
|color=#039
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: right; width: 50%">
{{Featurebox
|Polls
|color=#c93
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
22b6c2e1c27240a794289812f4e2c0009203a3ec
239
238
2020-05-27T06:19:40Z
2604:6000:130D:4651:4944:1841:242:6867
0
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 50%; border-width: .2em; border-style: solid">
{{Featurebox
|The Franchise
|color=#999
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: left; width: 50%">
{{Featurebox
|Fundamentals
|color=#039
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: right; width: 50%">
{{Featurebox
|Polls
|color=#c93
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
0d629725080b2ca8277f6f18b237b7838d1906e6
240
239
2020-05-27T06:26:11Z
2604:6000:130D:4651:4944:1841:242:6867
0
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 50%; border-width: .2em; border-style: solid">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: left; width: 50% ; border-width: .2em; border-style: solid">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: right; width: 50% ; border-width: .2em; border-style: solid">
{{Featurebox
|Polls
|color=#c02b70c
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
4a12f5adf32c883f8848d1e0c9479b228d2917ae
241
240
2020-05-27T06:28:09Z
2604:6000:130D:4651:4944:1841:242:6867
0
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 50%; border-width: .2em; border-style: solid ; border-color: #02b70c">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: left; width: 50% ; border-width: .2em; border-style: solid ; border-color: #02b70c">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: right; width: 50% ; border-width: .2em; border-style: solid; border-color: #02b70c">
{{Featurebox
|Polls
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
161ae37ac1c09009d6adcd8e77d866e07a3fa28c
242
241
2020-05-27T06:32:00Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 45%; border-width: .2em; border-style: solid ; border-color: #02b70c">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: left; width: 45%; border-width: .2em; border-style: solid ; border-color: #02b70c">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: right; width: 45%; border-width: .2em; border-style: solid; border-color: #02b70c">
{{Featurebox
|Polls
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
57ae7157d0adfafec34863153e5326cdfa6d3a01
243
242
2020-05-27T06:32:59Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 48%; border-width: .2em; border-style: solid ; border-color: #02b70c">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: left; width: 48%; border-width: .2em; border-style: solid ; border-color: #02b70c">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: right; width: 48%; border-width: .2em; border-style: solid; border-color: #02b70c">
{{Featurebox
|Polls
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
01789161844186ca941d5051248cb372184bc7e1
244
243
2020-05-27T06:33:40Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 49%; border-width: .2em; border-style: solid ; border-color: #02b70c">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: left; width: 49%; border-width: .2em; border-style: solid ; border-color: #02b70c">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: right; width: 49%; border-width: .2em; border-style: solid; border-color: #02b70c">
{{Featurebox
|Polls
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
26dad71461d752777db1fefbd7148d1d1abc4bed
247
244
2020-05-27T06:43:27Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 49%; border-width: .2em; border-style: solid ; border-color: #02b70c; margin: 0">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: left; width: 49%; border-width: .2em; border-style: solid ; border-color: #02b70c; margin: 0">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: right; width: 49%; border-width: .2em; border-style: solid; border-color: #02b70c; margin: 0">
{{Featurebox
|Polls
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
dbad06eb88821b77e1640164efee6c74f5699548
248
247
2020-05-27T06:46:56Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 49%; border-width: thick; border-style: solid; border-color: #02b70c; margin: 0">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: left; width: 49%; border-width: .2em; border-style: solid ; border-color: #02b70c; margin: 0">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: right; width: 49%; border-width: .2em; border-style: solid; border-color: #02b70c; margin: 0">
{{Featurebox
|Polls
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
713dc243735fb6f534fd8d7b9a003b0081344291
249
248
2020-05-27T06:49:13Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 49%; border-width: thick; border-style: groove; border-color: #02b70c; margin: 0px 25px 25px">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: left; width: 49%; border-width: .2em; border-style: solid ; border-color: #02b70c; margin: 0">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: right; width: 49%; border-width: .2em; border-style: solid; border-color: #02b70c; margin: 0">
{{Featurebox
|Polls
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
57da707519649b0ec02735db47419e0303c560b0
250
249
2020-05-27T06:51:24Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 49%; border-width: thick; border-style: groove; border-color: #02b70c; margin: 0px 0px 15px; padding-top: 0px">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: left; width: 49%; border-width: .2em; border-style: solid ; border-color: #02b70c; margin: 0">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: right; width: 49%; border-width: .2em; border-style: solid; border-color: #02b70c; margin: 0">
{{Featurebox
|Polls
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
d798eecc4925f2a970e0e68a52bedab44d4e106e
251
250
2020-05-27T06:52:41Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 49%; border-width: thick; border-style: groove; border-color: #02b70c; margin: 0px 0px 15px; padding: 0px">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: left; width: 49%; border-width: .2em; border-style: solid ; border-color: #02b70c; margin: 0">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: right; width: 49%; border-width: .2em; border-style: solid; border-color: #02b70c; margin: 0">
{{Featurebox
|Polls
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
84a97fbcb33c286af5877f15728b9e1ab1065811
252
251
2020-05-27T06:54:37Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 48.5%; border-width: thick; border-style: groove; border-color: #02b70c; margin: 0px 0px 15px; padding: 0px">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: left; width: 49%; border-width: .2em; border-style: solid ; border-color: #02b70c; margin: 0">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: right; width: 49%; border-width: .2em; border-style: solid; border-color: #02b70c; margin: 0">
{{Featurebox
|Polls
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
b16f7cd4ec98fa0d56654493c2002734efb0ce02
253
252
2020-05-27T06:55:54Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 48.7%; border-width: thick; border-style: groove; border-color: #02b70c; margin: 0px 0px 15px; padding: 0px">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: left; width: 49%; border-width: .2em; border-style: solid ; border-color: #02b70c; margin: 0">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: right; width: 49%; border-width: .2em; border-style: solid; border-color: #02b70c; margin: 0">
{{Featurebox
|Polls
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
0b14866d758b9a1e9c1b8710f93f43eba2adce98
254
253
2020-05-27T06:56:22Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 48.9%; border-width: thick; border-style: groove; border-color: #02b70c; margin: 0px 0px 15px; padding: 0px">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: left; width: 49%; border-width: .2em; border-style: solid ; border-color: #02b70c; margin: 0">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: right; width: 49%; border-width: .2em; border-style: solid; border-color: #02b70c; margin: 0">
{{Featurebox
|Polls
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
abe36f7cdeab426fe2cbada851ab3c88c7ff7d30
255
254
2020-05-27T06:56:40Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 48.8%; border-width: thick; border-style: groove; border-color: #02b70c; margin: 0px 0px 15px; padding: 0px">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: left; width: 49%; border-width: .2em; border-style: solid ; border-color: #02b70c; margin: 0">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: right; width: 49%; border-width: .2em; border-style: solid; border-color: #02b70c; margin: 0">
{{Featurebox
|Polls
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
f8ced2f32c97b0bf00e88920c129cecb11d6bc5f
256
255
2020-05-27T14:46:29Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 48.8%; border-width: thick; border-style: groove; border-color: #02b70c; margin: 0px 0px 15px; padding: 0px;">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: left; width: 49%; border-width: .2em; border-style: solid ; border-color: #02b70c; margin: 0">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: right; width: 49%; border-width: .2em; border-style: solid; border-color: #02b70c; margin: 0">
{{Featurebox
|Polls
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
2a670a240898374d74130d99a08501acfc93f1f2
257
256
2020-05-27T14:49:09Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 48.8%; border-width: thick; border-style: groove; padding: 0px; border-color: #02b70c; margin: 0px 0px 15px">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: left; width: 49%; border-width: .2em; border-style: solid ; border-color: #02b70c; margin: 0">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: right; width: 49%; border-width: .2em; border-style: solid; border-color: #02b70c; margin: 0">
{{Featurebox
|Polls
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
409902ec8d8677c16439eff4a0c8e949ae03d181
258
257
2020-05-27T14:50:43Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 48.8%; border-width: thick; border-style: groove; border-color: #02b70c; margin: 0px 0px 15px">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: right; width: 48.8%; border-width: thick; border-style: groove; border-color: #02b70c; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: right; width: 48.8%; border-width: thick; border-style: groove; border-color: #02b70c; margin: 0px 0px 15px">
{{Featurebox
|Polls
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
476ca5fe0a878644cede5e73839a5a72b5aa66ad
Main Page/logo
0
56
211
195
2020-05-27T01:02:07Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><choose>
<option><imagemap>File:heatblast_logo.png|375px|frameless
default [[Heatblast]]
desc none</imagemap></option>
<option><imagemap>File:wildmutt_logo.png|375px|frameless
default [[Wildmutt]]
desc none</imagemap></option>
<option><imagemap>File:diamondhead_logo.png|375px|frameless
default [[Diamondhead]]
desc none</imagemap></option>
<option><imagemap>File:xlr8_logo.png|375px|frameless
default [[XLR8]]
desc none</imagemap></option>
<option><imagemap>File:greymatter_logo.png|375px|frameless
default [[Grey Matter]]
desc none</imagemap></option>
<option><imagemap>File:fourarms_logo.png|375px|frameless
default [[Four Arms]]
desc none</imagemap></option>
<option><imagemap>File:stinkfly_logo.png|375px|frameless
default [[Stinkfly]]
desc none</imagemap></option>
<option><imagemap>File:ripjaws_logo.png|375px|frameless
default [[Ripjaws]]
desc none</imagemap></option>
<option><imagemap>File:upgrade_logo.png|375px|frameless
default [[Upgrade]]
desc none</imagemap></option>
<option><imagemap>File:ghostfreak_logo.png|375px|frameless
default [[Ghostfreak]]
desc none</imagemap></option>
</choose></includeonly>
<noinclude>Current logos (please update if you add to or remove from the list in the code):
<gallery>
File:heatblast_logo.png
File:wildmutt_logo.png
File:diamondhead_logo.png
File:xlr8_logo.png
File:greymatter_logo.png
File:fourarms_logo.png
File:stinkfly_logo.png
File:ripjaws_logo.png
File:upgrade_logo.png
File:ghostfreak_logo.png
</gallery>[[Category:Main Page templates]]</noinclude>
6a43de21a955b57169bfdb66639201da182dd1f1
233
211
2020-05-27T04:29:44Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><choose>
<option><imagemap>File:heatblast_logo.png|400px|frameless
default [[Heatblast]]
desc none</imagemap></option>
<option><imagemap>File:wildmutt_logo.png|400px|frameless
default [[Wildmutt]]
desc none</imagemap></option>
<option><imagemap>File:diamondhead_logo.png|400px|frameless
default [[Diamondhead]]
desc none</imagemap></option>
<option><imagemap>File:xlr8_logo.png|400px|frameless
default [[XLR8]]
desc none</imagemap></option>
<option><imagemap>File:greymatter_logo.png|435px|frameless
default [[Grey Matter]]
desc none</imagemap></option>
<option><imagemap>File:fourarms_logo.png|400px|frameless
default [[Four Arms]]
desc none</imagemap></option>
<option><imagemap>File:stinkfly_logo.png|400px|frameless
default [[Stinkfly]]
desc none</imagemap></option>
<option><imagemap>File:ripjaws_logo.png|400px|frameless
default [[Ripjaws]]
desc none</imagemap></option>
<option><imagemap>File:upgrade_logo.png|400px|frameless
default [[Upgrade]]
desc none</imagemap></option>
<option><imagemap>File:ghostfreak_logo.png|400px|frameless
default [[Ghostfreak]]
desc none</imagemap></option>
</choose></includeonly>
<noinclude>Current logos (please update if you add to or remove from the list in the code):
<gallery>
File:heatblast_logo.png
File:wildmutt_logo.png
File:diamondhead_logo.png
File:xlr8_logo.png
File:greymatter_logo.png
File:fourarms_logo.png
File:stinkfly_logo.png
File:ripjaws_logo.png
File:upgrade_logo.png
File:ghostfreak_logo.png
</gallery>[[Category:Main Page templates]]</noinclude>
94a650bf354b31facae34431b47d07fc76f16dc5
File:Discord pakmar2.png
6
73
214
2020-05-27T01:08:21Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Upgrade logo.png
6
74
215
2020-05-27T01:17:54Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Wildmutt logo.png
6
75
216
2020-05-27T01:22:00Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Ripjaws logo.png
6
76
218
2020-05-27T01:24:41Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Greymatter logo.png
6
77
219
2020-05-27T01:28:43Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Stinkfly logo.png
6
78
220
2020-05-27T01:34:48Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Ghostfreak logo.png
6
79
221
2020-05-27T01:37:45Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Alienforcelogo.png
6
63
222
181
2020-05-27T02:14:21Z
Carth
30634784
Carth uploaded a new version of [[File:Alienforcelogo.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
229
222
2020-05-27T02:18:11Z
Carth
30634784
Carth uploaded a new version of [[File:Alienforcelogo.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Omniverselogo.png
6
64
223
182
2020-05-27T02:14:45Z
Carth
30634784
Carth uploaded a new version of [[File:Omniverselogo.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Originalserieslogo.png
6
65
224
183
2020-05-27T02:15:49Z
Carth
30634784
Carth uploaded a new version of [[File:Originalserieslogo.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Rebootlogo.png
6
66
225
184
2020-05-27T02:16:07Z
Carth
30634784
Carth uploaded a new version of [[File:Rebootlogo.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Ultimatealienlogo.png
6
67
226
185
2020-05-27T02:16:34Z
Carth
30634784
Carth uploaded a new version of [[File:Ultimatealienlogo.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
228
226
2020-05-27T02:17:16Z
Carth
30634784
Carth uploaded a new version of [[File:Ultimatealienlogo.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Ben 10 (2005)
0
80
230
2020-05-27T02:55:31Z
Carth
30634784
Created page with "'''Ben 10''' ''(also known as '''Ben 10 Classic''')'' is an American animated television series created by Man of Action (a group consisting of Joe Casey, Joe Kelly, Duncan Ro..."
wikitext
text/x-wiki
'''Ben 10''' ''(also known as '''Ben 10 Classic''')'' is an American animated television series created by Man of Action (a group consisting of Joe Casey, Joe Kelly, Duncan Rouleau, and Steven T. Seagle).
04196b43ca9c3468ed73e9bba812c5e327630d80
Main Page/fundamentals
0
61
234
175
2020-05-27T04:33:33Z
Jaswacker
30585766
wikitext
text/x-wiki
<center>'''New to ''Ben 10''? Start here!'''</center>
{|cellpadding="0" cellspacing="0" style="margin:auto;"
|-
|style="padding:.5em 1em 0 1em;"|'''[[Ben 10|Cartoons]]'''
|style="padding:.5em 1em 0 1em;"|'''[[Continuity]]'''
|-
|style="padding:0 1em;"|'''[[Movies]]'''
|style="padding:0 1em;"|'''[[Toys]]'''
|-
|style="padding:0 1em;"|'''[[Heroes|Characters]]'''
|style="padding:0 1em;"|'''[[Video Games]]'''
|-
|style="padding:0 1em;"|'''[[Transformations]]'''
|style="padding:0 1em;"|'''[[Comics]]'''
|-
|style="padding:0 1em .5em 1em;"|'''[[Villains]]'''
|style="padding:0 1em .5em 1em;"|'''[[Fandom]]'''
|}<noinclude>
[[Category: Main Page templates]]
</noinclude>
d6df0bc626f22f5914514566f35708b3f5333c14
246
234
2020-05-27T06:37:21Z
Jaswacker
30585766
wikitext
text/x-wiki
<center>'''New to ''Ben 10''? Start here!'''</center>
{|cellpadding="0" cellspacing="0" style="margin:auto;"
|-
|style="padding:.5em 1em 0 1em;"|'''[[Ben 10|Cartoons]]'''
|style="padding:.5em 1em 0 1em;"|'''[[Continuity]]'''
|-
|style="padding:0 1em;"|'''[[Movies]]'''
|style="padding:0 1em;"|'''[[Toys]]'''
|-
|style="padding:0 1em;"|'''[[Heroes|Characters]]'''
|style="padding:0 1em;"|'''[[Video Games]]'''
|-
|style="padding:0 1em;"|'''[[Transformations]]'''
|style="padding:0 1em;"|'''[[Comics]]'''
|-
|style="padding:0 1em .5em 1em;"|'''[[Villains]]'''
|style="padding:0 1em .5em 1em;"|'''[[Fandom]]'''
|}
<br></br>
<noinclude>
[[Category: Main Page templates]]
</noinclude>
51b3a05f9b340898af9a07280d0becc5882a43e7
MediaWiki:Sidebar
8
81
235
2020-05-27T05:00:22Z
Jaswacker
30585766
Created page with " * NAVIGATION ** mainpage|mainpage-description ++ Ben 10|The Show ++ Transformations|Transformations ++ [http://discord.com Join our Discord!] ** recentchanges-url|recentchang..."
wikitext
text/x-wiki
* NAVIGATION
** mainpage|mainpage-description
++ Ben 10|The Show
++ Transformations|Transformations
++ [http://discord.com Join our Discord!]
** recentchanges-url|recentchanges
** randompage-url|randompage
* SEARCH
* TOOLBOX
663a53eae0a98a2d410a722782be51722d26e24c
236
235
2020-05-27T05:01:14Z
Jaswacker
30585766
wikitext
text/x-wiki
* NAVIGATION
** mainpage|mainpage-description
** Ben 10|The Show
** Transformations|Transformations
** [http://discord.com Join our Discord!]
** recentchanges-url|recentchanges
** randompage-url|randompage
* SEARCH
* TOOLBOX
62029b243ad2b8320b3579ddc168de0fcffe3073
237
236
2020-05-27T05:02:07Z
Jaswacker
30585766
wikitext
text/x-wiki
* NAVIGATION
** mainpage|mainpage-description
** Ben 10|The Show
** Transformations|Transformations
** http://discord.com|Join our Discord!
** recentchanges-url|recentchanges
** randompage-url|randompage
* SEARCH
* TOOLBOX
68cd0955ed98dec96c1f7c400a65f91e3f2bb1df
Main Page/series
0
60
245
208
2020-05-27T06:36:12Z
Jaswacker
30585766
wikitext
text/x-wiki
<div align="center">
{|cellpadding="5" cellspacing="0" width="100%"
|colspan="2" style="border-bottom:1px solid #ffffff" align="center" valign="top"|
[[File:originalserieslogo.png|100px|link=Ben 10 (2005)]]<br>
'''''[[Ben 10 (2005)]]'''''
|-
|style="border-bottom:1px solid #ffffff;" align="center" valign="top" width="50%"|
[[File:alienforcelogo.png|100px|link=Ben 10: Alien Force]]<br>
'''''[[Ben 10: Alien Force]]'''''
|style="border-bottom:1px solid #ffffff; border-left:1px solid #ffffff" align="center" valign="top" width="50%"|
[[File:ultimatealienlogo.png|100px|link=Ben 10: Ultimate Alien]]<br>
'''''[[Ben 10: Ultimate Alien]]'''''<br>
|-
|style="border-bottom:1px solid #ffffff;" align="center" valign="top" width="50%"|
[[File:omniverselogo.png|100px|link=Ben 10: Omniverse]]<br>
'''''[[Ben 10: Omniverse]]'''''
|style="border-bottom:1px solid #ffffff; border-left:1px solid #ffffff" align="center" valign="top" width="50%"|
[[File:rebootlogo.png|100px|link=Ben 10 (Reboot)]]<br>
'''''[[Ben 10 (2016)]]'''''<br>
|}</div>
<br></br>
71d2ec8ed89d7e065641554400ae2ae437392882
Main Page
0
1
259
258
2020-05-27T14:54:14Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 48.7%; border-width: thick; border-style: groove; border-color: #02b70c; margin: 0px 0px 15px">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: right; width: 48.7%; border-width: thick; border-style: groove; border-color: #02b70c; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 48.7%; border-width: thick; border-style: groove; border-color: #02b70c; margin: 0px 0px 15px">
{{Featurebox
|Polls
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
cbab5b634e66d66168f133addbf0bb98738c396a
262
259
2020-05-27T15:02:43Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 48.7%; border-width: thick; border-style: groove; border-color: #02b70c; margin: 0px 0px 5px">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: right; width: 48.7%; border-width: thick; border-style: groove; border-color: #02b70c; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 48.7%; border-width: thick; border-style: groove; border-color: #02b70c; margin: 0px 0px 15px">
{{Featurebox
|Polls
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
36b3058b5c1d4161e9801f7a4a22c164545d33e9
265
262
2020-05-27T23:15:15Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 48.7%; margin: 0px 0px 5px">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: right; width: 48.7%; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 48.7%; margin: 0px 0px 15px">
{{Featurebox
|Polls
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
ab305733d369bd95b4e91e66c72bff0c6ee013a9
266
265
2020-05-27T23:15:37Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 50%; margin: 0px 0px 5px">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Polls
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
5aaf977a1baf7a6d20988435daad2951f65436d0
282
266
2020-05-28T01:18:03Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 50%; margin: 0px 0px 5px">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Polls
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Featured Article
|color=#02b70c
|id=featured
|content={{:Main_Page/featured}}
|view=Main_Page/featured
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Previous Poll Results
|color=#02b70c
|id=results
|content={{:Main_Page/results}}
|view=Main_Page/results
}}
</div>
06c93b5c8462f87a9f3c5665bf10dc131e0c288c
287
282
2020-05-28T01:32:54Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 50%; margin: 0px 0px 5px">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Polls
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Featured Article
|color=#02b70c
|id=featured
|content={{:Main_Page/featured}}<p style="text-align:right">[[:Category:Featured articles|More Featured Articles]]
|view=Main_Page/featured
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Previous Poll Results
|color=#02b70c
|id=results
|content={{:Main_Page/results}}
|view=Main_Page/results
}}
</div>
6921d10eb4c37b27b8b3872fb13b4cafe5c194ba
289
287
2020-05-28T01:36:01Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 50%; margin: 0px 0px 5px">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Polls
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Featured Article
|color=#02b70c
|id=featured
|content={{:Main_Page/featured}}<p style="text-align:right">[[:Category:Featured articles|More Featured Articles]]
|view=Main_Page/featured
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Previous Poll Results
|color=#02b70c
|id=results
|content={{:Main_Page/results}}
|view=Main_Page/results
}}
</div>
<div style="float: left; width: 100%; margin: 0px 0px 15px">
{{Featurebox
|Wiki Admins
|color=#02b70c
|id=admins
|content={{:Main_Page/admins}}
|view=Main_Page/admins
}}
</div>
21569381385e3a724548f57b2cbcee912de5908f
290
289
2020-05-28T01:37:42Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 50%; margin: 0px 0px 5px">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Featured Article
|color=#02b70c
|id=featured
|content={{:Main_Page/featured}}<p style="text-align:right">[[:Category:Featured articles|More Featured Articles]]
|view=Main_Page/featured
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Polls and Voting
|color=#02b70c
|id=poll
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Previous Poll Results
|color=#02b70c
|id=results
|content={{:Main_Page/results}}
|view=Main_Page/results
}}
</div>
<div style="float: left; width: 100%; margin: 0px 0px 15px">
{{Featurebox
|Wiki Admins
|color=#02b70c
|id=admins
|content={{:Main_Page/admins}}
|view=Main_Page/admins
}}
</div>
e74c52411fb16e7baccc78a5e94dad34d31dc5a5
Template:Featurebox
10
57
260
168
2020-05-27T15:01:38Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div div id="{{{id|}}}" class="featurebox" style="{{#if:{{{table|}}}|display:table;|}}border-color:{{{color|gray}}};"><p class="featurebox-heading" style="background-color:{{{color|gray}}};margin:0;">{{#if:{{{view|}}}|<span style="float:right;font-size:small;font-weight:500;">[[{{{view}}}|v]]</span>|}}{{{title|{{{1|Title}}}}}}</p>
{{{content|{{{2|Content}}}}}}
</div></includeonly><noinclude>{{doc}}
[[Category: Main Page templates]]
</noinclude>
46a6ff2b133cbb63e0161f3e26c640d0f38a42bc
261
260
2020-05-27T15:02:10Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div div id="{{{id|}}}" class="featurebox" style="{{#if:{{{table|}}}|display:table;|}}border-color:{{{color|gray}}};"><p class="featurebox-heading" style="background-color:{{{color|gray}}};margin:0;">{{#if:{{{view|}}}|<span style="float:right;font-size:small;font-weight:500;">[[{{{view}}}|v]]</span>|}}{{{title|{{{1|Title}}}}}}</p>
{{{content|{{{2|Content}}}}}}
</div></includeonly><noinclude>{{Featurebox/doc}}
[[Category: Main Page templates]]
</noinclude>
73344bf6e6b21df84229b96b1fcb85d68951bd05
279
261
2020-05-28T01:12:11Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div div id="{{{id|}}}" class="featurebox" style="{{#if:{{{table|}}}|display:table;|}}border-color:{{{color|gray}}};"><p class="featurebox-heading" style="background-color:{{{color|gray}}};margin:0;padding:0;">{{#if:{{{view|}}}|<span style="float:right;font-size:small;font-weight:500;">[[{{{view}}}|v]]</span>|}}{{{title|{{{1|Title}}}}}}</p>
{{{content|{{{2|Content}}}}}}
</div></includeonly><noinclude>{{Featurebox/doc}}
[[Category: Main Page templates]]
</noinclude>
f3448bde05a9cdaf1ef728787eaf0bb077e1bd89
Main Page/fundamentals
0
61
263
246
2020-05-27T15:31:30Z
Jaswacker
30585766
wikitext
text/x-wiki
<center>'''New to ''Ben 10''? Start here!'''</center>
{|cellpadding="0" cellspacing="0" style="margin:auto;"
|-
|style="padding:.5em 1em 0 1em;"|'''[[Ben 10|Cartoons]]'''
|style="padding:.5em 1em 0 1em;"|'''[[Continuity]]'''
|-
|style="padding:0 1em;"|'''[[Movies]]'''
|style="padding:0 1em;"|'''[[Toys]]'''
|-
|style="padding:0 1em;"|'''[[Heroes|Characters]]'''
|style="padding:0 1em;"|'''[[Video Games]]'''
|-
|style="padding:0 1em;"|'''[[Transformations]]'''
|style="padding:0 1em;"|'''[[Comics]]'''
|-
|style="padding:0 1em .5em 1em;"|'''[[Villains]]'''
|style="padding:0 1em .5em 1em;"|'''[[Fandom]]'''
|}
<noinclude>
[[Category: Main Page templates]]
</noinclude>
b0077be9afd74010760a906d0fab2f71b80c2be8
280
263
2020-05-28T01:13:40Z
Jaswacker
30585766
wikitext
text/x-wiki
<center>'''New to ''Ben 10''? Start here!'''</center>
{|cellpadding="0" cellspacing="0" style="margin:auto;"
|-
|style="padding:.5em 1em 0 1em;"|'''[[Ben 10|Cartoons]]'''
|style="padding:.5em 1em 0 1em;"|'''[[Continuity]]'''
|-
|style="padding:0 1em;"|'''[[Movies]]'''
|style="padding:0 1em;"|'''[[Toys]]'''
|-
|style="padding:0 1em;"|'''[[Heroes|Characters]]'''
|style="padding:0 1em;"|'''[[Video Games]]'''
|-
|style="padding:0 1em;"|'''[[Transformations]]'''
|style="padding:0 1em;"|'''[[Comics]]'''
|-
|style="padding:0 1em .5em 1em;"|'''[[Villains]]'''
|style="padding:0 1em .5em 1em;"|'''[[Fandom]]'''
|}
<noinclude>
[[Category: Main Page templates]]
</noinclude>
65c669b83e76691ac17aaf9f699cd84c6f52f700
MediaWiki:Common.css
8
3
264
176
2020-05-27T23:14:18Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:.5em;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(/mediawiki/images2/2/26/Allsparkstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
c7e647beaf3c450564fcfb913b02bdf5a7ce64a5
267
264
2020-05-27T23:31:09Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:.5em;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(/mediawiki/images2/2/26/Allsparkstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.tt1-nbSidebar{
width:44px;
background-color:#999;
background-image:url(/mediawiki/images2/8/8d/Allsparkstrip_copy_transparent.png);
background-repeat:repeat-y;
background-position: left -10px;
display:table;
}
.tt1_noticebox > div{
display:table-cell;
}
div.tt1-crSidebar{
width:44px;
background-color:#999;
background-image:url(/mediawiki/images2/8/8d/Allsparkstrip_copy_transparent.png);
background-repeat:repeat-y;
background-position: left -10px;
}
table.tt1-navigation_franchise > tbody > tr.tt1-navigation_franchise_header
{
background: #f0f0f7 url(/mediawiki/images2/d/d6/Meta_titlegloss.png) left top;
}
table.tt1-navigation_franchise
{
color:#333;
}
table.tt1-navigation_franchise a:link
{
color:#333366;
}
table.tt1-navigation_franchise a:visited
{
color:#663366;
}
table.tt1-navigation_franchise a.new
{
color:#663333;
}
table.tt1-navigation_franchise > tbody > tr.tt1-navigation_franchise_header a
{
color:#777;
}
table.tt1-navigation_franchise > tbody > tr > td ul
{
margin-right:1em;
margin-top:0;
}
table.tt1-navigation_franchise > tbody > tr > td ul > li
{
list-style-position: inside;
list-style-image: url(/mediawiki/images2/1/13/Meta-list_bullet.png);
list-style-type: circle;
font-size:smaller;
line-height:1;
}
table.tt1-navigation_franchise > tbody > tr > td > ul > li a
{
white-space: nowrap;
}
9b94e6b728a7ca08bc96106746c0cfb8a6a9670d
268
267
2020-05-27T23:32:56Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:.5em;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(/mediawiki/images2/2/26/Allsparkstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
53a1ba566ef3e54cf28e75284c9c8fd8dc0bbdbd
270
268
2020-05-28T00:43:38Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:.5em;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(/mediawiki/images2/2/26/Allsparkstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
a81c04106745e129dde91babcb5be095fe3329f2
File:Allsparkstrip transparent.png
6
82
269
2020-05-27T23:37:28Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
MediaWiki:Monobook.css
8
18
271
105
2020-05-28T00:46:17Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the MonoBook skin */
body > div#globalWrapper {
background-image: url("https://cdn.discordapp.com/attachments/714642587100774465/714900430177435698/Wiki_BG.png");
background-color: #7bdf56;
}
.pbody li { list-style: none }
062b6be41fe5695275bfefb0da3ef48607034787
272
271
2020-05-28T00:48:07Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the MonoBook skin */
body > div#globalWrapper {
background-image: url("https://cdn.discordapp.com/attachments/714642587100774465/714900430177435698/Wiki_BG.png");
background-color: #7bdf56;
}
.pbody li { list-style: none }
.portlet ul {
line-height: 1.5em;
font-size: 150%;
]
a6c8f766f1e6e3cab15f18ab5912919c8ce8380a
273
272
2020-05-28T00:49:00Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the MonoBook skin */
body > div#globalWrapper {
background-image: url("https://cdn.discordapp.com/attachments/714642587100774465/714900430177435698/Wiki_BG.png");
background-color: #7bdf56;
}
.pbody li {
list-style-type: none;
}
.portlet ul {
line-height: 1.5em;
font-size: 150%;
]
2e13152cea97458f416b7cded9102bea25ab83ad
274
273
2020-05-28T00:51:07Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the MonoBook skin */
body > div#globalWrapper {
background-image: url("https://cdn.discordapp.com/attachments/714642587100774465/714900430177435698/Wiki_BG.png");
background-color: #7bdf56;
}
.pbody li {
list-style-type: none;
}
.portlet ul {
line-height: 1.5em;
font-size: 100%;
]
de3235cb356552d2b94b49200e4b1bc8435f0c19
275
274
2020-05-28T00:51:43Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the MonoBook skin */
body > div#globalWrapper {
background-image: url("https://cdn.discordapp.com/attachments/714642587100774465/714900430177435698/Wiki_BG.png");
background-color: #7bdf56;
}
.pbody li {
list-style-type: none;
}
7edf2549ffb3a1b34453732d0f801a885ff60118
277
275
2020-05-28T01:09:24Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the MonoBook skin */
body > div#globalWrapper {
background-image: url("https://cdn.discordapp.com/attachments/714642587100774465/714900430177435698/Wiki_BG.png");
background-color: #7bdf56;
}
.pbody li {
list-style-type: none;
}
<h3 id="p-NAVIGATION-label" {color: #fff;} </h3>
5335b76828e13e089b5cda04e1658e3add046478
278
277
2020-05-28T01:10:59Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the MonoBook skin */
body > div#globalWrapper {
background-image: url("https://cdn.discordapp.com/attachments/714642587100774465/714900430177435698/Wiki_BG.png");
background-color: #7bdf56;
}
.pbody li {
list-style-type: none;
}
7edf2549ffb3a1b34453732d0f801a885ff60118
MediaWiki:MonoBook.css
8
17
276
79
2020-05-28T00:58:14Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the MonoBook skin */
body > div#globalWrapper {
background-image: url("https://cdn.discordapp.com/attachments/714642587100774465/714900430177435698/Wiki_BG.png");
background-color: #7bdf56;
}
.pbody li {
list-style-type: none;
}
7edf2549ffb3a1b34453732d0f801a885ff60118
Main Page/poll
0
68
281
197
2020-05-28T01:14:11Z
Jaswacker
30585766
wikitext
text/x-wiki
<center><poll>
This is just a test question
Yes
No
Maybe
</poll></center>
0991e6eab8d2b90a77db9cb8f87e0e7091ece9e9
Main Page/featured
0
83
283
2020-05-28T01:30:03Z
Jaswacker
30585766
Created page with "<div style="float:right;margin-left:1em"> [[File:placeholder775.png|200px|]] </div> '''[[Prisonner 775]]''' is a damaged, vengeful person who used to be fatherly. Being a vic..."
wikitext
text/x-wiki
<div style="float:right;margin-left:1em">
[[File:placeholder775.png|200px|]]
</div>
'''[[Prisonner 775]]''' is a damaged, vengeful person who used to be fatherly. Being a victim of a banished rebel and being imprisonment for 50 years drove him more depressed, violent and broken inside. He was apart of a failed revolution on his home planet, which resulted in the death of his family.
Being exiled from his homeworld by an oppressive dictator, Prisoner 775 found himself crashlanding on [[Earth]] where he was soon held captive by the secret [[Area 51]], who held him on the false assumption of being an intergalactic terrorist.
<p></p>
'''[[Prisonner 775|continued...]]'''
<noinclude>
[[Category: Main Page templates]]
</noinclude>
c982e588faf23cfb9c01dc44edf33da68cb599d7
285
283
2020-05-28T01:30:38Z
Jaswacker
30585766
wikitext
text/x-wiki
<div style="float:right;margin-left:1em">
[[File:placeholder775.png|200px|]]
</div>
'''[[Prisonner 775]]''' is a damaged, vengeful person who used to be fatherly. Being a victim of a banished rebel and being imprisonment for 50 years drove him more depressed, violent and broken inside. He was apart of a failed revolution on his home planet, which resulted in the death of his family.
Being exiled from his homeworld by an oppressive dictator, Prisoner 775 found himself crashlanding on [[Earth]] where he was soon held captive by the secret [[Area 51]], who held him on the false assumption of being an intergalactic terrorist.
<p></p>
'''[[Prisonner 775|continued...]]'''
<noinclude>
[[Category: Main Page templates]]
</noinclude>
ad385f0d3b234a9ef6df06e74f89c89bcfc9a877
286
285
2020-05-28T01:32:33Z
Jaswacker
30585766
wikitext
text/x-wiki
<div style="float:right;margin-left:1em">
[[File:placeholder775.png|200px|]]
</div>
'''[[Prisoner 775]]''' is a damaged, vengeful person who used to be fatherly. Being a victim of a banished rebel and being imprisonment for 50 years drove him more depressed, violent and broken inside. He was apart of a failed revolution on his home planet, which resulted in the death of his family.
Being exiled from his homeworld by an oppressive dictator, Prisoner 775 found himself crashlanding on [[Earth]] where he was soon held captive by the secret [[Area 51]], who held him on the false assumption of being an intergalactic terrorist.
<p></p>
'''[[Prisonner 775|continued...]]'''
<noinclude>
[[Category: Main Page templates]]
</noinclude>
28a4ecfd8937ec5a5a323f2b38c828f5709b67b0
288
286
2020-05-28T01:34:18Z
Jaswacker
30585766
wikitext
text/x-wiki
<div style="float:right;margin-left:1em">
[[File:placeholder775.png|200px|]]
</div>
'''[[Prisoner 775]]''' is a damaged, vengeful being who had his whole fatherly life changed. Being a banished rebel and being imprisoned for 50 years drove him down a line of depression and violent tendencies. He was apart of a failed revolution on his home planet, which resulted in the death of his family.
Being exiled from his homeworld by an oppressive dictator, Prisoner 775 found himself crashlanding on [[Earth]] where he was soon held captive by the secret [[Area 51]], who held him on the false assumption of being an intergalactic terrorist.
<p></p>
'''[[Prisonner 775|continued...]]'''
<noinclude>
[[Category: Main Page templates]]
</noinclude>
54470b877b8c36a287de0545e9ea52dc34cc70b2
File:Placeholder775.png
6
84
284
2020-05-28T01:30:20Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Template:Quote
10
85
291
2020-05-28T01:40:46Z
Jaswacker
30585766
Created page with "<includeonly><div class="tt1_basicquote {{#if:{{{noquote|}}}|noquote<nowiki> </nowiki>|}}{{#if:{{{center|}}}|centered<nowiki> </nowiki>|}}" {{#if:{{{width|}}}|style="width:{{{..."
wikitext
text/x-wiki
<includeonly><div class="tt1_basicquote {{#if:{{{noquote|}}}|noquote<nowiki> </nowiki>|}}{{#if:{{{center|}}}|centered<nowiki> </nowiki>|}}" {{#if:{{{width|}}}|style="width:{{{width}}};"|}}><span class="quote">{{{1}}}</span>{{#if:{{{quote2|}}}|<span class="quote">{{{quote2}}}</span>}}{{#if:{{{2|}}}{{{3|}}}|<cite>{{{2}}}{{#if:{{{3|}}}|, <small>{{{3}}}</small>|}}</cite>|}}</div></includeonly><noinclude>{{Quote/doc}}
[[Category:Templates|Quote]]
</noinclude>
763878fc47b25ab07edbd89d33a270cf86f0c3a7
294
291
2020-05-28T01:43:01Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div class="tt1_basicquote {{#if:{{{noquote|}}}|noquote<nowiki> </nowiki>|}}{{#if:{{{center|}}}|centered<nowiki> </nowiki>|}}" {{#if:{{{width|}}}|style="width:{{{width}}};"|}}><span class="quote">{{{1}}}</span>{{#if:{{{quote2|}}}|<span class="quote">{{{quote2}}}</span>}}{{#if:{{{2|}}}{{{3|}}}|<cite>{{{2}}}{{#if:{{{3|}}}|, <small>{{{3}}}</small>|}}</cite>|}}</div></includeonly><noinclude>{{Quote/doc}}
[[Category:Templates]]
</noinclude>
eddb41d534c9aaba5fbf80f49b6dc5ea15288e1b
295
294
2020-05-28T01:45:30Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>
<div class="tt1_basicquote {{#if:{{{noquote|}}}
|noquote<nowiki> </nowiki>|}}{{#if:{{{center|}}}
|centered<nowiki> </nowiki>|}}" {{#if:{{{width|}}}
|style="width:{{{width}}};"|}}><span class="quote">{{{1}}}</span>{{#if:{{{quote2|}}}
|<span class="quote">{{{quote2}}}</span>}}{{#if:{{{2|}}}{{{3|}}}
|<cite>{{{2}}}{{#if:{{{3|}}}|, <small>{{{3}}}</small>|}}</cite>|}}
</div>
</includeonly><noinclude>{{Quote/doc}}
[[Category:Templates]]
</noinclude>
7005ec1a7450ecdbdb667a023e46bcc327932e2c
297
295
2020-05-28T01:50:26Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| align="center" style="border: 1px solid #5FC8DD; margin: 4px 0px; background:rgba(50,68,137,0.5); border-radius:5px;{{#if: {{{bgcolor|}}}|border: 1px solid #5FC8DD;}}" class="cquote"
| width="15" valign="top" style="color:#5FC8DD; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:left; padding:10px;" | “
| valign="top" style="font-family:Nunito, sans-serif; padding:4px 2px; font-size:12px;" |
{{{1|{{{text|text.}}}}}}
| width="15" valign="bottom" style="color:#5FC8DD; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:right; padding:10px;" | ”
|-
{{#if:{{{origin|}}}{{{source|}}}{{{saidby|}}}{{{reference|}}}|
{{!}} colspan="3" style="font-family:Nunito, sans-serif; font-size:12px; text-align:right;"{{!}}<cite style="font-size:normal; text-align:right;">—{{{saidby|{{{origin}}}}}}{{#if:{{{source|}}}{{{reference|}}}|, {{{reference|{{{source}}}}}}}}</cite>
}}
|}
</includeonly><noinclude>
== Example usage ==
'''Quoted text only''':
<pre>{{Quote
|text = Test 123}}</pre>
result:
{{Quote
|text = Test 123}}
'''Quoted text with origin''':
<pre>{{Quote
|text = Test 123
|origin = This template}}</pre>
result:
{{Quote
|text = Test 123
|origin = This template}}
[[Category:Templates]]</noinclude>
353b9d054f65b39679bf5c03d1c36b459a1621e1
298
297
2020-05-28T01:51:57Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| align="center" style="border: 2px solid #02b70c; margin: 4px 0px; border-radius:5px;{{#if: {{{bgcolor|}}}|border: 1px solid #02b70c;}}" class="cquote"
| width="15" valign="top" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:left; padding:10px;" | “
| valign="top" style="font-family:Nunito, sans-serif; padding:4px 2px; font-size:12px;" |
{{{1|{{{text|text.}}}}}}
| width="15" valign="bottom" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:right; padding:10px;" | ”
|-
{{#if:{{{origin|}}}{{{source|}}}{{{saidby|}}}{{{reference|}}}|
{{!}} colspan="3" style="font-family:Nunito, sans-serif; font-size:12px; text-align:right;"{{!}}<cite style="font-size:normal; text-align:right;">—{{{saidby|{{{origin}}}}}}{{#if:{{{source|}}}{{{reference|}}}|, {{{reference|{{{source}}}}}}}}</cite>
}}
|}
</includeonly><noinclude>
== Example usage ==
'''Quoted text only''':
<pre>{{Quote
|text = Test 123}}</pre>
result:
{{Quote
|text = Test 123}}
'''Quoted text with origin''':
<pre>{{Quote
|text = Test 123
|origin = This template}}</pre>
result:
{{Quote
|text = Test 123
|origin = This template}}
[[Category:Templates]]</noinclude>
37658ffd24727f2b7c62925dbbe8a0d39df5bc76
299
298
2020-05-28T01:52:51Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| align="center" style="border: 0px solid #02b70c; margin: 4px 0px; border-radius:5px;{{#if: {{{bgcolor|}}}|border: 0px solid #02b70c;}}" class="cquote"
| width="15" valign="top" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:left; padding:10px;" | “
| valign="top" style="font-family:Nunito, sans-serif; padding:4px 2px; font-size:12px;" |
{{{1|{{{text|text.}}}}}}
| width="15" valign="bottom" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:right; padding:10px;" | ”
|-
{{#if:{{{origin|}}}{{{source|}}}{{{saidby|}}}{{{reference|}}}|
{{!}} colspan="3" style="font-family:Nunito, sans-serif; font-size:12px; text-align:right;"{{!}}<cite style="font-size:normal; text-align:right;">—{{{saidby|{{{origin}}}}}}{{#if:{{{source|}}}{{{reference|}}}|, {{{reference|{{{source}}}}}}}}</cite>
}}
|}
</includeonly><noinclude>
== Example usage ==
'''Quoted text only''':
<pre>{{Quote
|text = Test 123}}</pre>
result:
{{Quote
|text = Test 123}}
'''Quoted text with origin''':
<pre>{{Quote
|text = Test 123
|origin = This template}}</pre>
result:
{{Quote
|text = Test 123
|origin = This template}}
[[Category:Templates]]</noinclude>
723e67b593b59a8dfddc07080fd49fec14c31b28
300
299
2020-05-28T01:54:15Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><center>{| align="center" style="border: 0px solid #02b70c; margin: 4px 0px; border-radius:5px;{{#if: {{{bgcolor|}}}|border: 0px solid #02b70c;}}" class="cquote"
| width="15" valign="top" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:left; padding:10px;" | “
| valign="top" style="font-family:Nunito, sans-serif; padding:4px 2px; font-size:12px;" |
{{{1|{{{text|text.}}}}}}
| width="15" valign="bottom" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:right; padding:10px;" | ”
|-
{{#if:{{{origin|}}}{{{source|}}}{{{saidby|}}}{{{reference|}}}|
{{!}} colspan="3" style="font-family:Nunito, sans-serif; font-size:12px; text-align:right;"{{!}}<cite style="font-size:normal; text-align:right;">—{{{saidby|{{{origin}}}}}}{{#if:{{{source|}}}{{{reference|}}}|, {{{reference|{{{source}}}}}}}}</cite>
}}
|}</center>
</includeonly><noinclude>
== Example usage ==
'''Quoted text only''':
<pre>{{Quote
|text = Test 123}}</pre>
result:
{{Quote
|text = Test 123}}
'''Quoted text with origin''':
<pre>{{Quote
|text = Test 123
|origin = This template}}</pre>
result:
{{Quote
|text = Test 123
|origin = This template}}
[[Category:Templates]]</noinclude>
272e30171283318f2a78be70c871de9686f7b000
302
300
2020-05-28T01:57:53Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| align="center" style="display: inline-block; border: 0px solid #02b70c; margin: 4px 0px; border-radius:5px;{{#if: {{{bgcolor|}}}|border: 0px solid #02b70c;}}" class="cquote"
| width="15" valign="top" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:left; padding:10px;" | “
| valign="top" style="font-family:Nunito, sans-serif; padding:4px 2px; font-size:12px;" |
{{{1|{{{text|text.}}}}}}
| width="15" valign="bottom" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:right; padding:10px;" | ”
|-
{{#if:{{{origin|}}}{{{source|}}}{{{saidby|}}}{{{reference|}}}|
{{!}} colspan="3" style="font-family:Nunito, sans-serif; font-size:12px; text-align:right;"{{!}}<cite style="font-size:normal; text-align:right;">—{{{saidby|{{{origin}}}}}}{{#if:{{{source|}}}{{{reference|}}}|, {{{reference|{{{source}}}}}}}}</cite>
}}
|}
</includeonly><noinclude>
== Example usage ==
'''Quoted text only''':
<pre>{{Quote
|text = Test 123}}</pre>
result:
{{Quote
|text = Test 123}}
'''Quoted text with origin''':
<pre>{{Quote
|text = Test 123
|origin = This template}}</pre>
result:
{{Quote
|text = Test 123
|origin = This template}}
[[Category:Templates]]</noinclude>
0a8f1e92b4cd269fd5e7d9cbf19e12eeef27590e
303
302
2020-05-28T01:58:30Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| align="center" style="border: 0px solid #02b70c; margin: 4px 0px; border-radius:5px;{{#if: {{{bgcolor|}}}|border: 0px solid #02b70c;}}" class="cquote"
| width="15" valign="top" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:left; padding:10px;" | “
| valign="top" style="font-family:Nunito, sans-serif; padding:4px 2px; font-size:12px;" |
{{{1|{{{text|text.}}}}}}
| width="15" valign="bottom" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:right; padding:10px;" | ”
|-
{{#if:{{{origin|}}}{{{source|}}}{{{saidby|}}}{{{reference|}}}|
{{!}} colspan="3" style="font-family:Nunito, sans-serif; font-size:12px; text-align:right;"{{!}}<cite style="font-size:normal; text-align:right;">—{{{saidby|{{{origin}}}}}}{{#if:{{{source|}}}{{{reference|}}}|, {{{reference|{{{source}}}}}}}}</cite>
}}
|}
</includeonly><noinclude>
== Example usage ==
'''Quoted text only''':
<pre>{{Quote
|text = Test 123}}</pre>
result:
<center>{{Quote
|text = Test 123}}</center>
'''Quoted text with origin''':
<pre>{{Quote
|text = Test 123
|origin = This template}}</pre>
result:
{{Quote
|text = Test 123
|origin = This template}}
[[Category:Templates]]</noinclude>
7adb83f1fff3445a51ac6d1f6d3082108c3acaf2
304
303
2020-05-28T01:58:52Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| align="center" style="border: 0px solid #02b70c; margin: 4px 0px; border-radius:5px;{{#if: {{{bgcolor|}}}|border: 0px solid #02b70c;}}" class="cquote"
| width="15" valign="top" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:left; padding:10px;" | “
| valign="top" style="font-family:Nunito, sans-serif; padding:4px 2px; font-size:12px;" |
{{{1|{{{text|text.}}}}}}
| width="15" valign="bottom" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:right; padding:10px;" | ”
|-
{{#if:{{{origin|}}}{{{source|}}}{{{saidby|}}}{{{reference|}}}|
{{!}} colspan="3" style="font-family:Nunito, sans-serif; font-size:12px; text-align:right;"{{!}}<cite style="font-size:normal; text-align:right;">—{{{saidby|{{{origin}}}}}}{{#if:{{{source|}}}{{{reference|}}}|, {{{reference|{{{source}}}}}}}}</cite>
}}
|}
</includeonly><noinclude>
== Example usage ==
'''Quoted text only''':
<pre>{{Quote
|text = Test 123}}</pre>
result:
{{Quote
|text = Test 123}}
'''Quoted text with origin''':
<pre>{{Quote
|text = Test 123
|origin = This template}}</pre>
result:
{{Quote
|text = Test 123
|origin = This template}}
[[Category:Templates]]</noinclude>
723e67b593b59a8dfddc07080fd49fec14c31b28
305
304
2020-05-28T02:00:00Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| align="center" style="border: 1px solid #939993; margin: 4px 0px; border-radius:5px;{{#if: {{{bgcolor|}}}|border: 1px solid #939993;}}" class="cquote"
| width="15" valign="top" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:left; padding:10px;" | “
| valign="top" style="font-family:Nunito, sans-serif; padding:4px 2px; font-size:12px;" |
{{{1|{{{text|text.}}}}}}
| width="15" valign="bottom" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:right; padding:10px;" | ”
|-
{{#if:{{{origin|}}}{{{source|}}}{{{saidby|}}}{{{reference|}}}|
{{!}} colspan="3" style="font-family:Nunito, sans-serif; font-size:12px; text-align:right;"{{!}}<cite style="font-size:normal; text-align:right;">—{{{saidby|{{{origin}}}}}}{{#if:{{{source|}}}{{{reference|}}}|, {{{reference|{{{source}}}}}}}}</cite>
}}
|}
</includeonly><noinclude>
== Example usage ==
'''Quoted text only''':
<pre>{{Quote
|text = Test 123}}</pre>
result:
{{Quote
|text = Test 123}}
'''Quoted text with origin''':
<pre>{{Quote
|text = Test 123
|origin = This template}}</pre>
result:
{{Quote
|text = Test 123
|origin = This template}}
[[Category:Templates]]</noinclude>
60f99483f75c01a1c25021f87655070880eaf970
306
305
2020-05-28T02:00:56Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| align="center" style="border: 1px solid #939993; margin: 4px 0px; border-radius:5px; padding: 4px;{{#if: {{{bgcolor|}}}|border: 1px solid #939993;}}" class="cquote"
| width="15" valign="top" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:left; padding:10px;" | “
| valign="top" style="font-family:Nunito, sans-serif; padding:4px 2px; font-size:12px;" |
{{{1|{{{text|text.}}}}}}
| width="15" valign="bottom" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:right; padding:10px;" | ”
|-
{{#if:{{{origin|}}}{{{source|}}}{{{saidby|}}}{{{reference|}}}|
{{!}} colspan="3" style="font-family:Nunito, sans-serif; font-size:12px; text-align:right;"{{!}}<cite style="font-size:normal; text-align:right;">—{{{saidby|{{{origin}}}}}}{{#if:{{{source|}}}{{{reference|}}}|, {{{reference|{{{source}}}}}}}}</cite>
}}
|}
</includeonly><noinclude>
== Example usage ==
'''Quoted text only''':
<pre>{{Quote
|text = Test 123}}</pre>
result:
{{Quote
|text = Test 123}}
'''Quoted text with origin''':
<pre>{{Quote
|text = Test 123
|origin = This template}}</pre>
result:
{{Quote
|text = Test 123
|origin = This template}}
[[Category:Templates]]</noinclude>
8bdf20bc5ec93f2ea462ed82b5753792d0e16506
307
306
2020-05-28T02:01:17Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| align="center" style="border: 1px solid #939993; margin: 8px 0px; border-radius:5px; padding: 4px;{{#if: {{{bgcolor|}}}|border: 1px solid #939993;}}" class="cquote"
| width="15" valign="top" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:left; padding:10px;" | “
| valign="top" style="font-family:Nunito, sans-serif; padding:4px 2px; font-size:12px;" |
{{{1|{{{text|text.}}}}}}
| width="15" valign="bottom" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:right; padding:10px;" | ”
|-
{{#if:{{{origin|}}}{{{source|}}}{{{saidby|}}}{{{reference|}}}|
{{!}} colspan="3" style="font-family:Nunito, sans-serif; font-size:12px; text-align:right;"{{!}}<cite style="font-size:normal; text-align:right;">—{{{saidby|{{{origin}}}}}}{{#if:{{{source|}}}{{{reference|}}}|, {{{reference|{{{source}}}}}}}}</cite>
}}
|}
</includeonly><noinclude>
== Example usage ==
'''Quoted text only''':
<pre>{{Quote
|text = Test 123}}</pre>
result:
{{Quote
|text = Test 123}}
'''Quoted text with origin''':
<pre>{{Quote
|text = Test 123
|origin = This template}}</pre>
result:
{{Quote
|text = Test 123
|origin = This template}}
[[Category:Templates]]</noinclude>
040231595d5b0696f8a7850937636aaaf4cf1935
308
307
2020-05-28T02:01:58Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| align="center" style="border: 1px solid #939993; margin: 8px 0px; border-radius:5px; padding-right: 10px;{{#if: {{{bgcolor|}}}|border: 1px solid #939993;}}" class="cquote"
| width="15" valign="top" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:left; padding:10px;" | “
| valign="top" style="font-family:Nunito, sans-serif; padding:4px 2px; font-size:12px;" |
{{{1|{{{text|text.}}}}}}
| width="15" valign="bottom" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:right; padding:10px;" | ”
|-
{{#if:{{{origin|}}}{{{source|}}}{{{saidby|}}}{{{reference|}}}|
{{!}} colspan="3" style="font-family:Nunito, sans-serif; font-size:12px; text-align:right;"{{!}}<cite style="font-size:normal; text-align:right;">—{{{saidby|{{{origin}}}}}}{{#if:{{{source|}}}{{{reference|}}}|, {{{reference|{{{source}}}}}}}}</cite>
}}
|}
</includeonly><noinclude>
== Example usage ==
'''Quoted text only''':
<pre>{{Quote
|text = Test 123}}</pre>
result:
{{Quote
|text = Test 123}}
'''Quoted text with origin''':
<pre>{{Quote
|text = Test 123
|origin = This template}}</pre>
result:
{{Quote
|text = Test 123
|origin = This template}}
[[Category:Templates]]</noinclude>
6219ee2b640427f492fe61803993f1fb5f142d3b
309
308
2020-05-28T02:02:30Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| align="center" style="border: 1px solid #fff; margin: 8px 0px; border-radius:5px; padding-right: 10px;{{#if: {{{bgcolor|}}}|border: 1px solid #fff;}}" class="cquote"
| width="15" valign="top" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:left; padding:10px;" | “
| valign="top" style="font-family:Nunito, sans-serif; padding:4px 2px; font-size:12px;" |
{{{1|{{{text|text.}}}}}}
| width="15" valign="bottom" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:right; padding:10px;" | ”
|-
{{#if:{{{origin|}}}{{{source|}}}{{{saidby|}}}{{{reference|}}}|
{{!}} colspan="3" style="font-family:Nunito, sans-serif; font-size:12px; text-align:right;"{{!}}<cite style="font-size:normal; text-align:right;">—{{{saidby|{{{origin}}}}}}{{#if:{{{source|}}}{{{reference|}}}|, {{{reference|{{{source}}}}}}}}</cite>
}}
|}
</includeonly><noinclude>
== Example usage ==
'''Quoted text only''':
<pre>{{Quote
|text = Test 123}}</pre>
result:
{{Quote
|text = Test 123}}
'''Quoted text with origin''':
<pre>{{Quote
|text = Test 123
|origin = This template}}</pre>
result:
{{Quote
|text = Test 123
|origin = This template}}
[[Category:Templates]]</noinclude>
3baa87ebee15dcc798a4915c294f8e8e1fd3ed00
Template:Quote/doc
10
86
292
2020-05-28T01:41:04Z
Jaswacker
30585766
Created page with "'''<tt><nowiki>{{quote}}</nowiki></tt>''' is exactly what it says on the tin. <pre>{{quote |The bit being quoted |the one what said it |where they said it }}</pre> {{quote|<n..."
wikitext
text/x-wiki
'''<tt><nowiki>{{quote}}</nowiki></tt>''' is exactly what it says on the tin.
<pre>{{quote
|The bit being quoted
|the one what said it
|where they said it
}}</pre>
{{quote|<nowiki>{{quote}}</nowiki> is exactly what it says on the tin.|Narrator|Template:Quote documentation}}
'''<tt><nowiki>{{quote}}</nowiki></tt>''' also accepts a few self-explanatory optional parameters like "noquote", which can be used to hide the big quote marks. This is useful when the quote you're quoting contains... er... quotes, or multiple speakers.
{{quote|"Farewell Optimus prime," [Starscream] whispered to himself. "Time for Endspark."|[[Starscream (Movie)|Starscream]]|[[Transformers: Ghosts of Yesterday| Ghosts of Yesterday]] p280|noquote=true}}
{{quote|"How dare you!"<br/>"Oh please!"|'''Megatron''' is outraged to be struck in the face but '''Optimus Prime''' doesn't have time for his vanity|"[[Protection]]"|noquote=true}}
{| class="wikitable"
|-
!colspan="2"|optional parameters
|-
!name !!value
|-
|noquote ||true
|-
|center ||true
|-
|width || 500px
|}
<pre>{{quote
|"It is vitally important..." he paused to gather his thoughts, "that you remember to floss."
|Optimus Prime
|"Balls of Nonobtanium Steel"
|noquote=true
|center=true
|width=300px
}}</pre>
{{quote
|"It is vitally important..." he paused to gather his thoughts, "that you remember to floss."
|Optimus Prime|"Balls of Nonobtanium Steel"
|noquote=true|center=true|width=300px
}}
<noinclude>[[Category: Externalized documentation]]</noinclude>
f15b2fc1a04139d0204ec813f120c402138be2cb
293
292
2020-05-28T01:42:14Z
Jaswacker
30585766
wikitext
text/x-wiki
'''<tt><nowiki>{{quote}}</nowiki></tt>''' is exactly what it says on the tin.
<pre>{{quote
|The bit being quoted
|the one what said it
|where they said it
}}</pre>
{{quote|<nowiki>{{quote}}</nowiki> is exactly what it says on the tin.|Narrator|Template:Quote documentation}}
'''<tt><nowiki>{{quote}}</nowiki></tt>''' also accepts a few self-explanatory optional parameters like "noquote", which can be used to hide the big quote marks. This is useful when the quote you're quoting contains... er... quotes, or multiple speakers.
{{quote|"Farewell Optimus prime," [Starscream] whispered to himself. "Time for Endspark."|[[Starscream (Movie)|Starscream]]|[[Transformers: Ghosts of Yesterday| Ghosts of Yesterday]] p280|noquote=true}}
{{quote|"How dare you!"<br/>"Oh please!"|'''Megatron''' is outraged to be struck in the face but '''Optimus Prime''' doesn't have time for his vanity|"[[Protection]]"|noquote=true}}
{| class="wikitable"
|-
!colspan="2"|optional parameters
|-
!name !!value
|-
|noquote ||true
|-
|center ||true
|-
|width || 500px
|}
<pre>{{quote
|"It is vitally important..." he paused to gather his thoughts, "that you remember to floss."
|Optimus Prime
|"Balls of Nonobtanium Steel"
|noquote=true
|center=true
|width=300px
}}</pre>
{{quote
|"It is vitally important..." he paused to gather his thoughts, "that you remember to floss."
|Optimus Prime|"Balls of Nonobtanium Steel"
|noquote=true|center=true|width=300px
}}
<noinclude>[[Category:Templates]]</noinclude>
c63a465086c9530c9eaa0c56c7cb6cd6e5cb5432
Main Page/results
0
88
301
2020-05-28T01:57:40Z
Jaswacker
30585766
Created page with "placeholdeR!!"
wikitext
text/x-wiki
placeholdeR!!
be2441a2ddf96d0c784db65c4f1199b54b6d294e
Template:Quote
10
85
310
309
2020-05-28T02:04:12Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| align="center" style="border: 1px solid #fff; margin: 8px 0px; border-radius:5px; padding-right: 10px;{{#if: {{{bgcolor|}}}|border: 1px solid #fff;}}" class="cquote"
| width="15" valign="top" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:left; padding:10px;" | “
| valign="top" style="font-family:Nunito, sans-serif; padding:4px 2px; font-size:12px;" |
{{{1|{{{text|text.}}}}}}
| width="15" valign="bottom" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:right; padding:10px;" | ”
|-
{{#if:{{{origin|}}}{{{source|}}}{{{saidby|}}}{{{reference|}}}|
{{!}} colspan="3" style="font-family:Nunito, sans-serif; font-size:12px; text-align:right;"{{!}}<cite style="font-size:normal; text-align:right;">'''〜'''{{{saidby|{{{origin}}}}}}{{#if:{{{source|}}}{{{reference|}}}|, {{{reference|{{{source}}}}}}}}</cite>
}}
|}
</includeonly><noinclude>
== Example usage ==
'''Quoted text only''':
<pre>{{Quote
|text = Test 123}}</pre>
result:
{{Quote
|text = Test 123}}
'''Quoted text with origin''':
<pre>{{Quote
|text = Test 123
|origin = This template}}</pre>
result:
{{Quote
|text = Test 123
|origin = This template}}
[[Category:Templates]]</noinclude>
9508bc0e5405a4ce11b63b7b4bf075ef50dc7b2a
319
310
2020-05-28T02:15:49Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| align="center" style="border: 1px solid #fff; margin-left:auto;margin-right:auto; border-radius:5px; padding-right: 10px;{{#if: {{{bgcolor|}}}|border: 1px solid #fff;}}" class="cquote"
| width="15" valign="top" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:left; padding:10px;" | “
| valign="top" style="font-family:Nunito, sans-serif; padding:4px 2px; font-size:12px;" |
{{{1|{{{text|text.}}}}}}
| width="15" valign="bottom" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:right; padding:10px;" | ”
|-
{{#if:{{{origin|}}}{{{source|}}}{{{saidby|}}}{{{reference|}}}|
{{!}} colspan="3" style="font-family:Nunito, sans-serif; font-size:12px; text-align:right;"{{!}}<cite style="font-size:normal; text-align:right;">'''〜'''{{{saidby|{{{origin}}}}}}{{#if:{{{source|}}}{{{reference|}}}|, {{{reference|{{{source}}}}}}}}</cite>
}}
|}
</includeonly><noinclude>
== Example usage ==
'''Quoted text only''':
<pre>{{Quote
|text = Test 123}}</pre>
result:
{{Quote
|text = Test 123}}
'''Quoted text with origin''':
<pre>{{Quote
|text = Test 123
|origin = This template}}</pre>
result:
{{Quote
|text = Test 123
|origin = This template}}
[[Category:Templates]]</noinclude>
f1ddb37ea78e0a5a22dc808a3521d94818ec9f9d
320
319
2020-05-28T02:20:30Z
Jaswacker
30585766
/* Example usage */
wikitext
text/x-wiki
<includeonly>{| align="center" style="border: 1px solid #fff; margin-left:auto;margin-right:auto; border-radius:5px; padding-right: 10px;{{#if: {{{bgcolor|}}}|border: 1px solid #fff;}}" class="cquote"
| width="15" valign="top" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:left; padding:10px;" | “
| valign="top" style="font-family:Nunito, sans-serif; padding:4px 2px; font-size:12px;" |
{{{1|{{{text|text.}}}}}}
| width="15" valign="bottom" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:right; padding:10px;" | ”
|-
{{#if:{{{origin|}}}{{{source|}}}{{{saidby|}}}{{{reference|}}}|
{{!}} colspan="3" style="font-family:Nunito, sans-serif; font-size:12px; text-align:right;"{{!}}<cite style="font-size:normal; text-align:right;">'''〜'''{{{saidby|{{{origin}}}}}}{{#if:{{{source|}}}{{{reference|}}}|, {{{reference|{{{source}}}}}}}}</cite>
}}
|}
</includeonly><noinclude>
== Example usage ==
'''Quoted text only''':
<pre>{{Quote
|text = Sometimes when I close my eyes, I can't see.}}</pre>
result:
{{Quote
|text = Sometimes when I close my eyes, I can't see.}}
'''Quoted text with origin''':
<pre>{{Quote
|text = Uh, one of my balls fell off.
|origin = [[Humungousaur]] in [[Video Games (episode)|Video Games]]}}</pre>
result:
{{Quote
|text = Test 123
|origin = This template}}
[[Category:Templates]]</noinclude>
b482ce0b33d08976015b676d3be9932e7e30bb3b
321
320
2020-05-28T02:20:48Z
Jaswacker
30585766
/* Example usage */
wikitext
text/x-wiki
<includeonly>{| align="center" style="border: 1px solid #fff; margin-left:auto;margin-right:auto; border-radius:5px; padding-right: 10px;{{#if: {{{bgcolor|}}}|border: 1px solid #fff;}}" class="cquote"
| width="15" valign="top" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:left; padding:10px;" | “
| valign="top" style="font-family:Nunito, sans-serif; padding:4px 2px; font-size:12px;" |
{{{1|{{{text|text.}}}}}}
| width="15" valign="bottom" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:right; padding:10px;" | ”
|-
{{#if:{{{origin|}}}{{{source|}}}{{{saidby|}}}{{{reference|}}}|
{{!}} colspan="3" style="font-family:Nunito, sans-serif; font-size:12px; text-align:right;"{{!}}<cite style="font-size:normal; text-align:right;">'''〜'''{{{saidby|{{{origin}}}}}}{{#if:{{{source|}}}{{{reference|}}}|, {{{reference|{{{source}}}}}}}}</cite>
}}
|}
</includeonly><noinclude>
== Example usage ==
'''Quoted text only''':
<pre>{{Quote
|text = Sometimes when I close my eyes, I can't see.}}</pre>
result:
{{Quote
|text = Sometimes when I close my eyes, I can't see.}}
'''Quoted text with origin''':
<pre>{{Quote
|text = Uh, one of my balls fell off.
|origin = [[Humungousaur]] in [[Video Games (episode)|Video Games]]}}</pre>
result:
{{Quote
|text = Uh, one of my balls fell off.
|origin = [[Humungousaur]] in [[Video Games (episode)|Video Games]]}}
[[Category:Templates]]</noinclude>
e99da557a4078ac04d8cb0535341bc886d284f33
Main Page/results
0
88
311
301
2020-05-28T02:08:27Z
Jaswacker
30585766
wikitext
text/x-wiki
<big><center>'''EVENT TITLE'''</center></big>
Insert event description here.
<small><center>And the winner was...</center></small>
[[File:Placeholder.png|200px|thumb|''Event Winner!'']]
<noinclude>
[[Category: Main Page templates]]
</noinclude>
75eb36d88d2557642d8576c02c997a40c625b3e9
312
311
2020-05-28T02:09:18Z
Jaswacker
30585766
wikitext
text/x-wiki
<big><center>'''EVENT TITLE'''</center></big>
Insert event description here. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
<small><center>And the winner was...</center></small>
<center>[[File:Placeholder.png|200px|thumb|''Event Winner!'']]</center>
<noinclude>
[[Category: Main Page templates]]
</noinclude>
d212f761b944ee8c1e9adbc77dbf9a759a9a2e81
313
312
2020-05-28T02:10:44Z
Jaswacker
30585766
wikitext
text/x-wiki
<big><center>'''EVENT TITLE'''</center></big>
Insert event description here. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
<small><center>And the winner was...</center></small>
[[File:Placeholder2.png|200px|center|''Event Winner!'']]
<noinclude>
[[Category: Main Page templates]]
</noinclude>
b006e8014cb40b216c9b92bd5029a97c39612b7c
314
313
2020-05-28T02:11:53Z
Jaswacker
30585766
wikitext
text/x-wiki
<big><center>'''EVENT TITLE'''</center></big>
Insert event description here. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
<small><center>And the winner was...</center></small>
[[File:Placeholder2.png|200px|center]]
<center>''...Event Winner!''</center>
<noinclude>
[[Category: Main Page templates]]
</noinclude>
a32f07cc6df4161e03bc1b04a07eae23700a5bb5
315
314
2020-05-28T02:12:59Z
Jaswacker
30585766
wikitext
text/x-wiki
<br>
<big><center>'''EVENT TITLE'''</center></big>
Insert event description here. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
<small><center>And the winner was...</center></small>
[[File:Placeholder2.png|200px|center]]
<center>''[[article|Event Winner]]!''</center>
<br>
<noinclude>
[[Category: Main Page templates]]
</noinclude>
36a57e207a2c07c8e16b9bc38e5aa662e4bc3f06
316
315
2020-05-28T02:13:14Z
Jaswacker
30585766
wikitext
text/x-wiki
<br>
<big><center>'''EVENT TITLE'''</center></big>
Insert event description here. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
<small><center>And the winner was...</center></small>
[[File:Placeholder2.png|200px|center]]
<center>''[[article|Event Winner]]!''</center>
<br>
<noinclude>
[[Category: Main Page templates]]
</noinclude>
660989e68ba1a6fa366be304e5df7a9b69c85b69
317
316
2020-05-28T02:13:41Z
Jaswacker
30585766
wikitext
text/x-wiki
<br>
<big><center>'''EVENT TITLE'''</center></big>
Insert event description here. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
<small><center>And the winner was...</center></small>
[[File:Placeholder2.png|200px|center]]
<center>''[[article|Event Winner]]!''</center>
<br>
<noinclude>
[[Category: Main Page templates]]
</noinclude>
f62039ad68ccef69e63f247bcc2b562fb203b18a
318
317
2020-05-28T02:14:36Z
Jaswacker
30585766
wikitext
text/x-wiki
<big><center>'''EVENT TITLE'''</center></big>
Insert event description here. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
<small><center>And the winner was...</center></small>
[[File:PLACEHOLDER2.png|200px|center]]
<center>''[[article|Event Winner]]!''</center>
<br>
<noinclude>
[[Category: Main Page templates]]
</noinclude>
15d46817b340faa459334842d835e9c6436de7ab
334
318
2020-05-28T02:45:56Z
Jaswacker
30585766
Protected "[[Main Page/results]]": High traffic page ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))
wikitext
text/x-wiki
<big><center>'''EVENT TITLE'''</center></big>
Insert event description here. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
<small><center>And the winner was...</center></small>
[[File:PLACEHOLDER2.png|200px|center]]
<center>''[[article|Event Winner]]!''</center>
<br>
<noinclude>
[[Category: Main Page templates]]
</noinclude>
15d46817b340faa459334842d835e9c6436de7ab
Main Page
0
1
322
290
2020-05-28T02:35:01Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
<span id="esmeral"></span>
{{:Main Page/disambig}}
<div class="mainleft" style="text-align: center; vertical-align: top">
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 50%; margin: 0px 0px 5px">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Featured Article
|color=#02b70c
|id=featured
|content={{:Main_Page/featured}}<p style="text-align:right">[[:Category:Featured articles|More Featured Articles]]
|view=Main_Page/featured
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Polls and Voting
|color=#02b70c
|id=poll
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Previous Poll Results
|color=#02b70c
|id=results
|content={{:Main_Page/results}}
|view=Main_Page/results
}}
</div>
<div style="float: left; width: 100%; margin: 0px 0px 15px">
{{Featurebox
|Wiki Admins
|color=#02b70c
|id=admins
|content={{:Main_Page/admins}}
|view=Main_Page/admins
}}
</div>
39c95e90d55f350cd1819eb84e2d03da7808473f
328
322
2020-05-28T02:43:15Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
<span id="esmeral"></span>
{{:Main Page/disambig}}
<br>
<div class="mainleft" style="text-align: center; vertical-align: top">
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 50%; margin: 0px 0px 5px">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Featured Article
|color=#02b70c
|id=featured
|content={{:Main_Page/featured}}<p style="text-align:right">[[:Category:Featured articles|More Featured Articles]]
|view=Main_Page/featured
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Polls and Voting
|color=#02b70c
|id=poll
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Previous Poll Results
|color=#02b70c
|id=results
|content={{:Main_Page/results}}
|view=Main_Page/results
}}
</div>
<div style="float: left; width: 100%; margin: 0px 0px 15px">
{{Featurebox
|Wiki Admins
|color=#02b70c
|id=admins
|content={{:Main_Page/admins}}
|view=Main_Page/admins
}}
</div>
84b40dded3e12c07af912da88958011f1ca25e98
329
328
2020-05-28T02:43:34Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
<span id="esmeral"></span>
{{:Main Page/disambig}}
<div class="mainleft" style="text-align: center; vertical-align: top">
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 50%; margin: 0px 0px 5px">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Featured Article
|color=#02b70c
|id=featured
|content={{:Main_Page/featured}}<p style="text-align:right">[[:Category:Featured articles|More Featured Articles]]
|view=Main_Page/featured
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Polls and Voting
|color=#02b70c
|id=poll
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Previous Poll Results
|color=#02b70c
|id=results
|content={{:Main_Page/results}}
|view=Main_Page/results
}}
</div>
<div style="float: left; width: 100%; margin: 0px 0px 15px">
{{Featurebox
|Wiki Admins
|color=#02b70c
|id=admins
|content={{:Main_Page/admins}}
|view=Main_Page/admins
}}
</div>
39c95e90d55f350cd1819eb84e2d03da7808473f
330
329
2020-05-28T02:45:08Z
Jaswacker
30585766
Protected "[[Main Page]]": High traffic page ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
<span id="esmeral"></span>
{{:Main Page/disambig}}
<div class="mainleft" style="text-align: center; vertical-align: top">
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 50%; margin: 0px 0px 5px">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Featured Article
|color=#02b70c
|id=featured
|content={{:Main_Page/featured}}<p style="text-align:right">[[:Category:Featured articles|More Featured Articles]]
|view=Main_Page/featured
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Polls and Voting
|color=#02b70c
|id=poll
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Previous Poll Results
|color=#02b70c
|id=results
|content={{:Main_Page/results}}
|view=Main_Page/results
}}
</div>
<div style="float: left; width: 100%; margin: 0px 0px 15px">
{{Featurebox
|Wiki Admins
|color=#02b70c
|id=admins
|content={{:Main_Page/admins}}
|view=Main_Page/admins
}}
</div>
39c95e90d55f350cd1819eb84e2d03da7808473f
340
330
2020-05-28T02:48:16Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
<span id="esmeral"></span>
{{:Main Page/disambig}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 50%; margin: 0px 0px 5px">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Featured Article
|color=#02b70c
|id=featured
|content={{:Main_Page/featured}}<p style="text-align:right">[[:Category:Featured articles|More Featured Articles]]
|view=Main_Page/featured
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Polls and Voting
|color=#02b70c
|id=poll
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Previous Poll Results
|color=#02b70c
|id=results
|content={{:Main_Page/results}}
|view=Main_Page/results
}}
</div>
<div style="float: left; width: 100%; margin: 0px 0px 15px">
{{Featurebox
|Wiki Admins
|color=#02b70c
|id=admins
|content={{:Main_Page/admins}}
|view=Main_Page/admins
}}
</div>
8f20c79904329c7af8bd7a78c3f443129178b4d2
341
340
2020-05-28T02:51:34Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
<span id="esmeral"></span>
{{:Main Page/disambig}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 50%; margin: 0px 0px 5px">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Featured Article
|color=#02b70c
|id=featured
|content={{:Main_Page/featured}}<p style="text-align:right">[[:Category:Featured articles|More Featured Articles]]
|view=Main_Page/featured
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Polls and Voting
|color=#02b70c
|id=poll
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Previous Poll Results
|color=#02b70c
|id=results
|content={{:Main_Page/results}}
|view=Main_Page/results
}}
</div>
<div style="float: left; width: 100%; margin: 0px 0px 15px">
{{Featurebox
|Wiki Admins
|color=#02b70c
|id=admins
|content={{:Main_Page/admins}}
|view=Main_Page/admins
}}
</div>
22fd6bdc9f51a4dcd795c344e7c3b8ddbbffcf0c
Main Page/disambig
0
89
323
2020-05-28T02:36:58Z
Jaswacker
30585766
Created page with "<div style="margin:.5em 1em .5em 1em;padding:.5em;background:#f7f8ff;border:thin solid #aaa;text-align:left;">''Omnipedia is the unofficial [[Ben 10]] wiki and knowledge datab..."
wikitext
text/x-wiki
<div style="margin:.5em 1em .5em 1em;padding:.5em;background:#f7f8ff;border:thin solid #aaa;text-align:left;">''Omnipedia is the unofficial [[Ben 10]] wiki and knowledge database of '''[[Special:Statistics|{{NUMBEROFARTICLES}}]]''' articles that anyone can edit or add to! <span style="font-size:95%;">
</div>
<noinclude>[[Category: Main Page templates]]</noinclude>
67314a51d097e18979f61cd280991b05524476eb
324
323
2020-05-28T02:38:16Z
Jaswacker
30585766
wikitext
text/x-wiki
<div style="margin:.5em 1em .5em 1em;padding:.5em;background:#f7f8ff;border:thin solid #aaa;text-align:left;">'''''Omnipedia''' is the unofficial [[Ben 10]] wiki and knowledge database of '''[[Special:Statistics|{{NUMBEROFARTICLES}}]]''' articles that anyone can edit or add to! <span style="font-size:95%;">
</div>
<noinclude>[[Category: Main Page templates]]</noinclude>
6f052abbb80da0a38010f98b4daf1d6381e237bd
325
324
2020-05-28T02:39:16Z
Jaswacker
30585766
wikitext
text/x-wiki
<div style="margin-left:auto;margin-right:auto;padding:.5em;background:#f7f8ff;border:thin solid #aaa;text-align:left;">'''''Omnipedia''' is the unofficial [[Ben 10]] wiki and knowledge database of '''[[Special:Statistics|{{NUMBEROFARTICLES}}]]''' articles that anyone can edit or add to! <span style="font-size:95%;">
</div>
<noinclude>[[Category: Main Page templates]]</noinclude>
cb1893d706cb4abd4f2d9f58be596eb45bbb494f
326
325
2020-05-28T02:40:01Z
Jaswacker
30585766
Undo revision 325 by [[Special:Contributions/Jaswacker|Jaswacker]] ([[User talk:Jaswacker|talk]])
wikitext
text/x-wiki
<div style="text-align:center;margin:.5em 1em .5em 1em;padding:.5em;background:#f7f8ff;border:thin solid #aaa;text-align:left;">'''''Omnipedia''' is the unofficial [[Ben 10]] wiki and knowledge database of '''[[Special:Statistics|{{NUMBEROFARTICLES}}]]''' articles that anyone can edit or add to! <span style="font-size:95%;">
</div>
<noinclude>[[Category: Main Page templates]]</noinclude>
bd3f9717f428affebc88765846ef5f7d973a6c3d
327
326
2020-05-28T02:41:55Z
Jaswacker
30585766
wikitext
text/x-wiki
<div style="margin:.5em 1em .5em 1em;padding:.5em;background:#f7f8ff;border:thin solid #aaa;text-align:center;">'''''Omnipedia''' is the unofficial [[Ben 10]] wiki and knowledge database of '''[[Special:Statistics|{{NUMBEROFARTICLES}}]]''' articles that anyone can edit or add to! <span style="font-size:95%;">
</div>
<noinclude>[[Category: Main Page templates]]</noinclude>
dd4c9746f067de8e5a733ba8aef13c38da41871d
Main Page/series
0
60
331
245
2020-05-28T02:45:25Z
Jaswacker
30585766
Protected "[[Main Page/series]]": High traffic page ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))
wikitext
text/x-wiki
<div align="center">
{|cellpadding="5" cellspacing="0" width="100%"
|colspan="2" style="border-bottom:1px solid #ffffff" align="center" valign="top"|
[[File:originalserieslogo.png|100px|link=Ben 10 (2005)]]<br>
'''''[[Ben 10 (2005)]]'''''
|-
|style="border-bottom:1px solid #ffffff;" align="center" valign="top" width="50%"|
[[File:alienforcelogo.png|100px|link=Ben 10: Alien Force]]<br>
'''''[[Ben 10: Alien Force]]'''''
|style="border-bottom:1px solid #ffffff; border-left:1px solid #ffffff" align="center" valign="top" width="50%"|
[[File:ultimatealienlogo.png|100px|link=Ben 10: Ultimate Alien]]<br>
'''''[[Ben 10: Ultimate Alien]]'''''<br>
|-
|style="border-bottom:1px solid #ffffff;" align="center" valign="top" width="50%"|
[[File:omniverselogo.png|100px|link=Ben 10: Omniverse]]<br>
'''''[[Ben 10: Omniverse]]'''''
|style="border-bottom:1px solid #ffffff; border-left:1px solid #ffffff" align="center" valign="top" width="50%"|
[[File:rebootlogo.png|100px|link=Ben 10 (Reboot)]]<br>
'''''[[Ben 10 (2016)]]'''''<br>
|}</div>
<br></br>
71d2ec8ed89d7e065641554400ae2ae437392882
Main Page/featured
0
83
332
288
2020-05-28T02:45:31Z
Jaswacker
30585766
Protected "[[Main Page/featured]]": High traffic page ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))
wikitext
text/x-wiki
<div style="float:right;margin-left:1em">
[[File:placeholder775.png|200px|]]
</div>
'''[[Prisoner 775]]''' is a damaged, vengeful being who had his whole fatherly life changed. Being a banished rebel and being imprisoned for 50 years drove him down a line of depression and violent tendencies. He was apart of a failed revolution on his home planet, which resulted in the death of his family.
Being exiled from his homeworld by an oppressive dictator, Prisoner 775 found himself crashlanding on [[Earth]] where he was soon held captive by the secret [[Area 51]], who held him on the false assumption of being an intergalactic terrorist.
<p></p>
'''[[Prisonner 775|continued...]]'''
<noinclude>
[[Category: Main Page templates]]
</noinclude>
54470b877b8c36a287de0545e9ea52dc34cc70b2
Main Page/fundamentals
0
61
333
280
2020-05-28T02:45:39Z
Jaswacker
30585766
Protected "[[Main Page/fundamentals]]": High traffic page ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))
wikitext
text/x-wiki
<center>'''New to ''Ben 10''? Start here!'''</center>
{|cellpadding="0" cellspacing="0" style="margin:auto;"
|-
|style="padding:.5em 1em 0 1em;"|'''[[Ben 10|Cartoons]]'''
|style="padding:.5em 1em 0 1em;"|'''[[Continuity]]'''
|-
|style="padding:0 1em;"|'''[[Movies]]'''
|style="padding:0 1em;"|'''[[Toys]]'''
|-
|style="padding:0 1em;"|'''[[Heroes|Characters]]'''
|style="padding:0 1em;"|'''[[Video Games]]'''
|-
|style="padding:0 1em;"|'''[[Transformations]]'''
|style="padding:0 1em;"|'''[[Comics]]'''
|-
|style="padding:0 1em .5em 1em;"|'''[[Villains]]'''
|style="padding:0 1em .5em 1em;"|'''[[Fandom]]'''
|}
<noinclude>
[[Category: Main Page templates]]
</noinclude>
65c669b83e76691ac17aaf9f699cd84c6f52f700
Main Page/poll
0
68
335
281
2020-05-28T02:46:04Z
Jaswacker
30585766
Protected "[[Main Page/poll]]": High traffic page ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))
wikitext
text/x-wiki
<center><poll>
This is just a test question
Yes
No
Maybe
</poll></center>
0991e6eab8d2b90a77db9cb8f87e0e7091ece9e9
337
335
2020-05-28T02:46:27Z
Jaswacker
30585766
wikitext
text/x-wiki
<poll>
This is just a test question
Yes
No
Maybe
</poll>
145bc461c0b4d9d0b23517f9917ee5789a9ee91c
339
337
2020-05-28T02:47:08Z
Jaswacker
30585766
wikitext
text/x-wiki
<center>
<poll>
This is just a test question
Yes
No
Maybe
</poll>
</center>
1274986e83461401a854fb686f47e2d4c9565fd7
Main Page/admins
0
90
336
2020-05-28T02:46:14Z
Jaswacker
30585766
Created page with "placeholder. List the admins"
wikitext
text/x-wiki
placeholder. List the admins
d6c3c5d6de13cf915ec4d7a6e1231ce0403a4f4e
338
336
2020-05-28T02:46:37Z
Jaswacker
30585766
Protected "[[Main Page/admins]]": High traffic page ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))
wikitext
text/x-wiki
placeholder. List the admins
d6c3c5d6de13cf915ec4d7a6e1231ce0403a4f4e
Transformations
0
91
342
2020-05-28T03:31:04Z
Jaswacker
30585766
Created page with "{{:Transformations/disambig}} placeholder"
wikitext
text/x-wiki
{{:Transformations/disambig}}
placeholder
323ad9a00b63bf58a1f25f666a65fee595e21897
344
342
2020-05-28T03:33:55Z
Jaswacker
30585766
wikitext
text/x-wiki
{{Transformations/disambig}}
placeholder
ec69d225d3bae565da097bd8deeb8cb337a30dcc
346
344
2020-05-28T03:35:00Z
Jaswacker
30585766
wikitext
text/x-wiki
<span id="esmeral"></span>
{{:Transformations/disambig}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
placeholder
5ae3944afc03cf18d9d39ac4f8988a17fa96e2aa
349
346
2020-05-28T03:37:02Z
Jaswacker
30585766
wikitext
text/x-wiki
<span id="esmeral"></span>
{{:Transformations/disambig}}
placeholder
363c013adf21dd291b72c3379aa50961c6d102e9
352
349
2020-05-28T03:43:37Z
Jaswacker
30585766
Redirected page to [[Transformations (disambiguation)]]
wikitext
text/x-wiki
#REDIRECT [[Transformations (disambiguation)]]
f876dd4d925c1a8f667ca28615c6bc6b567eb133
Ben Tennyson (Prime)
0
93
345
2020-05-28T03:34:23Z
Jaswacker
30585766
Created page with "placeholder!!"
wikitext
text/x-wiki
placeholder!!
99b088e800d2aecc1b2ed827e87bbb434d8e5f8d
357
345
2020-05-28T04:03:34Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
placeholder!!
40799371a42f7ce28640c2090a9f91702515969c
Transformations (Disambiguation)
0
94
350
2020-05-28T03:39:13Z
Jaswacker
30585766
Created page with "this is a big boy placeholder"
wikitext
text/x-wiki
this is a big boy placeholder
b597170421a72aa745b96a1fee3c5c6ddf70cb94
351
350
2020-05-28T03:39:50Z
Jaswacker
30585766
wikitext
text/x-wiki
{{Disambig}}
this is a big boy placeholder
644bab5c9bf29c9a3d241eef3ec5ba7d1c091f39
355
351
2020-05-28T03:51:37Z
Jaswacker
30585766
wikitext
text/x-wiki
{{Disambig}}
*For a full list of [[Ben Tennyson (Prime)|Ben Prime's]] alien transformations, go to [[Transformations/Prime]].
*For a full list of the transformations of [[Ben Tennyson (Reboot)|Ben from the]] [[Ben 10 (2016)|Reboot]], go to [[Transformations/Reboot]].
*placeholder
da92348ca76e6348701530456b577c11848af8f2
Transformations/Prime
0
95
353
2020-05-28T03:44:19Z
Jaswacker
30585766
Created page with "<span id="esmeral"></span> {{:Transformations/Prime/disambig}} placeholder"
wikitext
text/x-wiki
<span id="esmeral"></span>
{{:Transformations/Prime/disambig}}
placeholder
98d1deca3924501bb010bef5e3e7da5eddbc0aa5
358
353
2020-05-28T04:03:44Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
<span id="esmeral"></span>
{{:Transformations/Prime/disambig}}
placeholder
379909fb4f030baa8c62b965f34ee25c6093654a
359
358
2020-05-28T04:03:59Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
<br>
<span id="esmeral"></span>
{{:Transformations/Prime/disambig}}
placeholder
a3771942a9c9d291d6d0f59c630a2b93a0479f14
360
359
2020-05-28T04:04:32Z
Jaswacker
30585766
wikitext
text/x-wiki
<span id="esmeral"></span>
{{:Transformations/Prime/disambig}}
{{trix|ogs|alf|ula|onv}}
placeholder
1bc086f2bfb66bcb85b33efc1447733e526c2c18
361
360
2020-05-28T04:05:14Z
Jaswacker
30585766
wikitext
text/x-wiki
<span id="esmeral"></span>
{{:Transformations/Prime/disambig}}
<br>
{{trix|ogs|alf|ula|onv}}
placeholder
8cadef56291c3f5fda6b844e39f60993744abbe5
362
361
2020-05-28T04:08:11Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
<br/><br>
<span id="esmeral"></span>
{{:Transformations/Prime/disambig}}
placeholder
876925d5881ac9dd0e805334e7d6067469cf5b54
Transformations/Prime/disambig
0
96
354
2020-05-28T03:44:40Z
Jaswacker
30585766
Created page with "<div style="margin:.5em 1em .5em 1em;padding:.5em;background:#f7f8ff;border:thin solid #aaa;text-align:center;">This page is dedicated to the alien transformations of Ben Te..."
wikitext
text/x-wiki
<div style="margin:.5em 1em .5em 1em;padding:.5em;background:#f7f8ff;border:thin solid #aaa;text-align:center;">This page is dedicated to the alien transformations of [[Ben Tennyson (Prime)|Ben Prime]]. To see the transformations of the various other [[Ben Tennyson|Bens]] in the multiverse, see [[Transformations (disambiguation)]]. <span style="font-size:95%;">
</div>
<noinclude>[[Category:Templates]]</noinclude>
0519a1de9cb04c276407566435bfe06d37bcb07b
Category:Disambiguation pages
14
97
356
2020-05-28T03:52:34Z
Jaswacker
30585766
Created blank page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
MediaWiki:Navigation
8
98
363
2020-05-28T04:32:05Z
Jaswacker
30585766
Created page with "NAVIGATION"
wikitext
text/x-wiki
NAVIGATION
013f3266268fd278c241b924322e241056825753
Ben 10 (2005)
0
80
364
230
2020-05-28T04:44:05Z
Carth
30634784
wikitext
text/x-wiki
'''Ben 10''' ''(also known as '''Ben 10 Classic''')'' is an American animated television series created by Man of Action (a group consisting of Joe Casey, Joe Kelly, Duncan Rouleau, and Steven T. Seagle), and is the first installment of the Ben 10 franchise.
e52a35366426671a5a46cc6177c6e4e516ff3fa0
Ben 10
0
99
365
2020-05-28T04:47:11Z
Carth
30634784
Created page with "Ben 10 is a franchise original created by Man of Action and Cartoon Network, spanning across five series since 2005. * Ben 10 (2005-2008) * Ben 10: Alien Force (2008-2010) *..."
wikitext
text/x-wiki
Ben 10 is a franchise original created by Man of Action and Cartoon Network, spanning across five series since 2005.
* Ben 10 (2005-2008)
* Ben 10: Alien Force (2008-2010)
* Ben 10: Ultimate Alien (2010-2012)
* Ben 10: Omniverse (2012-2014)
* Ben 10 (2016-)
408eab929ff4097e163f75158cfd440ab341f08d
Template:Episode
10
104
373
2020-05-29T19:15:25Z
Jaswacker
30585766
Created page with "{{#arraydefine: episodeLinks|{{EpisodeLinks}}|;}} <infobox theme="episode"> <title><default><includeonly>{{#arrayindex: episodeLinks|0}}</includeonly></default></title>..."
wikitext
text/x-wiki
{{#arraydefine: episodeLinks|{{EpisodeLinks}}|;}}
<infobox theme="episode">
<title><default><includeonly>{{#arrayindex: episodeLinks|0}}</includeonly></default></title>
<group layout="horizontal">
<data source="season"><label>Season</label></data>
<data source="episodenumber"><label>Episode</label></data>
<data source="overallnumber"><label>Overall</label></data>
</group>
<image source="image"/>
<group>
<header>Broadcast Information</header>
<data source="airdate"><label>'''Airdate'''</label></data>
<data source="production"><label>'''Production Code'''</label></data>
<data source="viewers"><label>'''Viewers'''</label></data>
</group>
<group>
<header>Credits</header>
<data source="writer"><label>'''Written by'''</label></data>
<data source="director"><label>'''Directed by'''</label></data>
<data source="story"><label>'''Story by'''</label></data>
<data source="script"><label>'''Script by'''</label></data>
<data source="score"><label>'''Score by'''</label></data>
<data source="storyboard"><label>'''Storyboard'''</label></data>
<data source="producer"><label>'''Producer'''</label></data>
<data source="producerex"><label>'''Executive Producer'''</label></data>
<data source="produceras"><label>'''Associate Producer'''</label></data>
<data source="postprod"><label>'''Post Production'''</label></data>
<data source="animation"><label>'''Animation Studio'''</label></data>
</group>
<group layout="horizontal">
<header>[[Episode Guide|<span style="color:white">Episode Guide</span>]]</header>
<data source="previous"><label>'''Previous'''</label><default><includeonly>{{#arrayindex: episodeLinks|1}}</includeonly></default></data>
<data source="next"><label>'''Next'''</label><default><includeonly>{{#arrayindex: episodeLinks|2}}</includeonly></default></data>
</group>
</infobox>
<noinclude>
== Usage & preview ==
Type in this:
<pre>
{{Episode
|season=PLACEHOLDER2.png
|episodenumber=PLACEHOLDER2.png
|overallnumber=PLACEHOLDER2.png
|image=PLACEHOLDER2.png
|airdate=PLACEHOLDER2.png
|production=PLACEHOLDER2.png
|viewers=PLACEHOLDER2.png
|writer=PLACEHOLDER2.png
|director=PLACEHOLDER2.png
|story=PLACEHOLDER2.png
|script=PLACEHOLDER2.png
|score=PLACEHOLDER2.png
|storyboard=PLACEHOLDER2.png
|producer=PLACEHOLDER2.png
|producerex=PLACEHOLDER2.png
|produceras=PLACEHOLDER2.png
|postprod=PLACEHOLDER2.png
|animation=PLACEHOLDER2.png
}}
</pre>
to see this:
{{Episode
|season=PLACEHOLDER2.png
|episodenumber=PLACEHOLDER2.png
|overallnumber=PLACEHOLDER2.png
|image=PLACEHOLDER2.png
|airdate=PLACEHOLDER2.png
|production=PLACEHOLDER2.png
|viewers=PLACEHOLDER2.png
|writer=PLACEHOLDER2.png
|director=PLACEHOLDER2.png
|story=PLACEHOLDER2.png
|script=PLACEHOLDER2.png
|score=PLACEHOLDER2.png
|storyboard=PLACEHOLDER2.png
|producer=PLACEHOLDER2.png
|producerex=PLACEHOLDER2.png
|produceras=PLACEHOLDER2.png
|postprod=PLACEHOLDER2.png
|animation=PLACEHOLDER2.png
}}
[{{fullurl:{{ns:Template}}:{{PAGENAME}}}}?action=purge Click here to refresh the preview above]
[[Category:Templates]]
</noinclude>
79d815b0acf513a90792c1f1e406b8ef18984198
374
373
2020-05-29T19:16:16Z
Jaswacker
30585766
wikitext
text/x-wiki
{{#arraydefine: episodeLinks|{{EpisodeLinks}}|;}}
<infobox theme="episode">
<title><default><includeonly>{{#arrayindex: episodeLinks|0}}</includeonly></default></title>
<group layout="horizontal">
<data source="season"><label>Season</label></data>
<data source="episodenumber"><label>Episode</label></data>
<data source="overallnumber"><label>Overall</label></data>
</group>
<image source="image"/>
<group>
<header>Broadcast Information</header>
<data source="airdate"><label>'''Airdate'''</label></data>
<data source="production"><label>'''Production Code'''</label></data>
<data source="viewers"><label>'''Viewers'''</label></data>
</group>
<group>
<header>Credits</header>
<data source="writer"><label>'''Written by'''</label></data>
<data source="director"><label>'''Directed by'''</label></data>
<data source="story"><label>'''Story by'''</label></data>
<data source="script"><label>'''Script by'''</label></data>
<data source="score"><label>'''Score by'''</label></data>
<data source="storyboard"><label>'''Storyboard'''</label></data>
<data source="producer"><label>'''Producer'''</label></data>
<data source="producerex"><label>'''Executive Producer'''</label></data>
<data source="produceras"><label>'''Associate Producer'''</label></data>
<data source="postprod"><label>'''Post Production'''</label></data>
<data source="animation"><label>'''Animation Studio'''</label></data>
</group>
<group layout="horizontal">
<header>[[Episode Guide|<span style="color:white">Episode Guide</span>]]</header>
<data source="previous"><label>'''Previous'''</label><default><includeonly>{{#arrayindex: episodeLinks|1}}</includeonly></default></data>
<data source="next"><label>'''Next'''</label><default><includeonly>{{#arrayindex: episodeLinks|2}}</includeonly></default></data>
</group>
</infobox>
<noinclude>
== Usage & preview ==
Type in this:
<pre>
{{Episode
|season=PLACEHOLDER2.png
|episodenumber=PLACEHOLDER2.png
|overallnumber=PLACEHOLDER2.png
|image=PLACEHOLDER2.png
|airdate=PLACEHOLDER2.png
|production=PLACEHOLDER2.png
|viewers=PLACEHOLDER2.png
|writer=PLACEHOLDER2.png
|director=PLACEHOLDER2.png
|story=PLACEHOLDER2.png
|script=PLACEHOLDER2.png
|score=PLACEHOLDER2.png
|storyboard=PLACEHOLDER2.png
|producer=PLACEHOLDER2.png
|producerex=PLACEHOLDER2.png
|produceras=PLACEHOLDER2.png
|postprod=PLACEHOLDER2.png
|animation=PLACEHOLDER2.png
}}
</pre>
to see this:
{{Episode
|season=PLACEHOLDER2.png
|episodenumber=PLACEHOLDER2.png
|overallnumber=PLACEHOLDER2.png
|image=PLACEHOLDER2.png
|airdate=PLACEHOLDER2.png
|production=PLACEHOLDER2.png
|viewers=PLACEHOLDER2.png
|writer=PLACEHOLDER2.png
|director=PLACEHOLDER2.png
|story=PLACEHOLDER2.png
|script=PLACEHOLDER2.png
|score=PLACEHOLDER2.png
|storyboard=PLACEHOLDER2.png
|producer=PLACEHOLDER2.png
|producerex=PLACEHOLDER2.png
|produceras=PLACEHOLDER2.png
|postprod=PLACEHOLDER2.png
|animation=PLACEHOLDER2.png
}}
[[Category:Templates]]
</noinclude>
03ae4f7855cc21eb8dfcc7caf974f0fde2b9ccb3
378
374
2020-05-29T19:29:21Z
Jaswacker
30585766
Replaced content with "placeholder"
wikitext
text/x-wiki
placeholder
ff55435345834a3fe224936776c2aa15f6ed5358
Template:Voiceactor
10
106
376
2020-05-29T19:18:58Z
Jaswacker
30585766
Created page with "<includeonly>:''Voice actor:'' {{{1}}}{{#if: {{{2|}}}|, <span class="ocreditspan">{{{2}}}</span>}}</includeonly><noinclude> '''<nowiki>{{voiceactor}}</nowiki>''' creates fly-..."
wikitext
text/x-wiki
<includeonly>:''Voice actor:'' {{{1}}}{{#if: {{{2|}}}|, <span class="ocreditspan">{{{2}}}</span>}}</includeonly><noinclude>
'''<nowiki>{{voiceactor}}</nowiki>''' creates fly-out voice actor lists, hiding the non English/Japanese voice actors until the user clicks on the "More" link.
<nowiki>{{voiceactor </nowiki><span style="color:red;">|</span><nowiki> [[Scott McNeil]] (English), [[Masahiko Tanaka]] (Japanese) </nowiki><span style="color:red;">|</span><nowiki> [[Manny Manos]] (Welsh) }}</nowiki>
{{voiceactor|[[Scott McNeil]] (English), [[Masahiko Tanaka]] (Japanese)|[[Manny Manos]] (Welsh)}}
"more" appears if there's a second block of "lesser" voice actors.
<nowiki>{{voiceactor </nowiki><span style="color:red;">|</span><nowiki> [[Scott McNeil]] (English) }}</nowiki>
{{voiceactor|[[Scott McNeil]] (English)}}
[[Category: Templates]]</noinclude>
395256ed56a9987b7e5014a0353b490bb637a6da
MediaWiki:Common.js
8
2
377
56
2020-05-29T19:23:49Z
Jaswacker
30585766
javascript
text/javascript
/* Any JavaScript here will be loaded for all users on every page load. */
/**
* JS Tab System, jacked and hacked from the jsprefs in wikibits.js
*
* Original code by Dantman
* Refactored a bit by Jack Phoenix on 11 April 2014
* Support for linking to a particular tab by MatmaRex on 30 December 2016.
* @note Should be rewritten to properly use jQuery like how mediawiki.special.preferences.js does.
*/
var TabSystem = {
/**
* @property {boolean}
* Is the user's browser a KHTML-based one (usually, but not always, Konqueror)?
*/
isKHTML: ( navigator.vendor == 'KDE' || ( document.childNodes && !document.all && !navigator.taintEnabled ) ),
/**
* @property {boolean}
* Is the user's browser Opera?
*/
isOpera: navigator.userAgent.toLowerCase().indexOf( 'opera' ) != -1,
/*
Written by Jonathan Snook, http://www.snook.ca/jonathan
Add-ons by Robert Nyman, http://www.robertnyman.com
Author says "The credit comment is all it takes, no license. Go crazy with it!:-)"
From http://www.robertnyman.com/2005/11/07/the-ultimate-getelementsbyclassname/
*/
getElementsByClassName: function( oElm, strTagName, oClassNames ) {
var arrReturnElements = [];
if ( typeof oElm.getElementsByClassName == 'function' ) {
/* Use a native implementation where possible FF3, Saf3.2, Opera 9.5 */
var arrNativeReturn = oElm.getElementsByClassName( oClassNames );
if ( strTagName == '*' ) {
return arrNativeReturn;
}
for ( var h = 0; h < arrNativeReturn.length; h++ ) {
if ( arrNativeReturn[h].tagName.toLowerCase() == strTagName.toLowerCase() ) {
arrReturnElements[arrReturnElements.length] = arrNativeReturn[h];
}
}
return arrReturnElements;
}
var arrElements = ( strTagName == '*' && oElm.all ) ? oElm.all : oElm.getElementsByTagName( strTagName );
var arrRegExpClassNames = [];
if ( typeof oClassNames == 'object' ) {
for ( var i = 0; i < oClassNames.length; i++ ) {
arrRegExpClassNames[arrRegExpClassNames.length] =
new RegExp( "(^|\\s)" + oClassNames[i].replace( /\-/g, "\\-" ) + "(\\s|$)" );
}
} else {
arrRegExpClassNames[arrRegExpClassNames.length] =
new RegExp( "(^|\\s)" + oClassNames.replace( /\-/g, "\\-" ) + "(\\s|$)" );
}
var oElement;
var bMatchesAll;
for ( var j = 0; j < arrElements.length; j++ ) {
oElement = arrElements[j];
bMatchesAll = true;
for ( var k = 0; k < arrRegExpClassNames.length; k++ ) {
if ( !arrRegExpClassNames[k].test( oElement.className ) ) {
bMatchesAll = false;
break;
}
}
if ( bMatchesAll ) {
arrReturnElements[arrReturnElements.length] = oElement;
}
}
return arrReturnElements;
},
/**
* Main function that performs all the magic on all div elements that have
* class="tab" and are inside a div that has class="tabcontainer".
*/
main: function() {
var tabcontainers = TabSystem.getElementsByClassName( document, 'div', 'tabcontainer' );
for ( var tc = 0; tc < tabcontainers.length; tc++ ) {
if ( !tabcontainers[tc] || !document.createElement ) {
return;
}
if ( tabcontainers[tc].nodeName.toLowerCase() == 'a' ) {
return; // Occasional IE problem
}
tabcontainers[tc].className += ' jstabs';
var sections = [];
var children = tabcontainers[tc].childNodes;
var seci = 0;
for ( var i = 0; i < children.length; i++ ) {
if ( children[i].className && children[i].className.match( /tab/i ) ) {
children[i].id = 'tabsection-' + seci + '-' + tc;
children[i].className += ' tabsection';
// Opera and KHTML-based browsers get a special class
if ( TabSystem.isOpera || TabSystem.isKHTML ) {
children[i].className += ' tabsection operatabsection';
}
var legends = TabSystem.getElementsByClassName( children[i], 'div', 'tab' );
sections[seci] = {};
legends[0].className = 'mainTab';
if ( legends[0] && legends[0].firstChild.nodeValue ) {
sections[seci].text = legends[0].firstChild.nodeValue;
} else {
sections[seci].text = '# ' + seci;
}
sections[seci].secid = children[i].id;
seci++;
if ( sections.length != 1 ) {
children[i].style.display = 'none';
} else {
var selectedid = children[i].id;
}
}
}
var toc = document.createElement( 'ul' );
toc.className = 'tabtoc';
toc.id = 'tabtoc-' + tc;
toc.selectedid = selectedid;
for ( i = 0; i < sections.length; i++ ) {
var li = document.createElement( 'li' );
if ( i === 0 ) {
li.className = 'selected';
}
var a = document.createElement( 'a' );
a.href = '#' + sections[i].secid;
a.appendChild( document.createTextNode( sections[i].text ) );
a.secid = sections[i].secid;
li.appendChild( a );
toc.appendChild( li );
// Capture current value of variables in the closure
( function ( i, a ) {
$( window ).on( 'hashchange', function () {
if ( location.hash === '#' + sections[i].secid ) {
TabSystem.uncoverTabSection( toc, a );
}
} )
if ( location.hash === '#' + sections[i].secid ) {
TabSystem.uncoverTabSection( toc, a );
}
} )( i, a );
}
tabcontainers[tc].parentNode.insertBefore( toc, tabcontainers[tc] );
}
},
/**
* Show the contents of a tab section when the user clicks on the tab.
*
* @return {boolean} Always false
*/
uncoverTabSection: function( ul, a ) {
var oldsecid = ul.selectedid;
var newsec = document.getElementById( a.secid );
if ( oldsecid != a.secid ) {
document.getElementById( oldsecid ).style.display = 'none';
newsec.style.display = 'block';
ul.selectedid = a.secid;
var lis = ul.getElementsByTagName( 'li' );
for ( var i = 0; i < lis.length; i++ ) {
lis[i].className = '';
}
a.parentNode.className = 'selected';
}
return false;
}
};
// Attach the onload handler using jQuery.
$( function() {
TabSystem.main();
} );
/* Blatantly based on Wookiepedia's ShowEras */
/* Used for the faction icon template*/
/* That template generates a div that contains another div, which itself contains */
/* the image and link which make up the icon. The id of the main div is */
/* which is what then gets passed into this function, is 'title-factionicons' */
/* This function copies a div tag with the passed in id, puts the copy */
/* before the page title bar h1 tag, and makes the copy visible. */
/* The main div is expected to have it's 'display' CSS attribute set to none to hide it */
/* in the main portion of the page. */
function showTitles(className) {
//This check seems to be a holdover from Wookiepedia and not functional for us as SKIP_ERAS is not defined anywhere in our code (that I've found so far). Can probably be removed.
if(typeof(SKIP_ERAS) != 'undefined' && SKIP_ERAS)
return;
//Get the HTML element with the id passed in. This element is the div that contains the faction icon.
var titleDiv = document.getElementById(className);
if(titleDiv == null || titleDiv == undefined)
return;
//Make a copy of the Title bar div
var cloneNode = titleDiv.cloneNode(true);
//Get the first h1 tag with a class of 'firstHeading' inside of the div that has the id 'content'.
var firstHeading = $('#content h1.firstHeading')[0];
//Insert the cloned node before the heading.
firstHeading.insertBefore(cloneNode, firstHeading.childNodes[0]);
//Make the cloned node visible
cloneNode.style.display = "block";
}// END showTitles
/* Code for hiding segments */
function hide_block(id) {
document.getElementById(id).style.display = "inline";
document.getElementById(id + "-link").style.display = "none";
}
/* Used for the Hide template, this function inserts the */
/* 'Show Hidden Content' links used by the template and hides */
/* the list markup generated by the template */
function replace_hides() {
$('div.hide').each(
function(blockToHide){
//Create div for the 'Show Hidden Content' link
var hide_link = document.createElement("div");
// Create link
hide_link.innerHTML = "<a href='javascript:hide_block(\"" + blockToHide.getAttribute("id") + "\");' id='" + blockToHide.getAttribute("id") + "-link'><i>Show hidden content.</i></a>";
//Insert the link before the list to be hidden
blockToHide.parentNode.insertBefore(hide_link, blockToHide);
//Hide the list
blockToHide.style.display = "none";
}
);
}
function tfwiki_hooks() {
showTitles('title-trixicons'); //Move faction and other icons to the header bar
replace_hides(); //Insert 'Show Hidden Content' links for the Hide template
}
/* Run on page load */
$(document).ready(tfwiki_hooks);
/* Code for showing/hiding voice actor credits */
function showcredits(num) {
var spantohide=document.getElementById("ocreditl"+num)
spantohide.style.display="none";
var spantoshow=document.getElementById("ocredit"+num)
spantoshow.style.display="inline";
}
function hidecredits(num) {
var spantohide=document.getElementById("ocreditl"+num);
spantohide.style.display="inline";
var spantoshow=document.getElementById("ocredit"+num);
spantoshow.style.display="none";
}
function init_voiceactors(){
var list = document.getElementsByTagName("span");
for (var ii = 0; ii < list.length; ii++) {
if(list[ii].className=="ocreditspan") {
list[ii].innerHTML="<span id=\"ocreditl"+ii+"\"><a href=\"#\" onclick=\"showcredits("+ii+"); return false;\">more»</a></span><span id=\"ocredit"+ii+"\" style=\"display: none\">"+list[ii].innerHTML+" <a href=\"#\" onclick=\"hidecredits("+ii+"); return false;\">«less</a></span>";
}
}
}
hookEvent("load", init_voiceactors);
/* End of code for showing/hiding voice actor credits */
daf56d9cede3e6c218f5f557b2ade6aa9b53adf1
Template:Note
10
108
381
2020-05-29T19:35:03Z
Jaswacker
30585766
Created page with "<includeonly><div class="tt1_graynote">{{{1}}}</div></includeonly><noinclude>It looks like this: {{note|This is some example text that would be in a note. You will note that i..."
wikitext
text/x-wiki
<includeonly><div class="tt1_graynote">{{{1}}}</div></includeonly><noinclude>It looks like this:
{{note|This is some example text that would be in a note. You will note that if you type for long enough, it will wrap around the edge of the page.}}
It takes a single parameter that is the contents of the note. Use in the middle of a paragraph at your own peril.
[[Category:Templates|Note]]</noinclude>
1fbca6fd122f78715f277db3fb1d371533384226
383
381
2020-05-29T19:37:54Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><span style="font-size:10px;background-color:#EEEEEE;border:none;padding: 0 5px 0 5px;">'''Note:''' {{1}}}</span></includeonly>It looks like this:
{{note|This is some example text that would be in a note. You will note that if you type for long enough, it will wrap around the edge of the page.}}
It takes a single parameter that is the contents of the note. Use in the middle of a paragraph at your own peril.
[[Category:Templates]]</noinclude>
3bc56c8dca57865689181cbaa345f2f203d3ce99
384
383
2020-05-29T19:38:35Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><span style="font-size:10px;background-color:#EEEEEE;border:none;padding: 0 5px 0 5px;">'''Note:''' {{1}}}</span></includeonly>
It looks like this:
{{note|This is some example text that would be in a note. You will note that if you type for long enough, it will wrap around the edge of the page.}}
It takes a single parameter that is the contents of the note. Use in the middle of a paragraph at your own peril.
[[Category:Templates]]</noinclude>
6f1ae5965e26a807d51d60043e57056a1b0e7988
385
384
2020-05-29T19:39:42Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div style="width: 90%; text-align: center;"><div style="background-color:#efefef; border: 2px solid #eeeeee; padding: 2px; width: 100%; text-align: left;">'''Note:''' ''{{{1}}}''</div></div></includeonly><noinclude>
It looks like this:
{{note|This is some example text that would be in a note. You will note that if you type for long enough, it will wrap around the edge of the page.}}
It takes a single parameter that is the contents of the note. Use in the middle of a paragraph at your own peril.
[[Category:Templates]]</noinclude>
79193faf0b2f4cdde4cf66573ab05aec9427d9c7
Template:Notebook
10
109
382
2020-05-29T19:35:32Z
Jaswacker
30585766
Created page with "<includeonly>{{note|Events from [[Comics]] or books are in italics.}}</includeonly><noinclude> This template may appear at the top of a character's history section to denote t..."
wikitext
text/x-wiki
<includeonly>{{note|Events from [[Comics]] or books are in italics.}}</includeonly><noinclude>
This template may appear at the top of a character's history section to denote the inclusion of events and information from comics or books.
It looks like this:
{{notebook}}
It takes no parameters.
[[Category:Templates]]</noinclude>
00cca435810912e94a5c3b968bf81ddc5556e1f2
Template:Storylink
10
110
386
2020-05-29T19:41:19Z
Jaswacker
30585766
Created page with "<includeonly><span class="tt1_storylink">[[{{{1}}}|{{{2|{{{1}}}}}}]]</span></includeonly><noinclude> This template is intended for use in fiction sections, allowing for cross-..."
wikitext
text/x-wiki
<includeonly><span class="tt1_storylink">[[{{{1}}}|{{{2|{{{1}}}}}}]]</span></includeonly><noinclude>
This template is intended for use in fiction sections, allowing for cross-references to the source of the history being discussed, without needing to break the flow of the story or use footnotes.
In non-fiction sections, it's better to refer to the work of fiction normally, e.g., "The last appearance of Bumblebee's Pretender shell is in the comic '[[Dark Creation]]'."
This template accepts two arguments, the first should be the article being linked to, and the second is an optional description which will appear as the link text. If the second argument is omitted, the text of the link will default to the name of the article being referenced.
:<tt><nowiki>{{Storylink|King of the Hill|Marvel US #27}}</nowiki></tt>
:<tt><nowiki>{{Storylink|King of the Hill}}</nowiki></tt>
These examples are rendered in the dummy text below, in the same order:
:<div style="background:#ececec">Lorem ipsum dolor sit amet {{Storylink|King of the Hill!|Marvel US #27}}, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. {{Storylink|King of the Hill!}}</div>
[[Category:Fiction section templates]]
</noinclude>
303a587497a05c27a12903628427232f9d89e55e
387
386
2020-05-29T19:41:38Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><span class="tt1_storylink">[[{{{1}}}|{{{2|{{{1}}}}}}]]</span></includeonly><noinclude>
This template is intended for use in fiction sections, allowing for cross-references to the source of the history being discussed, without needing to break the flow of the story or use footnotes.
In non-fiction sections, it's better to refer to the work of fiction normally, e.g., "The last appearance of Bumblebee's Pretender shell is in the comic '[[Dark Creation]]'."
This template accepts two arguments, the first should be the article being linked to, and the second is an optional description which will appear as the link text. If the second argument is omitted, the text of the link will default to the name of the article being referenced.
:<tt><nowiki>{{Storylink|King of the Hill|Marvel US #27}}</nowiki></tt>
:<tt><nowiki>{{Storylink|King of the Hill}}</nowiki></tt>
These examples are rendered in the dummy text below, in the same order:
:<div style="background:#ececec">Lorem ipsum dolor sit amet {{Storylink|King of the Hill!|Marvel US #27}}, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. {{Storylink|King of the Hill!}}</div>
[[Category:Templates]]
</noinclude>
b8757b65afd18ca305d74249813b99819e0d3cc5
MediaWiki:Common.css
8
3
388
270
2020-05-29T19:42:19Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:.5em;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(/mediawiki/images2/2/26/Allsparkstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
28a2a7d2a107499e45a12e8c2417bed7665b73f3
419
388
2020-05-29T20:51:16Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:.5em;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(/mediawiki/images2/2/26/Allsparkstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
79fc35f1cc0cd90fabaf6f7a7b9e4d841b18ee16
420
419
2020-05-29T20:51:42Z
Jaswacker
30585766
Undo revision 419 by [[Special:Contributions/Jaswacker|Jaswacker]] ([[User talk:Jaswacker|talk]])
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:.5em;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(/mediawiki/images2/2/26/Allsparkstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
28a2a7d2a107499e45a12e8c2417bed7665b73f3
Template:Messagebox
10
111
389
2020-05-29T19:57:49Z
Jaswacker
30585766
Created page with "<includeonly><center> {| cellspacing="0" style="{{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}" {{#ifeq:{{{print|false}}}|false|class="nopri..."
wikitext
text/x-wiki
<includeonly><center>
{| cellspacing="0" style="{{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;text-align:right;" |<div style="padding:.5em; background-color:#{{{bgcolor|efefff}}}; border:solid 1px #{{{border|9f9fff}}};text-align:{{{justification|center}}};margin:auto;">{{#if: {{{image_name|}}} |
[[Image:{{{image_name|}}}|left{{ #if: {{{image_width|}}}|{{!}}{{{image_width|}}}px|}}{{ #if: {{{mouseover|}}} |{{!}}{{{mouseover|}}}|}}]] | }}
{{ #if: {{{header|}}} |<span style="font-size:125%;font-weight:900;">{{{header|}}}</span><hr/>|}}
{{{message_text|Your message text goes here. Generally speaking, you should have more than 1 line of text in order to force the thing to lay out correctly.}}}
{{ #if: {{{talkpage|}}}|<small>{{ #if: {{{talkSameLine|}}}| |<br/>}}{{{talkpage|}}} [[:{{TALKPAGENAME}}{{!}}talk page]].</small>|}}
</div>{{#if: {{{bottomtext|}}}|<small>{{{bottomtext|}}}</small>|}}
|}
</center>{{ #if: {{{noCats|}}}||{{{categories|}}}}}</includeonly><noinclude> {{doc}}
[[Category:Template]]</noinclude>
ccd9f3a574199068382d3453775fe0ce74195588
390
389
2020-05-29T19:58:07Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><center>
{| cellspacing="0" style="{{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;text-align:right;" |<div style="padding:.5em; background-color:#{{{bgcolor|efefff}}}; border:solid 1px #{{{border|9f9fff}}};text-align:{{{justification|center}}};margin:auto;">{{#if: {{{image_name|}}} |
[[Image:{{{image_name|}}}|left{{ #if: {{{image_width|}}}|{{!}}{{{image_width|}}}px|}}{{ #if: {{{mouseover|}}} |{{!}}{{{mouseover|}}}|}}]] | }}
{{ #if: {{{header|}}} |<span style="font-size:125%;font-weight:900;">{{{header|}}}</span><hr/>|}}
{{{message_text|Your message text goes here. Generally speaking, you should have more than 1 line of text in order to force the thing to lay out correctly.}}}
{{ #if: {{{talkpage|}}}|<small>{{ #if: {{{talkSameLine|}}}| |<br/>}}{{{talkpage|}}} [[:{{TALKPAGENAME}}{{!}}talk page]].</small>|}}
</div>{{#if: {{{bottomtext|}}}|<small>{{{bottomtext|}}}</small>|}}
|}
</center>{{ #if: {{{noCats|}}}||{{{categories|}}}}}</includeonly><noinclude> {{Template:Messagebox/doc}}
[[Category:Templates]]</noinclude>
4a9754196e660e16017d7fa1eae7d6f4c4b75faf
392
390
2020-05-29T19:59:06Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><center>
{| cellspacing="0" style="{{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;text-align:right;" |<div style="padding:.5em; background-color:#{{{bgcolor|efefff}}}; border:solid 1px #{{{border|9f9fff}}};text-align:{{{justification|center}}};margin:auto;">{{#if: {{{image_name|}}} |
[[Image:{{{image_name|}}}|left{{ #if: {{{image_width|}}}|{{!}}{{{image_width|}}}px|}}{{ #if: {{{mouseover|}}} |{{!}}{{{mouseover|}}}|}}]] | }}
{{ #if: {{{header|}}} |<span style="font-size:125%;font-weight:900;">{{{header|}}}</span><hr/>|}}
{{{message_text|Your message text goes here. Generally speaking, you should have more than 1 line of text in order to force the thing to lay out correctly.}}}
{{ #if: {{{talkpage|}}}|<small>{{ #if: {{{talkSameLine|}}}| |<br/>}}{{{talkpage|}}} [[:{{TALKPAGENAME}}{{!}}talk page]].</small>|}}
</div>{{#if: {{{bottomtext|}}}|<small>{{{bottomtext|}}}</small>|}}
|}
</center>{{ #if: {{{noCats|}}}||{{{categories|}}}}}</includeonly><noinclude>
{{Template:Messagebox/doc}}
[[Category:Templates]]</noinclude>
5e640f4e817f4d7d0bbf28e8436632e4ac9e588e
Template:Messagebox/doc
10
112
391
2020-05-29T19:58:33Z
Jaswacker
30585766
Created page with "{| style="background: transparent; float:left; padding-right:1em;" |<pre>{{Messagebox| |message_text= |header= |image_name= |talkpage= |categories= |mouseover= |image_width= |..."
wikitext
text/x-wiki
{| style="background: transparent; float:left; padding-right:1em;"
|<pre>{{Messagebox|
|message_text=
|header=
|image_name=
|talkpage=
|categories=
|mouseover=
|image_width=
|border=
|bgcolor=
|justification=
|talkSameLine=
|noCats=
|clearall=
|print=true
}}
</pre>
|}
{{Messagebox}}
{{-}}
There is an additional parameter 'bottomtext' that should ''really'' never be used unless you know what you're doing, because its presence is often conditional; it's used for clarifying something.
If you do need to use it, the format usually looks something like this;
'''<tt><nowiki> |bottomtext={{#if: {{{pending|}}}|<b>Decision Pending:</b> {{{pending|}}} |}}</nowiki></tt>'''
==Printing==
By default, this template will not appear when the page is printed. To ''force'' it to appear set '''<tt>print=true</tt>'''.
<noinclude>[[Category: Externalized documentation]]</noinclude>
bdc0ed9edbe13d6f78b788dc7385186608137a6e
Template:Stub
10
113
393
2020-05-29T20:02:44Z
Jaswacker
30585766
Created page with "<br clear="all" />{{messagebox |header=You left a piece out! |message_text=''This article is a [[:Category:Stub|stub]] and is missing information. You can help '''{{SITENAME..."
wikitext
text/x-wiki
<br clear="all" />{{messagebox
|header=You left a piece out!
|message_text=''This article is a [[:Category:Stub|stub]] and is missing information. You can help '''{{SITENAME}}''' by <span class="plainlinks">[{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|action=edit}} expanding it]</span>.''
|image_name=Kup piece.gif
|image_width=80px
|width = 90%
|bottomtext={{#if: {{{1|}}}|'''What's needed:''' {{{1|}}} |}}
}}<includeonly>{{#ifeq:{{NAMESPACE}}|User||[[Category:Stub]]}}</includeonly>
<noinclude>Use this template to mark an article as a [[:Category:Stub|stub]]. Place the template at the bottom of the article. The article will then be automatically added to the stub category.
[[Category:Templates| ]]</noinclude>
df0ac0586d537b627646682a6912e9e854bd230a
394
393
2020-05-29T20:03:19Z
Jaswacker
30585766
wikitext
text/x-wiki
<br clear="all" />{{messagebox
|header=You left a piece out!
|message_text=''This article is a [[:Category:Stub|stub]] and is missing information. You can help '''{{SITENAME}}''' by <span class="plainlinks">[{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|action=edit}} expanding it]</span>.''
|image_name=PLACEHOLDER2.png
|image_width=80px
|width = 90%
|bottomtext={{#if: {{{1|}}}|'''What's needed:''' {{{1|}}} |}}
}}<includeonly>{{#ifeq:{{NAMESPACE}}|User||[[Category:Stub]]}}</includeonly>
<noinclude>Use this template to mark an article as a [[:Category:Stub|stub]]. Place the template at the bottom of the article. The article will then be automatically added to the stub category.
[[Category:Templates| ]]</noinclude>
5367185c58185712d661e0e58af8af10e350cf3c
396
394
2020-05-29T20:09:38Z
Jaswacker
30585766
wikitext
text/x-wiki
<br clear="all" />{{messagebox
|header=It that it? Is this the end?
|message_text=''This article is a [[:Category:Stub|stub]] and is missing information. You can help '''{{SITENAME}}''' by <span class="plainlinks">[{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|action=edit}} expanding it]</span>.''
|image_name=stub_img.png
|image_width=80px
|width = 90%
|bottomtext={{#if: {{{1|}}}|'''What's needed:''' {{{1|}}} |}}
}}<includeonly>{{#ifeq:{{NAMESPACE}}|User||[[Category:Stub]]}}</includeonly>
<noinclude>Use this template to mark an article as a [[:Category:Stub|stub]]. Place the template at the bottom of the article. The article will then be automatically added to the stub category.
[[Category:Templates| ]]</noinclude>
c70820b7713a7eb58d6e5848c6fa65ab7895c1b2
397
396
2020-05-29T20:10:02Z
Jaswacker
30585766
wikitext
text/x-wiki
<br clear="all" />{{messagebox
|header=It that it? Is this the end?
|message_text=''This article is a [[:Category:Stub|stub]] and is missing information. You can help '''{{SITENAME}}''' by <span class="plainlinks">[{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|action=edit}} expanding it]</span>.''
|image_name=stub_img.png
|image_width=80
|width = 90%
|bottomtext={{#if: {{{1|}}}|'''What's needed:''' {{{1|}}} |}}
}}<includeonly>{{#ifeq:{{NAMESPACE}}|User||[[Category:Stub]]}}</includeonly>
<noinclude>Use this template to mark an article as a [[:Category:Stub|stub]]. Place the template at the bottom of the article. The article will then be automatically added to the stub category.
[[Category:Templates| ]]</noinclude>
f5f3555f6c49e1347b477328497e8fa80b7a957f
Category:Stub
14
114
395
2020-05-29T20:07:39Z
Jaswacker
30585766
Created blank page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Stub img.png
6
115
398
2020-05-29T20:18:42Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
399
398
2020-05-29T20:20:49Z
Carth
30634784
Carth uploaded a new version of [[File:Stub img.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
400
399
2020-05-29T20:22:12Z
Carth
30634784
Carth uploaded a new version of [[File:Stub img.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
402
400
2020-05-29T20:23:10Z
Carth
30634784
Carth uploaded a new version of [[File:Stub img.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
404
402
2020-05-29T20:25:13Z
Carth
30634784
Carth uploaded a new version of [[File:Stub img.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
405
404
2020-05-29T20:25:52Z
Carth
30634784
Carth uploaded a new version of [[File:Stub img.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
406
405
2020-05-29T20:26:45Z
Carth
30634784
Carth uploaded a new version of [[File:Stub img.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
407
406
2020-05-29T20:27:48Z
Carth
30634784
Carth uploaded a new version of [[File:Stub img.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
408
407
2020-05-29T20:28:55Z
Carth
30634784
Carth uploaded a new version of [[File:Stub img.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
409
408
2020-05-29T20:29:39Z
Carth
30634784
Carth uploaded a new version of [[File:Stub img.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
410
409
2020-05-29T20:30:10Z
Carth
30634784
Carth uploaded a new version of [[File:Stub img.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
411
410
2020-05-29T20:30:57Z
Carth
30634784
Carth uploaded a new version of [[File:Stub img.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
412
411
2020-05-29T20:32:32Z
Carth
30634784
Carth uploaded a new version of [[File:Stub img.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
413
412
2020-05-29T20:38:48Z
Carth
30634784
Carth uploaded a new version of [[File:Stub img.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
414
413
2020-05-29T20:39:25Z
Carth
30634784
Carth uploaded a new version of [[File:Stub img.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
415
414
2020-05-29T20:40:16Z
Carth
30634784
Carth uploaded a new version of [[File:Stub img.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
416
415
2020-05-29T20:41:42Z
Carth
30634784
Carth uploaded a new version of [[File:Stub img.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
417
416
2020-05-29T20:42:32Z
Carth
30634784
Carth uploaded a new version of [[File:Stub img.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
418
417
2020-05-29T20:43:57Z
Carth
30634784
Carth uploaded a new version of [[File:Stub img.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Upchuck
0
6
401
149
2020-05-29T20:22:52Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
== History ==
=== Original Series ===
{{notebook}}
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
====Toyline====
[[File:image.png|thumb|upright=1.66|caption]]
*'''Name of Toy''' (Series/size, year)
: Description and information
: about the toy
: TOYBIO
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
{{Chargallery}}
71a430bede9f70579af1ab009258fe4a027d8c51
403
401
2020-05-29T20:23:37Z
Jaswacker
30585766
wikitext
text/x-wiki
{{stub}}
{{trix|ogs|alf|ula|onv}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
== History ==
=== Original Series ===
{{notebook}}
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
====Toyline====
[[File:image.png|thumb|upright=1.66|caption]]
*'''Name of Toy''' (Series/size, year)
: Description and information
: about the toy
: TOYBIO
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
{{Chargallery}}
8e772aa1f381c0569d9eb61850649ca7bdc044f7
421
403
2020-05-29T20:55:57Z
Jaswacker
30585766
wikitext
text/x-wiki
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
== History ==
=== Original Series ===
{{notebook}}
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
====Toyline====
[[File:image.png|thumb|upright=1.66|caption]]
*'''Name of Toy''' (Series/size, year)
: Description and information
: about the toy
: TOYBIO
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
{{Chargallery}}
57187f123ebc1ef2eec5a64d2931154088d7cfee
422
421
2020-05-29T20:56:13Z
Jaswacker
30585766
wikitext
text/x-wiki
{{stub}}
{{trix|ogs|alf|ula|onv}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
== History ==
=== Original Series ===
{{notebook}}
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
====Toyline====
[[File:image.png|thumb|upright=1.66|caption]]
*'''Name of Toy''' (Series/size, year)
: Description and information
: about the toy
: TOYBIO
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
{{Chargallery}}
8e772aa1f381c0569d9eb61850649ca7bdc044f7
Upchuck
0
6
423
422
2020-05-29T20:59:34Z
Jaswacker
30585766
/* History */
wikitext
text/x-wiki
{{stub}}
{{trix|ogs|alf|ula|onv}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
====Toyline====
[[File:image.png|thumb|upright=1.66|caption]]
*'''Name of Toy''' (Series/size, year)
: Description and information
: about the toy
: TOYBIO
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
{{Chargallery}}
364c3ae59f269fadce3885a2effc3bfb7e5ed8af
424
423
2020-05-29T21:15:25Z
Jaswacker
30585766
/* Toys */
wikitext
text/x-wiki
{{stub}}
{{trix|ogs|alf|ula|onv}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
====BANDAI Alien Collection====
[[File:PLACEHOLDER2.png|thumb|upright=1.66|caption]]
*'''Upchuck''' (Deluxe, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|toybio}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
{{Chargallery}}
afd02786180267b6f4c008fb4a0a684e1a738591
425
424
2020-05-29T21:16:28Z
Jaswacker
30585766
/* BANDAI Alien Collection */
wikitext
text/x-wiki
{{stub}}
{{trix|ogs|alf|ula|onv}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
====BANDAI Alien Collection====
[[File:PLACEHOLDER2.png|thumb|upright=1|caption]]
*'''Upchuck''' (Deluxe, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|toybio}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
{{Chargallery}}
a0f07f301728eaae12984ab51e4563fbf392c985
426
425
2020-05-29T21:17:01Z
Jaswacker
30585766
/* BANDAI Alien Collection */
wikitext
text/x-wiki
{{stub}}
{{trix|ogs|alf|ula|onv}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
====BANDAI Alien Collection====
[[File:PLACEHOLDER2.png|thumb|upright=.8|caption]]
*'''Upchuck''' (Deluxe, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|toybio}}
[[File:PLACEHOLDER2.png|thumb|upright=.8|caption]]
*'''Upchuck''' (Deluxe, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|toybio}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
{{Chargallery}}
18743b4330490818b869717d59b86cef57f4e18d
427
426
2020-05-29T21:17:29Z
Jaswacker
30585766
/* BANDAI Alien Collection */
wikitext
text/x-wiki
{{stub}}
{{trix|ogs|alf|ula|onv}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
====BANDAI Alien Collection====
[[File:PLACEHOLDER2.png|thumb|upright=.5|caption]]
*'''Upchuck''' (Deluxe, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|toybio}}
[[File:PLACEHOLDER2.png|thumb|upright=.5|caption]]
*'''Upchuck''' (Deluxe, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|toybio}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
{{Chargallery}}
d330a9bf120ccf18be41cee1112655a805cf18d8
428
427
2020-05-29T21:19:11Z
Jaswacker
30585766
/* BANDAI Alien Collection */
wikitext
text/x-wiki
{{stub}}
{{trix|ogs|alf|ula|onv}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
====BANDAI Alien Collection====
[[File:PLACEHOLDER2.png|thumb|upright=.5|caption]]
*'''Upchuck''' (Deluxe, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|toybio}}
{{-}}{{anchor|test}}
[[File:PLACEHOLDER2.png|thumb|upright=.5|caption]]
*'''Upchuck''' (Deluxe, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|toybio}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
{{Chargallery}}
e7ca7daffc80e43a5dc9d70d5e4fbea9e669d96c
429
428
2020-05-29T21:21:06Z
Jaswacker
30585766
/* Toys */
wikitext
text/x-wiki
{{stub}}
{{trix|ogs|alf|ula|onv}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
====BANDAI Alien Collection====
[[File:PLACEHOLDER2.png|thumb|upright=.5|caption]]
*'''Upchuck''' (Deluxe, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|upright=.5|caption]]
*'''Upchuck''' (Deluxe, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|toybio}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
{{Chargallery}}
003e33c253f944ba108c885066db10c0fb091093
431
429
2020-05-29T21:22:33Z
Jaswacker
30585766
wikitext
text/x-wiki
{{stub}}
{{-}}
{{trix|ogs|alf|ula|onv}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
====BANDAI Alien Collection====
[[File:PLACEHOLDER2.png|thumb|upright=.5|caption]]
*'''Upchuck''' (Deluxe, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|upright=.5|caption]]
*'''Upchuck''' (Deluxe, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|toybio}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
{{Chargallery}}
7655c794720e910035e641124b8b252b3046baee
432
431
2020-05-29T21:22:59Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{-}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
====BANDAI Alien Collection====
[[File:PLACEHOLDER2.png|thumb|upright=.5|caption]]
*'''Upchuck''' (Deluxe, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|upright=.5|caption]]
*'''Upchuck''' (Deluxe, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|toybio}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
{{Chargallery}}
d005064a6efa489dc7e1a15f50fc73931d97b2cd
433
432
2020-05-29T21:23:22Z
Jaswacker
30585766
/* BANDAI Alien Collection */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{-}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
====BANDAI Alien Collection====
[[File:PLACEHOLDER2.png|thumb|upright=.5|caption]]
*'''Upchuck''' (Deluxe, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|upright=.5|caption]]
*'''Upchuck''' (Deluxe, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|toybio}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
{{Chargallery}}
f2c7d8fab7f4e7ebe26506463c0e0742dccab1c2
434
433
2020-05-29T21:26:45Z
Jaswacker
30585766
/* Toys */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{-}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
[[File:upchuckbandai.jpg|thumb|upright=.5|caption]]
*'''Upchuck''' (BANDAI Alien Collection, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|upright=.5|caption]]
*'''Upchuck''' (Deluxe, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|toybio}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
{{Chargallery}}
6743c245874e7a448e499a4544503fa71738c915
436
434
2020-05-29T21:29:44Z
Jaswacker
30585766
/* Toys */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{-}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
[[File:upchuckbandai.jpg|thumb|width=100|caption]]
*'''Upchuck''' (BANDAI Alien Collection, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|upright=.5|caption]]
*'''Upchuck''' (Deluxe, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|toybio}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
{{Chargallery}}
275154f2c3aa20ae5de0d9bd50dee671544246d5
437
436
2020-05-29T21:31:24Z
Jaswacker
30585766
/* Toys */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{-}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
[[File:upchuckbandai.jpg|thumb|width=100|Mommy, I pooped. Proud of me?]]
*'''Upchuck''' (BANDAI Alien Collection, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=100|caption]]
*'''Upchuck''' (Deluxe, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|toybio}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
{{Chargallery}}
7e8a3d3c5e024dfc8ac3f2d3f467631cc3b71471
438
437
2020-05-29T21:32:01Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{-}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
[[File:upchuckbandai.jpg|thumb|width=100|Mommy, I pooped. Proud of me?]]
*'''Upchuck''' (BANDAI Alien Collection, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=100|caption]]
*'''Upchuck''' (Deluxe, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
{{Chargallery}}
291eef40ef47cd6fe9576153b18ed16027482942
439
438
2020-05-29T21:36:54Z
Jaswacker
30585766
/* Toys */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{-}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
[[File:upchuckbandai.jpg|thumb|width=100|"Mommy, I pooped. Proud of me?"]]
*'''Upchuck''' (BANDAI Alien Collection, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.}}
{{-}}
[[File:battlechucktoy.png|thumb|width=100|"Mommy, I barfed. Proud of me?"]]
*'''Upchuck, Battle Version''' (BANDAI Alien Collection, 2007)
: placeholder
: for new lines
: do this thing
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
{{Chargallery}}
8b82e6c936824251ec07222620e553f5bee69667
441
439
2020-05-29T21:39:38Z
Jaswacker
30585766
/* Toys */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{-}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
[[File:upchuckbandai.jpg|thumb|width=100|"Mommy, I pooped. Proud of me?"]]
*'''Upchuck''' (BANDAI Alien Collection, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.}}
{{-}}
[[File:battlechucktoy.jpg|thumb|width=100|"Mommy, I barfed. Proud of me?"]]
*'''Upchuck, Battle Version''' (BANDAI Alien Collection, 2007)
: placeholder
: for new lines
: do this thing
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
{{Chargallery}}
439dfd17faac2f66fb02ef60d0fe327563fae2b3
442
441
2020-05-29T21:40:34Z
Jaswacker
30585766
/* Toys */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{-}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
[[File:upchuckbandai.jpg|thumb|width=100px|"Mommy, I pooped. Proud of me?"]]
*'''Upchuck''' (BANDAI Alien Collection, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.}}
{{-}}
[[File:battlechucktoy.jpg|thumb|width=100px|"Mommy, I barfed. Proud of me?"]]
*'''Upchuck, Battle Version''' (BANDAI Alien Collection, 2007)
: placeholder
: for new lines
: do this thing
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
{{Chargallery}}
88a0df7a3d184edbbf1c88faff6c1f010b393f7f
443
442
2020-05-29T21:45:56Z
Jaswacker
30585766
/* Toys */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{-}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
[[File:upchuckbandai.jpg|frame|width=100px|"Mommy, I pooped. Proud of me?"]]
*'''Upchuck''' (BANDAI Alien Collection, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.}}
{{-}}
[[File:battlechucktoy.jpg|frame|width=100px|"Mommy, I barfed. Proud of me?"]]
*'''Upchuck, Battle Version''' (BANDAI Alien Collection, 2007)
: placeholder
: for new lines
: do this thing
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
{{Chargallery}}
611c7cae5b5fdf95afeab6e896403bf75108c7c3
444
443
2020-05-29T22:53:55Z
Jaswacker
30585766
/* Toys */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{-}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
[[File:upchuckbandai.jpg|thumb|width=100px|"Mommy, I pooped. Proud of me?"]]
*'''Upchuck''' (BANDAI Alien Collection, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.}}
{{-}}
[[File:battlechucktoy.jpg|thumb|width=100px|"Mommy, I barfed. Proud of me?"]]
*'''Upchuck, Battle Version''' (BANDAI Alien Collection, 2007)
: placeholder
: for new lines
: do this thing
{{quote|Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
{{Chargallery}}
236866e9a8ea962a2583d54d826fe0954e7cdb10
445
444
2020-05-29T22:56:28Z
Jaswacker
30585766
/* Toys */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{-}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
[[File:upchuckbandai.jpg|thumb|upright=1.0|"Mommy, I pooped. Proud of me?"]]
*'''Upchuck''' (BANDAI Alien Collection, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.}}
{{-}}
[[File:battlechucktoy.jpg|thumb|upright=1.0|"Mommy, I barfed. Proud of me?"]]
*'''Upchuck, Battle Version''' (BANDAI Alien Collection, 2007)
: placeholder
: for new lines
: do this thing
{{quote|Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
{{Chargallery}}
7518ed4af5ed5684c8f8adcb26b724b4ce29bea7
446
445
2020-05-29T22:59:41Z
Jaswacker
30585766
/* Toys */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{-}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
[[File:upchuckbandai.jpg|thumb|width=100px|"Mommy, I pooped. Proud of me?"]]
*'''Upchuck''' (BANDAI Alien Collection, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.}}
{{-}}
[[File:battlechucktoy.jpg|thumb|width=100px|"Mommy, I barfed. Proud of me?"]]
*'''Upchuck, Battle Version''' (BANDAI Alien Collection, 2007)
: placeholder
: for new lines
: do this thing
{{quote|Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
{{Chargallery}}
236866e9a8ea962a2583d54d826fe0954e7cdb10
447
446
2020-05-29T23:00:20Z
Jaswacker
30585766
/* Toys */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{-}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
[[File:upchuckbandai.jpg|thumb|upright=1.0|"Mommy, I pooped. Proud of me?"]]
*'''Upchuck''' (BANDAI Alien Collection, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.}}
{{-}}
[[File:battlechucktoy.jpg|thumb|upright=2.0|"Mommy, I barfed. Proud of me?"]]
*'''Upchuck, Battle Version''' (BANDAI Alien Collection, 2007)
: placeholder
: for new lines
: do this thing
{{quote|Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
{{Chargallery}}
e6f0053274e9b91cde8f5fa2a016742d5a95749e
448
447
2020-05-29T23:01:58Z
Jaswacker
30585766
/* Toys */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{-}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
[[File:upchuckbandai.jpg|thumb|width=150px|"Mommy, I pooped. Proud of me?"]]
*'''Upchuck''' (BANDAI Alien Collection, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.}}
{{-}}
[[File:battlechucktoy.jpg|thumb|width=150px|"Mommy, I barfed. Proud of me?"]]
*'''Upchuck, Battle Version''' (BANDAI Alien Collection, 2007)
: placeholder
: for new lines
: do this thing
{{quote|Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
{{Chargallery}}
dd6772bc4dcdc7aa17f57c859e7b3e20999b5d85
449
448
2020-05-29T23:03:47Z
Jaswacker
30585766
/* History */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{-}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
[[File:upchuckbandai.jpg|thumb|width=150px|"Mommy, I pooped. Proud of me?"]]
*'''Upchuck''' (BANDAI Alien Collection, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.}}
{{-}}
[[File:battlechucktoy.jpg|thumb|width=150px|"Mommy, I barfed. Proud of me?"]]
*'''Upchuck, Battle Version''' (BANDAI Alien Collection, 2007)
: placeholder
: for new lines
: do this thing
{{quote|Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
{{Chargallery}}
46fa8f8f7538a6a645daccf330e3a51780a8164b
450
449
2020-05-29T23:05:19Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{-}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
[[File:upchuckbandai.jpg|thumb|width=150px|"Mommy, I pooped. Proud of me?"]]
*'''Upchuck''' (BANDAI Alien Collection, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.}}
{{-}}
[[File:battlechucktoy.jpg|thumb|width=150px|"Mommy, I barfed. Proud of me?"]]
*'''Upchuck, Battle Version''' (BANDAI Alien Collection, 2007)
: placeholder
: for new lines
: do this thing
{{quote|Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
{{Chargallery}}
ff4f3ffd102acc6eec46ba602f74ef9a226767a5
451
450
2020-05-30T02:22:40Z
Jaswacker
30585766
/* Toys */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{-}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:upchuckbandai.jpg|thumb|width=150px|"Mommy, I pooped. Proud of me?"]]
*'''Upchuck''' (Wave 2, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.}}
{{-}}
[[File:battlechucktoy.jpg|thumb|width=150px|"Mommy, I barfed. Proud of me?"]]
*'''Upchuck, Battle Version''' (Wave 3, 2007)
: placeholder
: for new lines
: do this thing
{{quote|Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave #, year)
: Release of Wave 2 Upchuck with the ''Ultimate Alien'' toyline.
{{quote|toybio}}
{{-}}
=== DNA Alien Heroes ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Rocks ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Benwolf and Upchuck''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Planetary Powder Sets ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck Planetary Powder Set''' (year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Alien Force'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Creation Figures ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Murk Upchuck and Gorvan''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Alien Creation Transporter: Upchuck & Clear Heatblast''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Ultimate Alien'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck/Heatblast, Haywire''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Four Arms, Upchuck, & XLR8''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck/Heatblast, Four Arms/Stinkfly, Swampfire/Diamondhead, Goop/Wildmutt''' (Wave 4, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Omniverse'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
{{Chargallery}}
b358945ad46c0ff91f0cecd846ba5e26512c4559
452
451
2020-05-30T02:27:45Z
Jaswacker
30585766
/* BANDAI 4" Alien Collection */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{-}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:upchuckbandai.jpg|thumb|width=150px|"Mommy, I pooped. Proud of me?"]]
*'''Upchuck''' (Wave 2, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|''Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.''}}
{{-}}
[[File:battlechucktoy.jpg|thumb|width=150px|"Mommy, I barfed. Proud of me?"]]
*'''Upchuck, Battle Version''' (Wave 3, 2007)
: placeholder
: for new lines
: do this thing
{{quote|''Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave #, year)
: Release of Wave 2 Upchuck with the ''Ultimate Alien'' toyline.
{{quote|toybio}}
{{-}}
=== DNA Alien Heroes ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Rocks ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Benwolf and Upchuck''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Planetary Powder Sets ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck Planetary Powder Set''' (year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Alien Force'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Creation Figures ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Murk Upchuck and Gorvan''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Alien Creation Transporter: Upchuck & Clear Heatblast''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Ultimate Alien'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck/Heatblast, Haywire''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Four Arms, Upchuck, & XLR8''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck/Heatblast, Four Arms/Stinkfly, Swampfire/Diamondhead, Goop/Wildmutt''' (Wave 4, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Omniverse'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (Original Translation ー ''Anglicization, if needed'')
{{Chargallery}}
53908641c97421bab0f73c172a5bcaf7fc3eddd3
455
452
2020-05-30T02:37:30Z
Jaswacker
30585766
/* Foreign Names */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{-}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:upchuckbandai.jpg|thumb|width=150px|"Mommy, I pooped. Proud of me?"]]
*'''Upchuck''' (Wave 2, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|''Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.''}}
{{-}}
[[File:battlechucktoy.jpg|thumb|width=150px|"Mommy, I barfed. Proud of me?"]]
*'''Upchuck, Battle Version''' (Wave 3, 2007)
: placeholder
: for new lines
: do this thing
{{quote|''Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave #, year)
: Release of Wave 2 Upchuck with the ''Ultimate Alien'' toyline.
{{quote|toybio}}
{{-}}
=== DNA Alien Heroes ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Rocks ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Benwolf and Upchuck''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Planetary Powder Sets ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck Planetary Powder Set''' (year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Alien Force'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Creation Figures ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Murk Upchuck and Gorvan''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Alien Creation Transporter: Upchuck & Clear Heatblast''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Ultimate Alien'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck/Heatblast, Haywire''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Four Arms, Upchuck, & XLR8''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck/Heatblast, Four Arms/Stinkfly, Swampfire/Diamondhead, Goop/Wildmutt''' (Wave 4, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Omniverse'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
bda418651caf0d7c650d1dad4dbabe86a989ce85
458
455
2020-05-30T02:53:14Z
Jaswacker
30585766
/* Toys */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{-}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:upchuckbandai.jpg|thumb|width=150px|"Mommy, I pooped. Proud of me?"]]
*'''Upchuck''' (Wave 2, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|''Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.''}}
{{-}}
[[File:battlechucktoy.jpg|thumb|width=150px|"Mommy, I barfed. Proud of me?"]]
*'''Upchuck, Battle Version''' (Wave 3, 2007)
: placeholder
: for new lines
: do this thing
{{quote|''Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave #, year)
: Release of Wave 2 Upchuck with the ''Ultimate Alien'' toyline.
{{quote|toybio}}
{{-}}
=== DNA Alien Heroes ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Rocks ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Benwolf and Upchuck''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Planetary Powder Sets ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck Planetary Powder Set''' (year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Alien Force'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Creation Figures ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Murk Upchuck and Gorvan''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Alien Creation Transporter: Upchuck & Clear Heatblast''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Ultimate Alien'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck/Heatblast, Haywire''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Four Arms, Upchuck, & XLR8''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck/Heatblast, Four Arms/Stinkfly, Swampfire/Diamondhead, Goop/Wildmutt''' (Wave 4, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== 2" Mini Figures ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
[[File:PLACEHOLDER2.png|thumb|width=150px|clear green variant]]
*'''Upchuck''' (Series #, year)
: toyinfo
{{-}}
=== ''Omniverse'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
580f9d5cf389f3c2e939480024277e25d76c8abb
459
458
2020-05-30T02:53:46Z
Jaswacker
30585766
/* 2" Mini Figures */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{-}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:upchuckbandai.jpg|thumb|width=150px|"Mommy, I pooped. Proud of me?"]]
*'''Upchuck''' (Wave 2, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|''Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.''}}
{{-}}
[[File:battlechucktoy.jpg|thumb|width=150px|"Mommy, I barfed. Proud of me?"]]
*'''Upchuck, Battle Version''' (Wave 3, 2007)
: placeholder
: for new lines
: do this thing
{{quote|''Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave #, year)
: Release of Wave 2 Upchuck with the ''Ultimate Alien'' toyline.
{{quote|toybio}}
{{-}}
=== DNA Alien Heroes ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Rocks ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Benwolf and Upchuck''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Planetary Powder Sets ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck Planetary Powder Set''' (year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Alien Force'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Creation Figures ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Murk Upchuck and Gorvan''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Alien Creation Transporter: Upchuck & Clear Heatblast''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Ultimate Alien'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck/Heatblast, Haywire''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Four Arms, Upchuck, & XLR8''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck/Heatblast, Four Arms/Stinkfly, Swampfire/Diamondhead, Goop/Wildmutt''' (Wave 4, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== 2" Mini Figures ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
[[File:PLACEHOLDER2.png|thumb|width=150px|clear green variant]]
*'''Upchuck''' (Series 3, year)
: toyinfo
{{-}}
=== ''Omniverse'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
e7cdb690038c92fb0399cbaa26dcc89e40741de3
460
459
2020-05-30T02:54:37Z
Jaswacker
30585766
/* 2" Mini Figures */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{-}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:upchuckbandai.jpg|thumb|width=150px|"Mommy, I pooped. Proud of me?"]]
*'''Upchuck''' (Wave 2, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|''Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.''}}
{{-}}
[[File:battlechucktoy.jpg|thumb|width=150px|"Mommy, I barfed. Proud of me?"]]
*'''Upchuck, Battle Version''' (Wave 3, 2007)
: placeholder
: for new lines
: do this thing
{{quote|''Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave #, year)
: Release of Wave 2 Upchuck with the ''Ultimate Alien'' toyline.
{{quote|toybio}}
{{-}}
=== DNA Alien Heroes ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Rocks ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Benwolf and Upchuck''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Planetary Powder Sets ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck Planetary Powder Set''' (year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Alien Force'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Creation Figures ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Murk Upchuck and Gorvan''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Alien Creation Transporter: Upchuck & Clear Heatblast''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Ultimate Alien'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck/Heatblast, Haywire''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Four Arms, Upchuck, & XLR8''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck/Heatblast, Four Arms/Stinkfly, Swampfire/Diamondhead, Goop/Wildmutt''' (Wave 4, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== 2" Mini Figures ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
[[File:PLACEHOLDER2.png|thumb|width=150px|clear green variant]]
*'''Upchuck''', Blind Bag (Series 3, year)
: toyinfo
{{-}}
=== ''Omniverse'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
4df1f5663b75b17c0a71958a112e4d79eca2107f
461
460
2020-05-30T03:01:24Z
Jaswacker
30585766
/* Toys */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{-}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:upchuckbandai.jpg|thumb|width=150px|"Mommy, I pooped. Proud of me?"]]
*'''Upchuck''' (Wave 2, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|''Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.''}}
{{-}}
[[File:battlechucktoy.jpg|thumb|width=150px|"Mommy, I barfed. Proud of me?"]]
*'''Upchuck, Battle Version''' (Wave 3, 2007)
: placeholder
: for new lines
: do this thing
{{quote|''Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave #, year)
: Release of Wave 2 Upchuck with the ''Ultimate Alien'' toyline.
{{quote|toybio}}
{{-}}
=== DNA Alien Heroes ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Rocks ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Benwolf and Upchuck''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Planetary Powder Sets ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck Planetary Powder Set''' (year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Alien Force'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Creation Figures ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Murk Upchuck and Gorvan''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Alien Creation Transporter: Upchuck & Clear Heatblast''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Ultimate Alien'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck/Heatblast, Haywire''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Four Arms, Upchuck, & XLR8''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck/Heatblast, Four Arms/Stinkfly, Swampfire/Diamondhead, Goop/Wildmutt''' (Wave 4, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== 2" Mini Figures ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
[[File:PLACEHOLDER2.png|thumb|width=150px|clear green variant]]
*'''Upchuck''', Blind Bag (Series 3, year)
: toyinfo
{{-}}
=== ''Omniverse'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Role Play ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Omnitrix Challenge (2012)
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
b8d88f9d19d805daebb12dd307ae87658c919140
462
461
2020-05-30T03:03:09Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:upchuckbandai.jpg|thumb|width=150px|"Mommy, I pooped. Proud of me?"]]
*'''Upchuck''' (Wave 2, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|''Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.''}}
{{-}}
[[File:battlechucktoy.jpg|thumb|width=150px|"Mommy, I barfed. Proud of me?"]]
*'''Upchuck, Battle Version''' (Wave 3, 2007)
: placeholder
: for new lines
: do this thing
{{quote|''Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave #, year)
: Release of Wave 2 Upchuck with the ''Ultimate Alien'' toyline.
{{quote|toybio}}
{{-}}
=== DNA Alien Heroes ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Rocks ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Benwolf and Upchuck''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Planetary Powder Sets ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck Planetary Powder Set''' (year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Alien Force'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Creation Figures ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Murk Upchuck and Gorvan''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Alien Creation Transporter: Upchuck & Clear Heatblast''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Ultimate Alien'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck/Heatblast, Haywire''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Four Arms, Upchuck, & XLR8''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck/Heatblast, Four Arms/Stinkfly, Swampfire/Diamondhead, Goop/Wildmutt''' (Wave 4, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== 2" Mini Figures ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
[[File:PLACEHOLDER2.png|thumb|width=150px|clear green variant]]
*'''Upchuck''', Blind Bag (Series 3, year)
: toyinfo
{{-}}
=== ''Omniverse'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Role Play ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Omnitrix Challenge (2012)
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
36c4a3350c491448c4af2721554d2d739ee634f0
465
462
2020-05-30T03:08:13Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Abilities ==
Placeholder, powers.
== Weaknesses ==
Placeholder, weaknesses.
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:upchuckbandai.jpg|thumb|width=150px|"Mommy, I pooped. Proud of me?"]]
*'''Upchuck''' (Wave 2, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|''Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.''}}
{{-}}
[[File:battlechucktoy.jpg|thumb|width=150px|"Mommy, I barfed. Proud of me?"]]
*'''Upchuck, Battle Version''' (Wave 3, 2007)
: placeholder
: for new lines
: do this thing
{{quote|''Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave #, year)
: Release of Wave 2 Upchuck with the ''Ultimate Alien'' toyline.
{{quote|toybio}}
{{-}}
=== DNA Alien Heroes ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Rocks ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Benwolf and Upchuck''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Planetary Powder Sets ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck Planetary Powder Set''' (year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Alien Force'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Creation Figures ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Murk Upchuck and Gorvan''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Alien Creation Transporter: Upchuck & Clear Heatblast''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Ultimate Alien'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck/Heatblast, Haywire''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Four Arms, Upchuck, & XLR8''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck/Heatblast, Four Arms/Stinkfly, Swampfire/Diamondhead, Goop/Wildmutt''' (Wave 4, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== 2" Mini Figures ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
[[File:PLACEHOLDER2.png|thumb|width=150px|clear green variant]]
*'''Upchuck''', Blind Bag (Series 3, year)
: toyinfo
{{-}}
=== ''Omniverse'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Role Play ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Omnitrix Challenge (2012)
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
a7f1c5dd068802d074f360c6238912e838c33b48
468
465
2020-05-30T03:21:33Z
Carth
30634784
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:upchuckbandai.jpg|thumb|width=150px|"Mommy, I pooped. Proud of me?"]]
*'''Upchuck''' (Wave 2, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|''Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.''}}
{{-}}
[[File:battlechucktoy.jpg|thumb|width=150px|"Mommy, I barfed. Proud of me?"]]
*'''Upchuck, Battle Version''' (Wave 3, 2007)
: placeholder
: for new lines
: do this thing
{{quote|''Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave #, year)
: Release of Wave 2 Upchuck with the ''Ultimate Alien'' toyline.
{{quote|toybio}}
{{-}}
=== DNA Alien Heroes ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Rocks ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Benwolf and Upchuck''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Planetary Powder Sets ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck Planetary Powder Set''' (year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Alien Force'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Creation Figures ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Murk Upchuck and Gorvan''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Alien Creation Transporter: Upchuck & Clear Heatblast''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Ultimate Alien'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck/Heatblast, Haywire''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Four Arms, Upchuck, & XLR8''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck/Heatblast, Four Arms/Stinkfly, Swampfire/Diamondhead, Goop/Wildmutt''' (Wave 4, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== 2" Mini Figures ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
[[File:PLACEHOLDER2.png|thumb|width=150px|clear green variant]]
*'''Upchuck''', Blind Bag (Series 3, year)
: toyinfo
{{-}}
=== ''Omniverse'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Upchuck''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Role Play ===
[[File:PLACEHOLDER2.png|thumb|width=150px|caption]]
*'''Omnitrix Challenge (2012)
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
1a754c587e210d0a1867946a148dd1547e125d80
469
468
2020-05-30T03:26:45Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:upchuckbandai.jpg|thumb|width=50px|"Mommy, I pooped. Proud of me?"]]
*'''Upchuck''' (Wave 2, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|''Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.''}}
{{-}}
[[File:battlechucktoy.jpg|thumb|width=50px|"Mommy, I barfed. Proud of me?"]]
*'''Upchuck, Battle Version''' (Wave 3, 2007)
: placeholder
: for new lines
: do this thing
{{quote|''Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=50px|caption]]
*'''Upchuck''' (Wave #, year)
: Release of Wave 2 Upchuck with the ''Ultimate Alien'' toyline.
{{quote|toybio}}
{{-}}
=== DNA Alien Heroes ===
[[File:PLACEHOLDER2.png|thumb|width=50px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Rocks ===
[[File:PLACEHOLDER2.png|thumb|width=50px|caption]]
*'''Benwolf and Upchuck''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Planetary Powder Sets ===
[[File:PLACEHOLDER2.png|thumb|width=50px|caption]]
*'''Upchuck Planetary Powder Set''' (year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Alien Force'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|width=50px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Creation Figures ===
[[File:PLACEHOLDER2.png|thumb|width=50px|caption]]
*'''Murk Upchuck and Gorvan''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=50px|caption]]
*'''Alien Creation Transporter: Upchuck & Clear Heatblast''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Ultimate Alien'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|width=50px|caption]]
*'''Upchuck/Heatblast, Haywire''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=50px|caption]]
*'''Four Arms, Upchuck, & XLR8''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|width=50px|caption]]
*'''Upchuck/Heatblast, Four Arms/Stinkfly, Swampfire/Diamondhead, Goop/Wildmutt''' (Wave 4, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== 2" Mini Figures ===
[[File:PLACEHOLDER2.png|thumb|width=50px|caption]]
[[File:PLACEHOLDER2.png|thumb|width=50px|clear green variant]]
*'''Upchuck''', Blind Bag (Series 3, year)
: toyinfo
{{-}}
=== ''Omniverse'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|width=50px|caption]]
*'''Upchuck''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Role Play ===
[[File:PLACEHOLDER2.png|thumb|width=50px|caption]]
*'''Omnitrix Challenge (2012)
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
f37b96927d3d2c45babdc14a0553793321a5ba40
Template:-
10
116
430
2020-05-29T21:21:53Z
Jaswacker
30585766
Created page with "{{{1|}}}<br clear="all" /><noinclude>This template "clears" both margins; it is often used before a header to make sure that the header will be the full width of the page. ..."
wikitext
text/x-wiki
{{{1|}}}<br clear="all" /><noinclude>This template "clears" both margins; it is often used before a header to make sure that the header will be the full width of the page.
[[Category:Templates]]</noinclude>
30b30975fd7ce42ae8435d0f650ab6cfd1a6962e
File:Upchuckbandai.jpg
6
117
435
2020-05-29T21:27:59Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Battlechucktoy.jpg
6
118
440
2020-05-29T21:37:16Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Template:Voiceactor
10
106
453
376
2020-05-30T02:29:25Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>:''Voice actor:'' {{{1}}}{{#if: {{{2|}}}|, <span class="ocreditspan">{{{2}}}</span>}}</includeonly><noinclude>
'''<nowiki>{{voiceactor}}</nowiki>''' creates fly-out voice actor lists, hiding the non English/Japanese voice actors until the user clicks on the "More" link.
<nowiki>{{voiceactor </nowiki><span style="color:red;">|</span><nowiki> [[Scott McNeil]] (English), [[Masahiko Tanaka]] (Japanese) </nowiki><span style="color:red;">|</span><nowiki> [[Manny Manos]] (Welsh) }}</nowiki>
{{voiceactor|[[Scott McNeil]] (English), [[Masahiko Tanaka]] (Japanese)|[[Manny Manos]] (Welsh)}}
"more" appears if there's a second block of "lesser" voice actors.
<nowiki>{{voiceactor </nowiki><span style="color:red;">|</span><nowiki> [[Scott McNeil]] (English) }}</nowiki>
{{voiceactor|[[Scott McNeil]] (English)}}
{{quote|No more!|[[Hot Rod/Generation 1 cartoon continuity|Hot Rod]]|[[The Transformers: The Movie]]}}
[[Category: Templates]]</noinclude>
d23e153335018bca071af134ca6fd5a9fedb8f5b
MediaWiki:Common.js
8
2
454
377
2020-05-30T02:30:46Z
Jaswacker
30585766
javascript
text/javascript
/* Any JavaScript here will be loaded for all users on every page load. */
/**
* JS Tab System, jacked and hacked from the jsprefs in wikibits.js
*
* Original code by Dantman
* Refactored a bit by Jack Phoenix on 11 April 2014
* Support for linking to a particular tab by MatmaRex on 30 December 2016.
* @note Should be rewritten to properly use jQuery like how mediawiki.special.preferences.js does.
*/
var TabSystem = {
/**
* @property {boolean}
* Is the user's browser a KHTML-based one (usually, but not always, Konqueror)?
*/
isKHTML: ( navigator.vendor == 'KDE' || ( document.childNodes && !document.all && !navigator.taintEnabled ) ),
/**
* @property {boolean}
* Is the user's browser Opera?
*/
isOpera: navigator.userAgent.toLowerCase().indexOf( 'opera' ) != -1,
/*
Written by Jonathan Snook, http://www.snook.ca/jonathan
Add-ons by Robert Nyman, http://www.robertnyman.com
Author says "The credit comment is all it takes, no license. Go crazy with it!:-)"
From http://www.robertnyman.com/2005/11/07/the-ultimate-getelementsbyclassname/
*/
getElementsByClassName: function( oElm, strTagName, oClassNames ) {
var arrReturnElements = [];
if ( typeof oElm.getElementsByClassName == 'function' ) {
/* Use a native implementation where possible FF3, Saf3.2, Opera 9.5 */
var arrNativeReturn = oElm.getElementsByClassName( oClassNames );
if ( strTagName == '*' ) {
return arrNativeReturn;
}
for ( var h = 0; h < arrNativeReturn.length; h++ ) {
if ( arrNativeReturn[h].tagName.toLowerCase() == strTagName.toLowerCase() ) {
arrReturnElements[arrReturnElements.length] = arrNativeReturn[h];
}
}
return arrReturnElements;
}
var arrElements = ( strTagName == '*' && oElm.all ) ? oElm.all : oElm.getElementsByTagName( strTagName );
var arrRegExpClassNames = [];
if ( typeof oClassNames == 'object' ) {
for ( var i = 0; i < oClassNames.length; i++ ) {
arrRegExpClassNames[arrRegExpClassNames.length] =
new RegExp( "(^|\\s)" + oClassNames[i].replace( /\-/g, "\\-" ) + "(\\s|$)" );
}
} else {
arrRegExpClassNames[arrRegExpClassNames.length] =
new RegExp( "(^|\\s)" + oClassNames.replace( /\-/g, "\\-" ) + "(\\s|$)" );
}
var oElement;
var bMatchesAll;
for ( var j = 0; j < arrElements.length; j++ ) {
oElement = arrElements[j];
bMatchesAll = true;
for ( var k = 0; k < arrRegExpClassNames.length; k++ ) {
if ( !arrRegExpClassNames[k].test( oElement.className ) ) {
bMatchesAll = false;
break;
}
}
if ( bMatchesAll ) {
arrReturnElements[arrReturnElements.length] = oElement;
}
}
return arrReturnElements;
},
/**
* Main function that performs all the magic on all div elements that have
* class="tab" and are inside a div that has class="tabcontainer".
*/
main: function() {
var tabcontainers = TabSystem.getElementsByClassName( document, 'div', 'tabcontainer' );
for ( var tc = 0; tc < tabcontainers.length; tc++ ) {
if ( !tabcontainers[tc] || !document.createElement ) {
return;
}
if ( tabcontainers[tc].nodeName.toLowerCase() == 'a' ) {
return; // Occasional IE problem
}
tabcontainers[tc].className += ' jstabs';
var sections = [];
var children = tabcontainers[tc].childNodes;
var seci = 0;
for ( var i = 0; i < children.length; i++ ) {
if ( children[i].className && children[i].className.match( /tab/i ) ) {
children[i].id = 'tabsection-' + seci + '-' + tc;
children[i].className += ' tabsection';
// Opera and KHTML-based browsers get a special class
if ( TabSystem.isOpera || TabSystem.isKHTML ) {
children[i].className += ' tabsection operatabsection';
}
var legends = TabSystem.getElementsByClassName( children[i], 'div', 'tab' );
sections[seci] = {};
legends[0].className = 'mainTab';
if ( legends[0] && legends[0].firstChild.nodeValue ) {
sections[seci].text = legends[0].firstChild.nodeValue;
} else {
sections[seci].text = '# ' + seci;
}
sections[seci].secid = children[i].id;
seci++;
if ( sections.length != 1 ) {
children[i].style.display = 'none';
} else {
var selectedid = children[i].id;
}
}
}
var toc = document.createElement( 'ul' );
toc.className = 'tabtoc';
toc.id = 'tabtoc-' + tc;
toc.selectedid = selectedid;
for ( i = 0; i < sections.length; i++ ) {
var li = document.createElement( 'li' );
if ( i === 0 ) {
li.className = 'selected';
}
var a = document.createElement( 'a' );
a.href = '#' + sections[i].secid;
a.appendChild( document.createTextNode( sections[i].text ) );
a.secid = sections[i].secid;
li.appendChild( a );
toc.appendChild( li );
// Capture current value of variables in the closure
( function ( i, a ) {
$( window ).on( 'hashchange', function () {
if ( location.hash === '#' + sections[i].secid ) {
TabSystem.uncoverTabSection( toc, a );
}
} )
if ( location.hash === '#' + sections[i].secid ) {
TabSystem.uncoverTabSection( toc, a );
}
} )( i, a );
}
tabcontainers[tc].parentNode.insertBefore( toc, tabcontainers[tc] );
}
},
/**
* Show the contents of a tab section when the user clicks on the tab.
*
* @return {boolean} Always false
*/
uncoverTabSection: function( ul, a ) {
var oldsecid = ul.selectedid;
var newsec = document.getElementById( a.secid );
if ( oldsecid != a.secid ) {
document.getElementById( oldsecid ).style.display = 'none';
newsec.style.display = 'block';
ul.selectedid = a.secid;
var lis = ul.getElementsByTagName( 'li' );
for ( var i = 0; i < lis.length; i++ ) {
lis[i].className = '';
}
a.parentNode.className = 'selected';
}
return false;
}
};
// Attach the onload handler using jQuery.
$( function() {
TabSystem.main();
} );
/* Blatantly based on Wookiepedia's ShowEras */
/* Used for the faction icon template*/
/* That template generates a div that contains another div, which itself contains */
/* the image and link which make up the icon. The id of the main div is */
/* which is what then gets passed into this function, is 'title-factionicons' */
/* This function copies a div tag with the passed in id, puts the copy */
/* before the page title bar h1 tag, and makes the copy visible. */
/* The main div is expected to have it's 'display' CSS attribute set to none to hide it */
/* in the main portion of the page. */
function showTitles(className) {
//This check seems to be a holdover from Wookiepedia and not functional for us as SKIP_ERAS is not defined anywhere in our code (that I've found so far). Can probably be removed.
if(typeof(SKIP_ERAS) != 'undefined' && SKIP_ERAS)
return;
//Get the HTML element with the id passed in. This element is the div that contains the faction icon.
var titleDiv = document.getElementById(className);
if(titleDiv == null || titleDiv == undefined)
return;
//Make a copy of the Title bar div
var cloneNode = titleDiv.cloneNode(true);
//Get the first h1 tag with a class of 'firstHeading' inside of the div that has the id 'content'.
var firstHeading = $('#content h1.firstHeading')[0];
//Insert the cloned node before the heading.
firstHeading.insertBefore(cloneNode, firstHeading.childNodes[0]);
//Make the cloned node visible
cloneNode.style.display = "block";
}// END showTitles
/* Code for hiding segments */
function hide_block(id) {
document.getElementById(id).style.display = "inline";
document.getElementById(id + "-link").style.display = "none";
}
/* Used for the Hide template, this function inserts the */
/* 'Show Hidden Content' links used by the template and hides */
/* the list markup generated by the template */
function replace_hides() {
$('div.hide').each(
function(blockToHide){
//Create div for the 'Show Hidden Content' link
var hide_link = document.createElement("div");
// Create link
hide_link.innerHTML = "<a href='javascript:hide_block(\"" + blockToHide.getAttribute("id") + "\");' id='" + blockToHide.getAttribute("id") + "-link'><i>Show hidden content.</i></a>";
//Insert the link before the list to be hidden
blockToHide.parentNode.insertBefore(hide_link, blockToHide);
//Hide the list
blockToHide.style.display = "none";
}
);
}
function tfwiki_hooks() {
showTitles('title-trixicons'); //Move faction and other icons to the header bar
replace_hides(); //Insert 'Show Hidden Content' links for the Hide template
}
/* Run on page load */
$(document).ready(tfwiki_hooks);
/* Code for showing/hiding voice actor credits */
function showcredits(num) {
var spantohide=document.getElementById("ocreditl"+num)
spantohide.style.display="none";
var spantoshow=document.getElementById("ocredit"+num)
spantoshow.style.display="inline";
}
function hidecredits(num) {
var spantohide=document.getElementById("ocreditl"+num);
spantohide.style.display="inline";
var spantoshow=document.getElementById("ocredit"+num);
spantoshow.style.display="none";
}
function init_voiceactors(){
var list = document.getElementsByTagName("span");
for (var ii = 0; ii < list.length; ii++) {
if(list[ii].className=="ocreditspan") {
list[ii].innerHTML="<span id=\"ocreditl"+ii+"\"><a href=\"#\" onclick=\"showcredits("+ii+"); return false;\">more»</a></span><span id=\"ocredit"+ii+"\" style=\"display: none\">"+list[ii].innerHTML+" <a href=\"#\" onclick=\"hidecredits("+ii+"); return false;\">«less</a></span>";
}
}
}
$(init_voiceactors());
/* End of code for showing/hiding voice actor credits */
35ab86487317afbdba80affd7179a647c1b86f5f
Template:Trix/icons
10
12
456
104
2020-05-30T02:49:09Z
111.69.218.155
0
wikitext
text/x-wiki
<includeonly>{{#if:{{{custom|}}}|
{{#tag:imagemap
|Image:{{{custom}}}{{!}}{{{cSize|30px}}}
default [[{{{cLink}}}{{!}}{{{cPretty|{{{cLink}}}}}}]]
desc none
}}|}}<!--
Options
-->{{#if:{{{option|}}}|{{#switch:{{{option}}}
|ogs={{trix/icons_recurs|custom=OGS_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Original Series}}
|non={{trix/icons_recurs|custom=NON_Icon.png|cLink=Continuity#Non-Canon|cPretty=Non-Canon}}
|auu={{trix/icons_recurs|custom=NON_Icon.png|cLink=Continuity#Non-Canon|cPretty=Alternate Universe}}
|alf={{trix/icons_recurs|custom=UAF_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Alien Force}}
|ula={{trix/icons_recurs|custom=UAF_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Alien}}
|abd={{trix/icons_recurs|custom=ABD_Icon.png|cLink=Albedo}}
|ult={{trix/icons_recurs|custom=ULT_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Form}}
|num={{trix/icons_recurs|custom=NUM_Icon.png|cLink=Albedo|cPretty=Ultimate Form}}
|onv={{trix/icons_recurs|custom=ONV_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Omniverse}}
|aso={{trix/icons_recurs|custom=ASO_Icon.png|cLink=Albedo}}
|rum={{trix/icons_recurs|custom=RUM_Icon.png|cLink=Albedo|cPretty=Ultimate Form}}
|b23={{trix/icons_recurs|custom=B23_Icon.png|cLink=Ben Tennyson (Dimension 23)|cPretty=Ben 23}}
|g10={{trix/icons_recurs|custom=G10_Icon.png|cLink=Gwen Tennyson (dimen)|cPretty=Gwen 10}}
|mad={{trix/icons_recurs|custom=MAD_Icon.png|cLink=Mad Ben}}
|bad={{trix/icons_recurs|custom=BAD_Icon.png|cLink=Bad Ben}}
|neg={{trix/icons_recurs|custom=NEG_Icon.png|cLink=Nega Ben}}
|zar={{trix/icons_recurs|custom=ZAR_Icon.png|cLink=Benzarro}}
|rbt={{trix/icons_recurs|custom=RBT_Icon.png|cLink=Ben Tennyson (Reboot)|cPretty=Reboot}}
|fsn={{trix/icons_recurs|custom=FSN_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Fusion Alien}}
|bio={{trix/icons_recurs|custom=BIO_Icon.png|cLink=Ben 10,000 (Omniverse)|cPretty=Fusion Alien}}
|arg={{trix/icons_recurs|custom=ARG_Icon.png|cLink=Argit|cPretty=Argit}}
|nem={{trix/icons_recurs|custom=NEM_Icon.png|cLink=Nemetrix|cPretty=Nemetrix Alien}}
|ant={{trix/icons_recurs|custom=ANT_Icon.png|cLink=Kevin Levin (Reboot)|cPretty=Antitrix Alien}}
|{{{option}}}}}|}}
</includeonly><noinclude>
[[Category:Templates]]
<pre>{{trix/icons_recurs
|custom=ONV_Icon.png
|cLink=Ben Tennyson (Prime)
|cPretty=Omniverse - Mouseover text, if different from the Link
|cSize=30px - Override the default size
}}</pre>
</noinclude>
4f77c5867107b0881f56db8123c94ea4e58f0c35
457
456
2020-05-30T02:50:19Z
2406:E003:E00:2801:4888:C2E1:117D:9D4C
0
wikitext
text/x-wiki
<includeonly>{{#if:{{{custom|}}}|
{{#tag:imagemap
|Image:{{{custom}}}{{!}}{{{cSize|30px}}}
default [[{{{cLink}}}{{!}}{{{cPretty|{{{cLink}}}}}}]]
desc none
}}|}}<!--
Options
-->{{#if:{{{option|}}}|{{#switch:{{{option}}}
|ogs={{trix/icons_recurs|custom=OGS_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Original Series}}
|non={{trix/icons_recurs|custom=NON_Icon.png|cLink=Continuity#Non-Canon|cPretty=Non-Canon}}
|auu={{trix/icons_recurs|custom=NON_Icon.png|cLink=Continuity#Non-Canon|cPretty=Alternate Universe}}
|alf={{trix/icons_recurs|custom=UAF_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Alien Force}}
|ula={{trix/icons_recurs|custom=UAF_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Alien}}
|abd={{trix/icons_recurs|custom=ABD_Icon.png|cLink=Albedo}}
|ult={{trix/icons_recurs|custom=ULT_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Form}}
|num={{trix/icons_recurs|custom=NUM_Icon.png|cLink=Albedo|cPretty=Ultimate Form}}
|onv={{trix/icons_recurs|custom=ONV_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Omniverse}}
|aso={{trix/icons_recurs|custom=ASO_Icon.png|cLink=Albedo}}
|rum={{trix/icons_recurs|custom=RUM_Icon.png|cLink=Albedo|cPretty=Ultimate Form}}
|b23={{trix/icons_recurs|custom=B23_Icon.png|cLink=Ben Tennyson (Dimension 23)|cPretty=Ben 23}}
|g10={{trix/icons_recurs|custom=G10_Icon.png|cLink=Gwen Tennyson (dimen)|cPretty=Gwen 10}}
|mad={{trix/icons_recurs|custom=MAD_Icon.png|cLink=Mad Ben}}
|bad={{trix/icons_recurs|custom=BAD_Icon.png|cLink=Bad Ben}}
|neg={{trix/icons_recurs|custom=NEG_Icon.png|cLink=Nega Ben}}
|zar={{trix/icons_recurs|custom=ZAR_Icon.png|cLink=Benzarro}}
|rbt={{trix/icons_recurs|custom=RBT_Icon.png|cLink=Ben Tennyson (Reboot)|cPretty=Reboot}}
|fsn={{trix/icons_recurs|custom=FSN_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Fusion Alien}}
|bio={{trix/icons_recurs|custom=BIO_Icon.png|cLink=Ben 10,000 (Omniverse)|cPretty=Fusion Alien}}
|arg={{trix/icons_recurs|custom=ARG_Icon.png|cLink=Argit|cPretty=Argit}}
|nem={{trix/icons_recurs|custom=NEM_Icon.png|cLink=Nemetrix|cPretty=Nemetrix Alien}}
|ant={{trix/icons_recurs|custom=ANT_Icon.png|cLink=Kevin Levin (Reboot)|cPretty=Antitrix Alien}}
|{{{option}}}}}|}}</includeonly><noinclude>
[[Category:Templates]]
<pre>{{trix/icons_recurs
|custom=ONV_Icon.png
|cLink=Ben Tennyson (Prime)
|cPretty=Omniverse - Mouseover text, if different from the Link
|cSize=30px - Override the default size
}}</pre>
</noinclude>
929ceae5a0fe0fd1771833a610055a7d1d0744ea
Transformations/Prime
0
95
463
362
2020-05-30T03:03:42Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
<span id="esmeral"></span>
{{:Transformations/Prime/disambig}}
placeholder
379909fb4f030baa8c62b965f34ee25c6093654a
Ben Tennyson (Disambiguation)
0
24
464
146
2020-05-30T03:04:01Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Alternate Versions of Ben Tennyson==
===Future Versions of Ben Tennyson===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Eon|Eon]]
</gallery></center>
===The Greater Multiverse===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Max Tennyson (Gwen 10)|Max Tennyson from "Gwen 10"]]
File:PLACEHOLDER2.png|[[Gwen Tennyson (placeholder dimension)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Dimension 23)|"Ben 23"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (placeholder dimension)|"No-Watch Ben"]]
File:PLACEHOLDER2.png|[[Mad Ben|Mad Ben]]
File:PLACEHOLDER2.png|[[Bad Ben|Bad Ben]]
File:PLACEHOLDER2.png|[[Nega Ben|Nega Ben]]
File:PLACEHOLDER2.png|[[Benzarro|Benzarro]]
File:PLACEHOLDER2.png|[[Argit (placeholder dimension)|"Argit 10"]]
</gallery></center>
===Live Action===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
53201a4781e191978035dcbb21a803b8c10fd304
File:Circuitstrip transparent.png
6
119
466
2020-05-30T03:09:53Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
MediaWiki:Common.css
8
3
467
420
2020-05-30T03:10:50Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:.5em;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(/mediawiki/images2/2/26/Circuitstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
524ed14b1b80fd92786e736a061ae9ff558e5b29
470
467
2020-05-30T03:28:34Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:.5em;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
63780870b7de80fc10b73e3c95571ab45f260067
472
470
2020-05-30T03:33:44Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:0;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
faf23b0e0eefa37a8fa7c1d18974f491aa54ce5a
Ben 10 (2005)/Episodes
0
120
471
2020-05-30T03:32:24Z
Jaswacker
30585766
Created page with "placeholder"
wikitext
text/x-wiki
placeholder
ff55435345834a3fe224936776c2aa15f6ed5358
File:Circuitstrip transparent.png
6
119
473
466
2020-05-30T03:36:10Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:Circuitstrip transparent.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
475
473
2020-05-30T03:39:02Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:Circuitstrip transparent.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
479
475
2020-05-30T03:42:05Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:Circuitstrip transparent.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
480
479
2020-05-30T03:48:15Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:Circuitstrip transparent.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
481
480
2020-05-30T03:48:38Z
Carth
30634784
Carth uploaded a new version of [[File:Circuitstrip transparent.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
482
481
2020-05-30T03:48:50Z
Carth
30634784
Carth uploaded a new version of [[File:Circuitstrip transparent.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
483
482
2020-05-30T03:52:44Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:Circuitstrip transparent.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Upchuck
0
6
474
469
2020-05-30T03:38:45Z
Jaswacker
30585766
/* Toys */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:upchuckbandai.jpg|thumb|100px|"Mommy, I pooped. Proud of me?"]]
*'''Upchuck''' (Wave 2, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|''Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.''}}
{{-}}
[[File:battlechucktoy.jpg|thumb|100px|"Mommy, I barfed. Proud of me?"]]
*'''Upchuck, Battle Version''' (Wave 3, 2007)
: placeholder
: for new lines
: do this thing
{{quote|''Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Upchuck''' (Wave #, year)
: Release of Wave 2 Upchuck with the ''Ultimate Alien'' toyline.
{{quote|toybio}}
{{-}}
=== DNA Alien Heroes ===
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Rocks ===
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Benwolf and Upchuck''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Planetary Powder Sets ===
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Upchuck Planetary Powder Set''' (year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Alien Force'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Creation Figures ===
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Murk Upchuck and Gorvan''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Alien Creation Transporter: Upchuck & Clear Heatblast''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Ultimate Alien'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Upchuck/Heatblast, Haywire''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Four Arms, Upchuck, & XLR8''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Upchuck/Heatblast, Four Arms/Stinkfly, Swampfire/Diamondhead, Goop/Wildmutt''' (Wave 4, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== 2" Mini Figures ===
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
[[File:PLACEHOLDER2.png|thumb|100px|clear green variant]]
*'''Upchuck''', Blind Bag (Series 3, year)
: toyinfo
{{-}}
=== ''Omniverse'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Upchuck''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Role Play ===
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Omnitrix Challenge (2012)
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
6f670dcf6ba3772f24a8c6bd31248e0cf9d9f617
476
474
2020-05-30T03:39:35Z
Jaswacker
30585766
/* Toys */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:upchuckbandai.jpg|thumb|300px|"Mommy, I pooped. Proud of me?"]]
*'''Upchuck''' (Wave 2, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|''Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.''}}
{{-}}
[[File:battlechucktoy.jpg|thumb|300px|"Mommy, I barfed. Proud of me?"]]
*'''Upchuck, Battle Version''' (Wave 3, 2007)
: placeholder
: for new lines
: do this thing
{{quote|''Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Upchuck''' (Wave #, year)
: Release of Wave 2 Upchuck with the ''Ultimate Alien'' toyline.
{{quote|toybio}}
{{-}}
=== DNA Alien Heroes ===
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Rocks ===
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Benwolf and Upchuck''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Planetary Powder Sets ===
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Upchuck Planetary Powder Set''' (year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Alien Force'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Creation Figures ===
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Murk Upchuck and Gorvan''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Alien Creation Transporter: Upchuck & Clear Heatblast''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Ultimate Alien'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Upchuck/Heatblast, Haywire''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Four Arms, Upchuck, & XLR8''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Upchuck/Heatblast, Four Arms/Stinkfly, Swampfire/Diamondhead, Goop/Wildmutt''' (Wave 4, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== 2" Mini Figures ===
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
[[File:PLACEHOLDER2.png|thumb|100px|clear green variant]]
*'''Upchuck''', Blind Bag (Series 3, year)
: toyinfo
{{-}}
=== ''Omniverse'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Upchuck''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Role Play ===
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Omnitrix Challenge (2012)
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
680d4fe9cd9c0239b3d06e62b09c8673848c925b
477
476
2020-05-30T03:40:00Z
Jaswacker
30585766
/* Toys */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:upchuckbandai.jpg|thumb|250px|"Mommy, I pooped. Proud of me?"]]
*'''Upchuck''' (Wave 2, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|''Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.''}}
{{-}}
[[File:battlechucktoy.jpg|thumb|250px|"Mommy, I barfed. Proud of me?"]]
*'''Upchuck, Battle Version''' (Wave 3, 2007)
: placeholder
: for new lines
: do this thing
{{quote|''Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Upchuck''' (Wave #, year)
: Release of Wave 2 Upchuck with the ''Ultimate Alien'' toyline.
{{quote|toybio}}
{{-}}
=== DNA Alien Heroes ===
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Rocks ===
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Benwolf and Upchuck''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Planetary Powder Sets ===
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Upchuck Planetary Powder Set''' (year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Alien Force'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Creation Figures ===
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Murk Upchuck and Gorvan''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Alien Creation Transporter: Upchuck & Clear Heatblast''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Ultimate Alien'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Upchuck/Heatblast, Haywire''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Four Arms, Upchuck, & XLR8''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Upchuck/Heatblast, Four Arms/Stinkfly, Swampfire/Diamondhead, Goop/Wildmutt''' (Wave 4, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== 2" Mini Figures ===
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
[[File:PLACEHOLDER2.png|thumb|100px|clear green variant]]
*'''Upchuck''', Blind Bag (Series 3, year)
: toyinfo
{{-}}
=== ''Omniverse'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Upchuck''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Role Play ===
[[File:PLACEHOLDER2.png|thumb|100px|caption]]
*'''Omnitrix Challenge (2012)
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
fbf64b1ed9cdcea537e3b36fae52f5939a77de08
478
477
2020-05-30T03:40:57Z
Jaswacker
30585766
/* Toys */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:upchuckbandai.jpg|thumb|250px|"Mommy, I pooped. Proud of me?"]]
*'''Upchuck''' (Wave 2, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|''Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.''}}
{{-}}
[[File:battlechucktoy.jpg|thumb|250px|"Mommy, I barfed. Proud of me?"]]
*'''Upchuck, Battle Version''' (Wave 3, 2007)
: placeholder
: for new lines
: do this thing
{{quote|''Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave #, year)
: Release of Wave 2 Upchuck with the ''Ultimate Alien'' toyline.
{{quote|toybio}}
{{-}}
=== DNA Alien Heroes ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Rocks ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Benwolf and Upchuck''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Planetary Powder Sets ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck Planetary Powder Set''' (year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Alien Force'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Creation Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Murk Upchuck and Gorvan''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Alien Creation Transporter: Upchuck & Clear Heatblast''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Ultimate Alien'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Haywire''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Four Arms, Upchuck, & XLR8''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Four Arms/Stinkfly, Swampfire/Diamondhead, Goop/Wildmutt''' (Wave 4, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== 2" Mini Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
[[File:PLACEHOLDER2.png|thumb|250px|clear green variant]]
*'''Upchuck''', Blind Bag (Series 3, year)
: toyinfo
{{-}}
=== ''Omniverse'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Role Play ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Omnitrix Challenge (2012)
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
1776414c414401a54cc0397316d849b15c094b9e
Main Page/logo
0
56
484
233
2020-05-30T04:00:19Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><choose>
<option><imagemap>File:heatblast_logo.png|450px|frameless
default [[Heatblast]]
desc none</imagemap></option>
<option><imagemap>File:wildmutt_logo.png|450px|frameless
default [[Wildmutt]]
desc none</imagemap></option>
<option><imagemap>File:diamondhead_logo.png|450px|frameless
default [[Diamondhead]]
desc none</imagemap></option>
<option><imagemap>File:xlr8_logo.png|400px|frameless
default [[XLR8]]
desc none</imagemap></option>
<option><imagemap>File:greymatter_logo.png|455px|frameless
default [[Grey Matter]]
desc none</imagemap></option>
<option><imagemap>File:fourarms_logo.png|450px|frameless
default [[Four Arms]]
desc none</imagemap></option>
<option><imagemap>File:stinkfly_logo.png|450px|frameless
default [[Stinkfly]]
desc none</imagemap></option>
<option><imagemap>File:ripjaws_logo.png|450px|frameless
default [[Ripjaws]]
desc none</imagemap></option>
<option><imagemap>File:upgrade_logo.png|450px|frameless
default [[Upgrade]]
desc none</imagemap></option>
<option><imagemap>File:ghostfreak_logo.png|450px|frameless
default [[Ghostfreak]]
desc none</imagemap></option>
</choose></includeonly>
<noinclude>Current logos (please update if you add to or remove from the list in the code):
<gallery>
File:heatblast_logo.png
File:wildmutt_logo.png
File:diamondhead_logo.png
File:xlr8_logo.png
File:greymatter_logo.png
File:fourarms_logo.png
File:stinkfly_logo.png
File:ripjaws_logo.png
File:upgrade_logo.png
File:ghostfreak_logo.png
</gallery>[[Category:Main Page templates]]</noinclude>
eae9da510ccb1f24c6a29369659c5ec111ce1339
Ben 10 (2005)
0
80
485
364
2020-05-30T04:04:01Z
Jaswacker
30585766
wikitext
text/x-wiki
'''Ben 10''' ''(also known as '''Ben 10 Classic''')'' is an American animated television series created by Man of Action (a group consisting of Joe Casey, Joe Kelly, Duncan Rouleau, and Steven T. Seagle), and is the first installment of the Ben 10 franchise.
{| border="0" cellpadding="0" cellspacing="0" style="background:white; color:black;width:300px;float:right;text-align:center;border-color:#99CCFF;"
|- style="background:#99CCFF; color:white;font-size:150%;"
|valign="top" colspan="2" align="center"| '''And Then There Were 10'''
|- style="background:#FFCCFF; color:black;font-size:75%;"
| colspan="2" | Season 1 | Episode 1
|- style="background: white;color:white"
| colspan="2" align="center" | '''[[Ben 10 (2005)]]'''
|- style="background:white; color:black"
| colspan="2" align="center" | [[Image: my_d|300px]]
|- style="background:#FFCCFF;"
| Original Airdate
| December 27, 2005
|-
| Writer(s)
| [[Random Guy]]
|-
|Director(s)
| Argit Needlemouse
|- style="background:#FFCCFF;width:150px;color:black;font-size:75%;"
| align="center" | << Previous Episode
|align="center" style="background:#FFCCFF;width:150px;color:black" | Next Episode >>
|- style="background:#99CCFF;width:150px;color:black"
| align="center" | '''''[[N/A]]'''''
| style="background:#99CCFF;width:150px;color:black" align="center" | '''[[Washington B.C.]]'''
|}
6bf8b524a113bf6f317a0a062b09cfc9311dc5c5
486
485
2020-05-30T04:05:14Z
Jaswacker
30585766
wikitext
text/x-wiki
'''Ben 10''' ''(also known as '''Ben 10 Classic''')'' is an American animated television series created by Man of Action (a group consisting of Joe Casey, Joe Kelly, Duncan Rouleau, and Steven T. Seagle), and is the first installment of the Ben 10 franchise.
e52a35366426671a5a46cc6177c6e4e516ff3fa0
MediaWiki:Common.css
8
3
491
472
2020-05-30T04:21:02Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:0;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* Infoboxes */
.portable-infobox {
float: right;
background: rgba(0,47,90,0.5);
border-radius: 8px 8px 0 0;
border: 2px solid #301728;
overflow: hidden;
}
.portable-infobox h2 {
background-color: #96487D;
}
.pi-title, .pi-header,
.pi-horizontal-group .pi-header {
font-weight: bold;
text-align: center;
}
.pi-theme-object {
border: 2px solid #301728 !important;
}
.pi-theme-object h2 {
background-color: #96487D !important;
}
.pi-theme-musicbox {
border: 2px solid #33194d !important;
}
.pi-theme-musicbox h2 {
background-color: #663399 !important;
}
.pi-theme-team {
border: 2px solid #0067c2 !important;
}
.pi-theme-team h2 {
background-color: #5CB2FF !important;
}
.pi-theme-staff {
border: 2px solid #0d0d0d !important;
}
.pi-theme-staff h2 {
background-color: #262626 !important;
}
.pi-theme-show {
border: 2px solid #3c633c !important;
}
.pi-theme-show h2 {
background-color: #62A061 !important;
}
.pi-theme-location {
border: 2px solid #2e0011 !important;
}
.pi-theme-location h2 {
background: #5E0022 !important;
}
.pi-theme-event {
border: 2px solid #062b2e !important;
}
.pi-theme-event .pi-title,
.pi-theme-event .pi-header {
background-color: #008b8b !important;
}
.pi-theme-gameinfo {
border: 1px solid #4282A3 !important;
}
.pi-theme-gameinfo h2 {
background: #4282A3 !important;
}
.pi-theme-gameinfo .pi-data {
border-bottom: 1px solid #162d38 !important;
}
.pi-theme-merchandise {
border: 2px solid #422722 !important;
}
.pi-theme-merchandise h2 {
background-color: #A86257 !important;
}
.pi-theme-episode {
border: 2px solid #00B2EE !important;
}
.pi-theme-episode h2,
.pi-theme-episode .pi-secondary-background {
background-color: #1e5b9a !important;
}
.pi-theme-episode .pi-data:not(:last-of-type),
.pi-group {
border-bottom-width: 0px !important;
}
.pi-theme-episode .pi-data-label {
flex-basis: 150px !important;
}
.pi-theme-episode .pi-title,
.pi-theme-episode .pi-header {
border-bottom: 1px solid #5FC8DD !important;
border-top: 1px solid #324489 !important;
}
.pi-theme-episode .pi-horizontal-group .pi-horizontal-group-item:not(:first-child) {
border-left-width: 0px !important;
}
.pi-theme-issue {
border: 2px solid #71a394 !important;
}
.pi-theme-issue h2,
.pi-theme-issue .pi-secondary-background {
background-color: #227a60 !important;
}
.pi-theme-issue .pi-data:not(:last-of-type),
.pi-group {
border-bottom-width: 0px !important;
}
.pi-theme-issue .pi-data-label {
flex-basis: 150px !important;
}
.pi-theme-issue .pi-border-color {
border-color: #71a394;
}
.pi-theme-issue .pi-title,
.pi-theme-issue .pi-header {
border-bottom: 1px solid #71a394 !important;
border-top: 1px solid #71a394 !important;
}
.pi-theme-issue .pi-horizontal-group .pi-horizontal-group-item:not(:first-child) {
border-left-width: 0px !important;
}
.portable-infobox .pi-data-value ul {
list-style-position: outside;
margin-left: 18px;
}
.pi-theme-issue .pi-data {
font-size: 90%;
}
.pi-image-collection-tab-content {
background-color: rgba(9,71,113,0.5) !important;
}
ul.pi-image-collection-tabs {
margin: 0;
}
ul.pi-image-collection-tabs li {
border: 1px solid transparent !important;
}
ul.pi-image-collection-tabs li.current {
background: rgba(15,88,129,0.5) !important;
}
.pi-collapse .pi-header:first-child:after {
border-color: inherit;
}
.pi-data-value div > ul {
margin: .4em 0 .5em !important;
}
/* Infoboxes end */
84a83fa70072d9b527c694db6249159584ffd064
494
491
2020-05-30T04:22:36Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:0;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
faf23b0e0eefa37a8fa7c1d18974f491aa54ce5a
Continuity
0
122
495
2020-05-30T06:53:38Z
Carth
30634784
Created page with "Continuity is the flow of events throughout a long running series... is what we would say if the series' continuity wasn't a mess. Due to different writers on different series..."
wikitext
text/x-wiki
Continuity is the flow of events throughout a long running series... is what we would say if the series' continuity wasn't a mess. Due to different writers on different series, contradicting past events, retcons and the like, Ben 10's continuity is a confusing mess, but let's try and make sense of it anyway.
2c73190b87b3ab80153bdd81ec6bc9f5a77701c9
496
495
2020-05-30T06:54:37Z
Carth
30634784
wikitext
text/x-wiki
Continuity is the flow of events throughout a long running series... is what we would say if it wasn't a mess. Due to different writers on different series, contradicting past events, retcons and the like, Ben 10's continuity is a confusing mess, but let's try and make sense of it anyway.
4172d23510dc883e25cf1ae69e23728b7de52280
Template:Stub
10
113
497
397
2020-05-30T09:21:39Z
Carth
30634784
wikitext
text/x-wiki
<br clear="all" />{{messagebox
|header=''"It that it? Is this the end?"''
|message_text=''This article is a [[:Category:Stub|stub]] and is missing information. You can help '''{{SITENAME}}''' by <span class="plainlinks">[{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|action=edit}} expanding it]</span>.''
|image_name=stub_img.png
|image_width=80
|width = 90%
|bottomtext={{#if: {{{1|}}}|'''What's needed:''' {{{1|}}} |}}
}}<includeonly>{{#ifeq:{{NAMESPACE}}|User||[[Category:Stub]]}}</includeonly>
<noinclude>Use this template to mark an article as a [[:Category:Stub|stub]]. Place the template at the bottom of the article. The article will then be automatically added to the stub category.
[[Category:Templates| ]]</noinclude>
1936f3ff6ee6a84963ec7c923ee04e8156179c4b
Template:Charbox
10
123
499
2020-05-30T15:09:28Z
Jaswacker
30585766
Created page with "<infobox theme="char" accent-color-default="#008000" accent-color-text-default="#FFF" accent-color-source="backcolor"..."
wikitext
text/x-wiki
<infobox theme="char" accent-color-default="#008000"
accent-color-text-default="#FFF"
accent-color-source="backcolor"
accent-color-text-source="textcolor">
<title source="name"><default>{{PAGENAME}}</default></title>
<image source="image"/>
<image source="complex"/>
<group>
<header>General Information</header>
<data source="species"><label>Species</label></data>
<data source="home world"><label>Home World</label></data>
<data source="residence"><label>Residence</label></data>
<data source="age"><label>Age</label></data>
<data source="affiliation"><label>Affiliations</label></data>
<data source="occupation"><label>Occupation(s)</label></data>
</group>
<group>
<header>Powers and Abilities</header>
<data source="ability"><label>Abilities</label></data>
<data source="equipment"><label>Equipment</label></data>
</group>
<group>
<header>Relationships</header>
<data source="relative"><label>Relatives</label></data>
<data source="alias"><label>Alias</label></data>
<data source="Alternate Counterparts"><label>Alternate<br>Counterparts</label></data>
</group>
<group>
<header>Details</header>
<data source="voice"><label>Voice Actor</label></data>
<data source="actor"><label>Actor</label></data>
<data source="first"><label>First Appearance</label><format>[[{{{first}}}]]</format></data>
</group>
<header>{{#ifexist:{{PAGENAME}}/Gallery|[[{{PAGENAME}}/Gallery|Gallery]]}}</header>
</infobox><includeonly>[[Category:Characters]]</includeonly>
<noinclude>
== Usage & preview ==
Type in this:
<pre>
{{Charbox
|backcolor=
|textcolor=
|name=
|image=
|complex=
|species=
|home world=
|residence=
|age=
|affiliation=
|occupation=
|ability=
|equipment=
|relative=
|alias=
|Alternate Counterparts=
|voice=
|first=
|actor=
}}
</pre>
to see this:
{{Charbox
|name = Benjamin Kirby Tennyson
|backcolor = 2BB04A
|textcolor = 000000
|species = [[Human]]
|residence = [[Bellwood]]
|voice = [[Tara Strong]] <small>(4, 5, 10 and 11 years old)</small><br />[[Yuri Lowenthal]] <small>(15 and 16 years old)</small>
|age = 4 <small>(''[[Don't Drink the Water]]'')</small><br />5 <small>(Omniverse flashbacks)</small><br />10 <small>(Original Series)</small><br />11 <small>(Omniverse flashbacks)</small><br />15 <small>(Alien Force)</small><br />16 <small>(Ultimate Alien and Omniverse)</small>
|first = And Then There Were 10
|affiliation = [[Ben's Team]]<br />DNA Force<br />[[Plumbers]]<br />[[Special Extraterrestrial Containment Team|SECT]]<br />[[Chadzmuth]]<br />[[Zs'Skayr's Minions]] <small>(formerly)</small><br />[[Galactic Enforcers]] <small>(formerly)</small><br />[[Madison Elementary School]] <small>(formerly)</small><br />[[Friedkin University]] <small>(formerly)</small>
|occupation = Hero<br />Student<br />Soccer player <small>(formerly)</small><br />Voice of Reason <small>(inside [[Alien X]])</small>
|ability = Advanced Intuition<br />Enhanced Eidetic Memory<br />Exceptional Leadership Skills<br />Freestyle Hand-to-Hand Combatant<br />Marksmanship<br />Spontaneous Learning/Understanding
|relative = [[Carl Tennyson]] <small>(father)</small><br />[[Sandra Tennyson]] <small>(mother)</small><br />[[Frank Tennyson]] <small>(uncle)</small><br /> [[Manny Tennyson]] <small>(uncle)</small><br /> [[Natalie Tennyson]] <small>(aunt)</small><br />[[Max Tennyson]] <small>(grandfather)</small><br />[[Verdona]] <small>(grandmother)</small><br />[[Gordon Tennyson]] <small>(grand-uncle)</small><br />[[Betty Jean Tennyson]] <small>(grand-aunt)</small><br />[[Vera Tennyson]] <small>(grand-aunt)</small><br />[[Gwen Tennyson]] <small>(cousin)</small><br />[[Kenneth Tennyson]] <small>(cousin)</small><br />[[Sunny]] <small>(cousin)</small><br />[[Big Chill's Offspring|14 Necrofriggians]] <small>(children as [[Big Chill]])</small><br />[[Joel Tennyson]] <small>(cousin once removed)</small><br />[[Clyde Fife]] <small>(second cousin)</small>
|alias = Ben 10<br />Ben Prime<br />Tennyson<br />Doctor Tennyson<br />Kiddo <small>(Max)</small><br />Doofus/Dweeb/Megadweeb <small>(Gwen)</small><br />Ben-Ben Tennyson <small>(Reinrassic III)</small><br />Benji/Buddy <small>(Kevin)</small><br />Young Tennyson/Young Master Tennyson <small>(Professor Paradox/Sir George)</small><br />Ben Dude/Partner <small>(Rook)</small><br />Benny <small>(Argit)</small><br />My Boy <small>(Blarney T. Hokestar)</small><br />Junior <small>(Phil)</small><br /> Hyper-kinetic miscreant <small>([[Ultimate Albedo]])</small> Changeling <small>(Sir Cyrus)</small><br />The Coming Storm <small>([[Rooters]])</small><br />Destroyer of the Universe <small>([[Servantis]])</small><br />Omnipotent Monster <small>(Servantis)</small><br />Peanut <small>([[Ma Vreedle]])</small><br />Imposter <small>([[Mad Rook]])</small>
|equipment = [[Omnitrix]]<br />[[Ascalon]] <small>(formerly)</small><br />[[Ultimatrix]] <small>(formerly)</small><br />[[Omnitrix (Original)]] <small>(destroyed)</small><br />[[Tenn-Speed]] <small>(formerly)</small><br />[[Time Cycles|Time Cycle]] <small>(formerly)</small>
|Alternate Counterparts = [[Ben 10,000 (Ben 10)|Ben 10,000]] <small>(future self)</small> <br />[[Ben 10,000 (Ultimate Alien)|Ben 10,000]] <small>(Unknown)</small><br />[[Ben Tennyson (RAT Timeline)|Ben Tennyson]] <small>(RAT Timeline)</small><br />[[Ben Tennyson (Dimension 23)|Ben Tennyson]] <small>(Dimension 23)</small><br />[[Ben Tennyson (Gwen 10)|Ben Tennyson]] <small>(Gwen 10)</small><br />[[Eon]]<br />[[No Watch Ben]]<br />[[Bad Ben]]<br />[[Benzarro]]<br />[[Nega Ben]]<br />[[Mad Ben]]
|complex = <center><tabber>
|-|OV = [[File:Ben Tennyson - Poise Official Omniverse.png|250px]]
|-|UAF = [[File:Ben Tennyson AF Full Image.png|180px]]
|-|OS = [[File:Ben10 (5).png|180px]]
</tabber></center>
|actor = [[Graham Phillips]] <small>(Race Against Time)</small><br />[[Ryan Kelley]] <small>(Alien Swarm)</small>
|home world = [[Earth]]
}}[{{fullurl:{{ns:Template}}:{{PAGENAME}}}}?action=purge Click here to refresh the preview above]
</noinclude>
9539d7fb4297f211f3941a8fdb824982566e6cf7
500
499
2020-05-30T15:11:04Z
Jaswacker
30585766
Blanked the page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
503
500
2020-05-30T15:24:55Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #f8fff7; border:1px solid #8a8; color:#000"
|-
|align="center" colspan="2" | {{{image|}}}
{{#if:{{{full_name|}}}|{{!}}- style="background:#afa"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{full_name|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{first_appearance|}}}|{{!}}- style="background:#afa"
{{!}} '''First appearance'''
{{!}} {{{first_appearance}}}
|}}
|- style="vertical-align: top"
{{#if:{{{portrayed_by|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Portrayed by'''
{{!}} {{{portrayed_by}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_appearance|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Latest appearance'''
{{!}} {{{latest_appearance}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_portrayal|}}}|{{!}}- style="background:#afa"
{{!}} '''Latest portrayal'''
{{!}} {{{latest_portrayal}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliation|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliation(s)'''
{{!}} {{{affiliation}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|full_name=
|species=
|first_appearance=
|portrayed_by=
|latest_appearance=
|latest_portrayal=
}}
</pre>
[[Category:Templates]]</noinclude>
42cb738e6138fef32db27673af1f0a4a3a937811
505
503
2020-05-30T15:27:14Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #f8fff7; border:1px solid #8a8; color:#000"
| align="center" colspan="2" bgcolor="#8afa8a" style="font-size:145%;" | '''{{{title|{{PAGENAME}}}}}'''
|-
|align="center" colspan="2" | {{{image|}}}
{{#if:{{{full_name|}}}|{{!}}- style="background:#afa"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{full_name|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{first_appearance|}}}|{{!}}- style="background:#afa"
{{!}} '''First appearance'''
{{!}} {{{first_appearance}}}
|}}
|- style="vertical-align: top"
{{#if:{{{portrayed_by|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Portrayed by'''
{{!}} {{{portrayed_by}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_appearance|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Latest appearance'''
{{!}} {{{latest_appearance}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_portrayal|}}}|{{!}}- style="background:#afa"
{{!}} '''Latest portrayal'''
{{!}} {{{latest_portrayal}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliation|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliation(s)'''
{{!}} {{{affiliation}}}
|}}
|}<noinclude>
<pre>
{{charbox
|title=
|image=
|full_name=
|species=
|first_appearance=
|portrayed_by=
|latest_appearance=
|latest_portrayal=
}}
</pre>
[[Category:Templates]]</noinclude>
3db7df0affced2046669ba2d88b951902bc6d103
506
505
2020-05-30T15:29:42Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #8a8; color:#000"
| align="center" colspan="2" bgcolor="#8afa8a" style="font-size:145%;" | '''{{{title|{{PAGENAME}}}}}'''
|-
|align="center" colspan="2" | {{{image|}}}
{{#if:{{{full_name|}}}|{{!}}- style="background:#afa"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{full_name|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{first_appearance|}}}|{{!}}- style="background:#afa"
{{!}} '''First appearance'''
{{!}} {{{first_appearance}}}
|}}
|- style="vertical-align: top"
{{#if:{{{portrayed_by|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Portrayed by'''
{{!}} {{{portrayed_by}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_appearance|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Latest appearance'''
{{!}} {{{latest_appearance}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_portrayal|}}}|{{!}}- style="background:#afa"
{{!}} '''Latest portrayal'''
{{!}} {{{latest_portrayal}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliation|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliation(s)'''
{{!}} {{{affiliation}}}
|}}
|}<noinclude>
<pre>
{{charbox
|title=
|image=
|full_name=
|species=
|first_appearance=
|portrayed_by=
|latest_appearance=
|latest_portrayal=
}}
</pre>
[[Category:Templates]]</noinclude>
22bfb96627e6959972d1125b7034a6698639922a
507
506
2020-05-30T15:32:36Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #8a8; color:#000"
| align="center" colspan="2" bgcolor="#8afa8a" style="font-size:145%;" | '''{{{title|{{PAGENAME}}}}}'''
|-
|align="center" colspan="2" | {{{image|}}}
|-
|align="center" colspan="2"
{{!}} '''Species'''
{{#if:{{{full_name|}}}|{{!}}- style="background:#afa"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{full_name|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{first_appearance|}}}|{{!}}- style="background:#afa"
{{!}} '''First appearance'''
{{!}} {{{first_appearance}}}
|}}
|- style="vertical-align: top"
{{#if:{{{portrayed_by|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Portrayed by'''
{{!}} {{{portrayed_by}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_appearance|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Latest appearance'''
{{!}} {{{latest_appearance}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_portrayal|}}}|{{!}}- style="background:#afa"
{{!}} '''Latest portrayal'''
{{!}} {{{latest_portrayal}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliation|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliation(s)'''
{{!}} {{{affiliation}}}
|}}
|}<noinclude>
<pre>
{{charbox
|title=
|image=
|full_name=
|species=
|first_appearance=
|portrayed_by=
|latest_appearance=
|latest_portrayal=
}}
</pre>
[[Category:Templates]]</noinclude>
a95465059cba7638d595a060e11dd07c9e7d08a5
508
507
2020-05-30T15:33:11Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #8a8; color:#000"
| align="center" colspan="2" bgcolor="#8afa8a" style="font-size:145%;" | '''{{{title|{{PAGENAME}}}}}'''
|-
|align="center" colspan="2" | {{{image|}}}
|-
|align="center" colspan="2" | '''Species'''
{{#if:{{{full_name|}}}|{{!}}- style="background:#afa"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{full_name|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{first_appearance|}}}|{{!}}- style="background:#afa"
{{!}} '''First appearance'''
{{!}} {{{first_appearance}}}
|}}
|- style="vertical-align: top"
{{#if:{{{portrayed_by|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Portrayed by'''
{{!}} {{{portrayed_by}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_appearance|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Latest appearance'''
{{!}} {{{latest_appearance}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_portrayal|}}}|{{!}}- style="background:#afa"
{{!}} '''Latest portrayal'''
{{!}} {{{latest_portrayal}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliation|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliation(s)'''
{{!}} {{{affiliation}}}
|}}
|}<noinclude>
<pre>
{{charbox
|title=
|image=
|full_name=
|species=
|first_appearance=
|portrayed_by=
|latest_appearance=
|latest_portrayal=
}}
</pre>
[[Category:Templates]]</noinclude>
559fbcb4ed712235ae46e9eca8f53db724408381
509
508
2020-05-30T15:33:52Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #8a8; color:#000"
| align="center" colspan="2" bgcolor="#8afa8a" style="font-size:145%;" | '''{{{title|{{PAGENAME}}}}}'''
|-
|align="center" colspan="2" | {{{image|}}}
|-
|align="center" colspan="2" style="background:#afa" | '''Species'''
{{#if:{{{full_name|}}}|{{!}}- style="background:#afa"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{full_name|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{first_appearance|}}}|{{!}}- style="background:#afa"
{{!}} '''First appearance'''
{{!}} {{{first_appearance}}}
|}}
|- style="vertical-align: top"
{{#if:{{{portrayed_by|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Portrayed by'''
{{!}} {{{portrayed_by}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_appearance|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Latest appearance'''
{{!}} {{{latest_appearance}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_portrayal|}}}|{{!}}- style="background:#afa"
{{!}} '''Latest portrayal'''
{{!}} {{{latest_portrayal}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliation|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliation(s)'''
{{!}} {{{affiliation}}}
|}}
|}<noinclude>
<pre>
{{charbox
|title=
|image=
|full_name=
|species=
|first_appearance=
|portrayed_by=
|latest_appearance=
|latest_portrayal=
}}
</pre>
[[Category:Templates]]</noinclude>
94e07f57f01d0e10496af65f70793c0ef5b89b71
510
509
2020-05-30T15:36:08Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #8a8; color:#000"
| align="center" colspan="2" bgcolor="#8afa8a" style="font-size:145%;" | '''{{{title|{{PAGENAME}}}}}'''
|-
|align="center" colspan="2" | {{{image|}}}
|-
|align="center" colspan="2" style="background:#afa" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{full_name|}}}|{{!}}- style="background:#afa"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{full_name|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{first_appearance|}}}|{{!}}- style="background:#afa"
{{!}} '''First appearance'''
{{!}} {{{first_appearance}}}
|}}
|- style="vertical-align: top"
{{#if:{{{portrayed_by|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Portrayed by'''
{{!}} {{{portrayed_by}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_appearance|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Latest appearance'''
{{!}} {{{latest_appearance}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_portrayal|}}}|{{!}}- style="background:#afa"
{{!}} '''Latest portrayal'''
{{!}} {{{latest_portrayal}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliation|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliation(s)'''
{{!}} {{{affiliation}}}
|}}
|}<noinclude>
<pre>
{{charbox
|title=
|image=
|full_name=
|species=
|first_appearance=
|portrayed_by=
|latest_appearance=
|latest_portrayal=
}}
</pre>
[[Category:Templates]]</noinclude>
11b558383f8dadeda36fc1b616494a0d36052cff
511
510
2020-05-30T15:44:43Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000"
|align="center" colspan="2" | {{{image|}}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{first_appearance|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''First appearance'''
{{!}} {{{first_appearance}}}
|}}
|- style="vertical-align: top"
{{#if:{{{portrayed_by|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Portrayed by'''
{{!}} {{{portrayed_by}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_appearance|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Latest appearance'''
{{!}} {{{latest_appearance}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_portrayal|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Latest portrayal'''
{{!}} {{{latest_portrayal}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliation|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliation(s)'''
{{!}} {{{affiliation}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|fullname=
|nickname=
|species=
|first_appearance=
|portrayed_by=
|latest_appearance=
|latest_portrayal=
}}
</pre>
[[Category:Templates]]</noinclude>
a5443495e1f2cdb9d3835290c4cb2a29f236e9f0
513
511
2020-05-30T15:51:48Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000"
|align="center" colspan="2" | {{{image|}}}
|- style="{{#if: {{{image|}}}| | display: none;}}"
|- style="{{#if: {{{image2|}}}{{#if: {{{image3|}}}| | display: none;}}"
| colspan="2" style="text-align: center;" |
{{#if: {{{image2|}}}|{{#if: {{{image3|}}}|{{#tag:tabber|
[[File:{{{image2}}}|{{#if: {{{size|}}}|{{{size}}}|300x300px}}]]
{{!}}-{{!}}
[[File:{{{image3}}}|{{#if: {{{size|}}}|{{{size}}}|300x300px}}]]}} }} }}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Home World'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{portrayed_by|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Portrayed by'''
{{!}} {{{portrayed_by}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_appearance|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Latest appearance'''
{{!}} {{{latest_appearance}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_portrayal|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Latest portrayal'''
{{!}} {{{latest_portrayal}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliation|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliation(s)'''
{{!}} {{{affiliation}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|image2=
|image3=
|fullname=
|nickname=
|species=
|homeworld=
|portrayed_by=
|latest_appearance=
|latest_portrayal=
}}
</pre>
[[Category:Templates]]</noinclude>
438a56c25d56b1bc6bfbe7c686e88a7dc8da7112
515
513
2020-05-30T15:56:15Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000"
|align="center" colspan="2" | {{{image|}}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Home World'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{portrayed_by|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Portrayed by'''
{{!}} {{{portrayed_by}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_appearance|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Latest appearance'''
{{!}} {{{latest_appearance}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_portrayal|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Latest portrayal'''
{{!}} {{{latest_portrayal}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliation|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliation(s)'''
{{!}} {{{affiliation}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|image2=
|image3=
|fullname=
|nickname=
|species=
|homeworld=
|portrayed_by=
|latest_appearance=
|latest_portrayal=
}}
</pre>
[[Category:Templates]]</noinclude>
7d841756c987402dbdeadfb58b65197584fe4dca
Ben Tennyson (Prime)
0
93
501
357
2020-05-30T15:24:06Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
placeholder!!
{{charbox
|image=
|full_name=
|species=
|first_appearance=
|portrayed_by=
|latest_appearance=
|latest_portrayal=
}}
3c0b1303f9977646393a88dfc8af632484f4d562
502
501
2020-05-30T15:24:54Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
placeholder!!
{{charbox
|image= PLACEHOLDER2.png
|full_name= test
|species= test
|first_appearance= test
|portrayed_by= test
|latest_appearance= test
|latest_portrayal= test
}}
43904df38d2635b07daf0396547b0fa3ad5bc6ea
504
502
2020-05-30T15:27:11Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
placeholder!!
{{charbox
|title= test
|image= PLACEHOLDER2.png
|full_name= test
|species= test
|first_appearance= test
|portrayed_by= test
|latest_appearance= test
|latest_portrayal= test
}}
66e01d0b47bbae3ef71d2eb0adc13ba633fd1f57
512
504
2020-05-30T15:46:15Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image= <gallery>
PLACEHOLDER2.png|OS
PLACEHOLDER2.png|OV
</gallery>
|fullname= test
|nickname= test
|species= test
|first_appearance= test
|portrayed_by= test
|latest_appearance= test
|latest_portrayal= test
}}
placeholder!!
ade15f707ec5d586bcd3597106ab4168e7813a6b
514
512
2020-05-30T15:52:11Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image= PLACEHOLDER2.png
|image2= PLACEHOLDER2.png
|image3= PLACEHOLDER2.png
|fullname= test
|nickname= test
|species= test
|first_appearance= test
|portrayed_by= test
|latest_appearance= test
|latest_portrayal= test
}}
placeholder!!
0c2c048fb2e3e301fd924fbde24a97fbc0580078
File:Wikibg2.png
6
124
516
2020-05-30T16:02:46Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
MediaWiki:Monobook.css
8
18
517
278
2020-05-30T16:03:00Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the MonoBook skin */
body > div#globalWrapper {
background-image: url("http://images.shoutwiki.com/omnipedia/0/09/Wikibg2.png");
background-color: #117700;
}
.pbody li {
list-style-type: none;
}
b25c41bd69fd024b808f95f062c59d9c7181784a
518
517
2020-05-30T16:04:37Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the MonoBook skin */
body > div#globalWrapper {
background-image: url("http://images.shoutwiki.com/omnipedia/0/09/Wikibg3.png");
background-color: #42a727;
}
.pbody li {
list-style-type: none;
}
b5d4ddea11e2dacf11dc3ac2fdc4db3b494796bd
520
518
2020-05-30T16:05:33Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the MonoBook skin */
body > div#globalWrapper {
background-image: url("http://images.shoutwiki.com/omnipedia/a/ad/Wikibg3.png");
background-color: #42a727;
}
.pbody li {
list-style-type: none;
}
01972038d3b7d31281de70be5377554e717fa9a5
522
520
2020-05-30T16:09:27Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the MonoBook skin */
body > div#globalWrapper {
background-image: url("http://images.shoutwiki.com/omnipedia/8/86/Wikibg4.png");
background-color: #42a727;
}
.pbody li {
list-style-type: none;
}
c6c4486844c0d48f2a1a822fac2af66b43999978
524
522
2020-05-30T16:12:03Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the MonoBook skin */
body > div#globalWrapper {
background-image: url("http://images.shoutwiki.com/omnipedia/0/02/Wikibg5.png");
background-color: #42a727;
}
.pbody li {
list-style-type: none;
}
8947a8118d2b7caf5031b8fc798957667f6d321a
525
524
2020-05-30T20:14:28Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the MonoBook skin */
body > div#globalWrapper {
background-image: url("http://images.shoutwiki.com/omnipedia/0/02/Wikibg5.png");
background-color: #41a230;
}
.pbody li {
list-style-type: none;
}
34b71b13f6bcde9e13491282703f4d5fbe82ffb7
File:Wikibg3.png
6
125
519
2020-05-30T16:04:49Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Wikibg4.png
6
126
521
2020-05-30T16:09:08Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Wikibg5.png
6
127
523
2020-05-30T16:11:51Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Minor Transformations
0
4
526
49
2020-05-30T21:53:18Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|bio|rbt}}
__NOTOC__
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">Mentioned</div>
These aliens have only been mentioned in the show, but have had no on-screen appearances currently.
== Snakepit ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
== Sandbox ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Sandbox is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
== Shellhead ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
</div>
<div class="tabbox">
<div class="tab">Non-Canon</div>
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any seen continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
== Decimus Prime ==
[[File:DecimusPrime_RobotMode.jpeg|thumb|200px]]
[[File:DecimusPrime_AltMode.jpeg|thumb|200px]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
</div>
<div class="tabbox">
<div class="tab">placeholder</div>
Contents of the third tab will go here.
</div>
</div>
ca80d14b061927a013da46d62d52ea3191e8a07d
527
526
2020-05-30T21:54:48Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|bio|rbt}}
__NOTOC__
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">Unseen</div>
These aliens have only been mentioned in the show, but have had no on-screen appearances currently.
== Snakepit ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
== Sandbox ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Sandbox is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
== Shellhead ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
</div>
<div class="tabbox">
<div class="tab">Non-Canon</div>
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any seen continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
== Decimus Prime ==
[[File:DecimusPrime_RobotMode.jpeg|thumb|200px]]
[[File:DecimusPrime_AltMode.jpeg|thumb|200px]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
</div>
<div class="tabbox">
<div class="tab">placeholder</div>
Contents of the third tab will go here.
</div>
</div>
ca902bf2c913b3320765465f764521e5e16c87ac
528
527
2020-05-30T21:59:13Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|bio|rbt}}
__NOTOC__
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">Unseen</div>
These aliens have only been mentioned in the show, but have had no on-screen appearances currently.
== Snakepit ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
== Sandbox ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Sandbox is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
== Shellhead ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
</div>
<div class="tabbox">
<div class="tab">Non-Canon</div>
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any seen continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
== Decimus Prime ==
[[File:DecimusPrime_RobotMode.jpeg|thumb|200px]]
[[File:DecimusPrime_AltMode.jpeg|thumb|200px]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{reflist}}
</div>
<div class="tabbox">
<div class="tab">placeholder</div>
Contents of the third tab will go here.
</div>
</div>
66100a8f22bec93d6abe00e9da53037055082824
529
528
2020-05-30T21:59:55Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|bio|rbt}}
__NOTOC__
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">Unseen</div>
These aliens have only been mentioned in the show, but have had no on-screen appearances currently.
{{-}}
== Snakepit ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
== Sandbox ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Sandbox is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
== Shellhead ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
</div>
<div class="tabbox">
<div class="tab">Non-Canon</div>
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any seen continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
== Decimus Prime ==
[[File:DecimusPrime_RobotMode.jpeg|thumb|200px]]
[[File:DecimusPrime_AltMode.jpeg|thumb|200px]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
</div>
<div class="tabbox">
<div class="tab">placeholder</div>
Contents of the third tab will go here.
</div>
</div>
f79108b742fe31c04f1c30028783f6b06fd96067
Transformations (Disambiguation)
0
94
530
355
2020-05-30T22:27:33Z
Jaswacker
30585766
wikitext
text/x-wiki
{{Disambig}}
*For a full list of [[Ben Tennyson (Prime)|Ben Prime's]] alien transformations, go to [[Transformations/Prime]].
*For a full list of the transformations of [[Ben Tennyson (Reboot)|Ben from the]] [[Ben 10 (2016)|Reboot]], go to [[Transformations/Reboot]].
*For a list of alien transformations that aren't haven't been seen on screen, go to [[Minor Transformations/Unseen]].
*placeholder
e95b1b791dcbd624a8777f7c7fd13672774f18cb
588
530
2020-05-31T02:35:52Z
Jaswacker
30585766
Jaswacker moved page [[Transformations (disambiguation)]] to [[Transformations (Disambiguation)]] without leaving a redirect
wikitext
text/x-wiki
{{Disambig}}
*For a full list of [[Ben Tennyson (Prime)|Ben Prime's]] alien transformations, go to [[Transformations/Prime]].
*For a full list of the transformations of [[Ben Tennyson (Reboot)|Ben from the]] [[Ben 10 (2016)|Reboot]], go to [[Transformations/Reboot]].
*For a list of alien transformations that aren't haven't been seen on screen, go to [[Minor Transformations/Unseen]].
*placeholder
e95b1b791dcbd624a8777f7c7fd13672774f18cb
Minor Transformations
0
4
531
529
2020-05-30T22:29:13Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|bio|rbt}}
__NOTOC__
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">Unseen</div>
These aliens have only been mentioned in the show, but have had no on-screen appearances currently.
{{-}}
== Snakepit ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
== Sandbox ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Sandbox is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
== Shellhead ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
</div>
<div class="tabbox">
<div class="tab">Non-Canon</div>
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any seen continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
== Decimus Prime ==
[[File:DecimusPrime_RobotMode.jpeg|thumb|200px]]
[[File:DecimusPrime_AltMode.jpeg|thumb|200px]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
</div>
<div class="tabbox">
<div class="tab">test</div>
{{Upchuck}}
</div>
</div>
a5098c93bf8bce73b9a3a8fb0f728f9404922324
532
531
2020-05-30T22:30:19Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|bio|rbt}}
__NOTOC__
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">Unseen</div>
These aliens have only been mentioned in the show, but have had no on-screen appearances currently.
{{-}}
== Snakepit ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
== Sandbox ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Sandbox is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
== Shellhead ==
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
</div>
<div class="tabbox">
<div class="tab">Non-Canon</div>
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any seen continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
== Decimus Prime ==
[[File:DecimusPrime_RobotMode.jpeg|thumb|200px]]
[[File:DecimusPrime_AltMode.jpeg|thumb|200px]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
</div>
<div class="tabbox">
<div class="tab">test</div>
{{:Upchuck}}
</div>
</div>
13658ce80da52975c0464462cefa491933e61857
533
532
2020-05-30T22:32:19Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|bio|rbt}}
__NOTOC__
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">Unseen</div>
{{:Minor_Transformations/Unseen}}
</div>
<div class="tabbox">
<div class="tab">Non-Canon</div>
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any seen continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
== Decimus Prime ==
[[File:DecimusPrime_RobotMode.jpeg|thumb|200px]]
[[File:DecimusPrime_AltMode.jpeg|thumb|200px]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
</div>
<div class="tabbox">
<div class="tab">test</div>
placeholder
</div>
</div>
2db5f0ff7ec8bfacc261abf620683f63b05a7e75
535
533
2020-05-30T22:33:43Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">Unseen</div>
{{:Minor_Transformations/Unseen}}
</div>
<div class="tabbox">
<div class="tab">Non-Canon</div>
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any seen continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
== Decimus Prime ==
[[File:DecimusPrime_RobotMode.jpeg|thumb|200px]]
[[File:DecimusPrime_AltMode.jpeg|thumb|200px]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
</div>
<div class="tabbox">
<div class="tab">test</div>
placeholder
</div>
</div>
d3d55eefd3c9d216b2ec8cb260cc679cdba79ffc
537
535
2020-05-30T22:35:35Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">Unseen</div>
{{:Minor_Transformations/Unseen}}
</div>
<div class="tabbox">
<div class="tab">placeholder</div>
</div>
<div class="tabbox">
<div class="tab">test</div>
placeholder
</div>
</div>
2a0f77659e9a32d3319d875d08d84ca0cb314a2c
548
537
2020-05-30T23:32:43Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">Unseen</div>
{{:Minor_Transformations/Unseen}}
</div>
<div class="tabbox">
<div class="tab">Albedo</div>
{{:Minor_Transformations/Albedo}}
</div>
<div class="tabbox">
<div class="tab">Ben 23</div>
{{:Minor_Transformations/Ben_23}}
</div>
<div class="tabbox">
<div class="tab">Bad Ben</div>
{{:Minor_Transformations/Bad_Ben}}
</div>
<div class="tabbox">
<div class="tab">Mad Ben</div>
{{:Minor_Transformations/Mad_Ben}}
</div>
<div class="tabbox">
<div class="tab">Nega Ben</div>
{{:Minor_Transformations/Nega_Ben}}
</div>
<div class="tabbox">
<div class="tab">Gwen 10</div>
{{:Minor_Transformations/Gwen_10}}
</div>
<div class="tabbox">
<div class="tab">Other</div>
{{:Minor_Transformations/Other}}
</div>
</div>
474e7975fac6290894e3a10d56a15a48cb3759a3
File:Bob the Blob.png
6
129
563
2020-05-31T00:53:54Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
User:Jaswacker
2
130
567
2020-05-31T01:21:51Z
Jaswacker
30585766
Created page with "me"
wikitext
text/x-wiki
me
b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8
Wildmutt
0
131
568
2020-05-31T02:22:07Z
Jaswacker
30585766
Created blank page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Diamondhead
0
132
569
2020-05-31T02:22:44Z
Jaswacker
30585766
Redirected page to [[Diamondhead (Disambiguation)]]
wikitext
text/x-wiki
#REDIRECT [[Diamondhead (Disambiguation)]]
1735ff8af18e680984f56e16dcbb435fe202b4a8
Diamondhead (Disambiguation)
0
133
570
2020-05-31T02:23:00Z
Jaswacker
30585766
Created page with "{{disambig}}"
wikitext
text/x-wiki
{{disambig}}
580e1a7971ffc6daff2fe0f0a7116493fe221fc2
Upgrade
0
134
571
2020-05-31T02:23:32Z
Jaswacker
30585766
Redirected page to [[Upgrade (Disambiguation)]]
wikitext
text/x-wiki
#REDIRECT [[Upgrade (Disambiguation)]]
e71aeb5bd26bd2653edf0297729606e20fda9f1e
Upgrade (Disambiguation)
0
135
572
2020-05-31T02:23:59Z
Jaswacker
30585766
Created page with "{{disambig}}"
wikitext
text/x-wiki
{{disambig}}
580e1a7971ffc6daff2fe0f0a7116493fe221fc2
Ghostfreak
0
136
573
2020-05-31T02:25:47Z
Jaswacker
30585766
Created blank page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Heatblast
0
137
574
2020-05-31T02:26:12Z
Jaswacker
30585766
Redirected page to [[Heatblast (Disambiguation)]]
wikitext
text/x-wiki
#REDIRECT [[Heatblast (Disambiguation)]]
cf8a9fdb68852a089892632ae63a92b93851f76c
Heatblast (Disambiguation)
0
138
575
2020-05-31T02:26:27Z
Jaswacker
30585766
Created page with "{{disambig}}"
wikitext
text/x-wiki
{{disambig}}
580e1a7971ffc6daff2fe0f0a7116493fe221fc2
Stinkfly
0
139
576
2020-05-31T02:27:08Z
Jaswacker
30585766
Redirected page to [[Stinkfly (Disambiguation)]]
wikitext
text/x-wiki
#REDIRECT [[Stinkfly (Disambiguation)]]
6ddf7f82a98383b699e1d28b2af87f897fcf2be5
Stinkfly (Disambiguation)
0
140
577
2020-05-31T02:27:23Z
Jaswacker
30585766
Created page with "{{disambig}}"
wikitext
text/x-wiki
{{disambig}}
580e1a7971ffc6daff2fe0f0a7116493fe221fc2
Ripjaws
0
141
578
2020-05-31T02:27:50Z
Jaswacker
30585766
Created blank page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
XLR8
0
142
579
2020-05-31T02:28:44Z
Jaswacker
30585766
Redirected page to [[XLR8 (Disambiguation)]]
wikitext
text/x-wiki
#REDIRECT [[XLR8 (Disambiguation)]]
6807b90b2cfd734a0383fb2a7b20b0a2dcbcefda
XLR8 (Disambiguation)
0
143
580
2020-05-31T02:29:01Z
Jaswacker
30585766
Created page with "{{disambig}}"
wikitext
text/x-wiki
{{disambig}}
580e1a7971ffc6daff2fe0f0a7116493fe221fc2
Four Arms
0
144
581
2020-05-31T02:30:40Z
Jaswacker
30585766
Redirected page to [[Four Arms (Disambiguation)]]
wikitext
text/x-wiki
#REDIRECT [[Four Arms (Disambiguation)]]
ad3d39f72484dd4a8a1cc336030a0072bfe02d8a
Four Arms (Disambiguation)
0
145
582
2020-05-31T02:30:56Z
Jaswacker
30585766
Created page with "{{disambig}}"
wikitext
text/x-wiki
{{disambig}}
580e1a7971ffc6daff2fe0f0a7116493fe221fc2
Grey Matter
0
146
583
2020-05-31T02:31:54Z
Jaswacker
30585766
Redirected page to [[Grey Matter (Disambiguation)]]
wikitext
text/x-wiki
#REDIRECT [[Grey Matter (Disambiguation)]]
b5a85a7df4040089e6681700a7afa3ea575948c4
Grey Matter (Disambiguation)
0
147
584
2020-05-31T02:32:07Z
Jaswacker
30585766
Created page with "{{disambig}}"
wikitext
text/x-wiki
{{disambig}}
580e1a7971ffc6daff2fe0f0a7116493fe221fc2
Ben Tennyson (Disambiguation)
0
24
585
464
2020-05-31T02:34:27Z
Jaswacker
30585766
Blanked the page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
586
585
2020-05-31T02:34:58Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Alternate Versions of Ben Tennyson==
===Future Versions of Ben Tennyson===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Eon|Eon]]
</gallery></center>
===The Greater Multiverse===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Max Tennyson (Gwen 10)|Max Tennyson from "Gwen 10"]]
File:PLACEHOLDER2.png|[[Gwen Tennyson (placeholder dimension)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Dimension 23)|"Ben 23"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (placeholder dimension)|"No-Watch Ben"]]
File:PLACEHOLDER2.png|[[Mad Ben|Mad Ben]]
File:PLACEHOLDER2.png|[[Bad Ben|Bad Ben]]
File:PLACEHOLDER2.png|[[Nega Ben|Nega Ben]]
File:PLACEHOLDER2.png|[[Benzarro|Benzarro]]
File:PLACEHOLDER2.png|[[Argit (placeholder dimension)|"Argit 10"]]
</gallery></center>
===Live Action===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
53201a4781e191978035dcbb21a803b8c10fd304
587
586
2020-05-31T02:35:21Z
Jaswacker
30585766
Jaswacker moved page [[Ben Tennyson (disambiguation)]] to [[Ben Tennyson (Disambiguation)]] without leaving a redirect
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Alternate Versions of Ben Tennyson==
===Future Versions of Ben Tennyson===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Eon|Eon]]
</gallery></center>
===The Greater Multiverse===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Max Tennyson (Gwen 10)|Max Tennyson from "Gwen 10"]]
File:PLACEHOLDER2.png|[[Gwen Tennyson (placeholder dimension)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Dimension 23)|"Ben 23"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (placeholder dimension)|"No-Watch Ben"]]
File:PLACEHOLDER2.png|[[Mad Ben|Mad Ben]]
File:PLACEHOLDER2.png|[[Bad Ben|Bad Ben]]
File:PLACEHOLDER2.png|[[Nega Ben|Nega Ben]]
File:PLACEHOLDER2.png|[[Benzarro|Benzarro]]
File:PLACEHOLDER2.png|[[Argit (placeholder dimension)|"Argit 10"]]
</gallery></center>
===Live Action===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
53201a4781e191978035dcbb21a803b8c10fd304
Category:Transformations
14
148
589
2020-05-31T02:36:35Z
Jaswacker
30585766
Created blank page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Upchuck
0
6
590
478
2020-05-31T02:37:20Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{stub}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:upchuckbandai.jpg|thumb|250px|"Mommy, I pooped. Proud of me?"]]
*'''Upchuck''' (Wave 2, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|''Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.''}}
{{-}}
[[File:battlechucktoy.jpg|thumb|250px|"Mommy, I barfed. Proud of me?"]]
*'''Upchuck, Battle Version''' (Wave 3, 2007)
: placeholder
: for new lines
: do this thing
{{quote|''Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave #, year)
: Release of Wave 2 Upchuck with the ''Ultimate Alien'' toyline.
{{quote|toybio}}
{{-}}
=== DNA Alien Heroes ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Rocks ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Benwolf and Upchuck''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Planetary Powder Sets ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck Planetary Powder Set''' (year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Alien Force'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Creation Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Murk Upchuck and Gorvan''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Alien Creation Transporter: Upchuck & Clear Heatblast''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Ultimate Alien'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Haywire''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Four Arms, Upchuck, & XLR8''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Four Arms/Stinkfly, Swampfire/Diamondhead, Goop/Wildmutt''' (Wave 4, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== 2" Mini Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
[[File:PLACEHOLDER2.png|thumb|250px|clear green variant]]
*'''Upchuck''', Blind Bag (Series 3, year)
: toyinfo
{{-}}
=== ''Omniverse'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Role Play ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Omnitrix Challenge (2012)
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Transformations]]</noinclude>
c387ec205b1b8122d44f4a95625b3029bbf3fd62
Heatblast (Prime)
0
149
591
2020-05-31T02:39:48Z
Jaswacker
30585766
Created blank page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Transformations
0
91
592
352
2020-05-31T02:40:16Z
Jaswacker
30585766
Changed redirect target from [[Transformations (disambiguation)]] to [[Transformations (Disambiguation)]]
wikitext
text/x-wiki
#REDIRECT [[Transformations (Disambiguation)]]
541d727781ffccf6967fa3f0e773f924139a5322
Ben
0
29
593
107
2020-05-31T02:40:40Z
Jaswacker
30585766
Changed redirect target from [[Ben Tennyson (disambiguation)]] to [[Ben Tennyson (Disambiguation)]]
wikitext
text/x-wiki
#REDIRECT [[Ben Tennyson (Disambiguation)]]
83820a0f8032b176f2230b33c54d9828ea6470c7
Ben Tennyson
0
21
594
88
2020-05-31T02:41:02Z
Jaswacker
30585766
Changed redirect target from [[Ben Tennyson (disambiguation)]] to [[Ben Tennyson (Disambiguation)]]
wikitext
text/x-wiki
#REDIRECT [[Ben Tennyson (Disambiguation)]]
83820a0f8032b176f2230b33c54d9828ea6470c7
File:Antigravitesla.png
6
150
595
2020-05-31T02:44:45Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Cannonbolt
0
151
596
2020-05-31T02:55:03Z
Jaswacker
30585766
Redirected page to [[Cannonbolt (Disambiguation)]]
wikitext
text/x-wiki
#REDIRECT [[Cannonbolt (Disambiguation)]]
b2acbd06fbd4fea137b2b5149ba6691aecf640a7
Cannonbolt (Disambiguation)
0
152
597
2020-05-31T02:55:17Z
Jaswacker
30585766
Created page with "{{disambig}}"
wikitext
text/x-wiki
{{disambig}}
580e1a7971ffc6daff2fe0f0a7116493fe221fc2
Cannonbolt (Prime)
0
153
598
2020-05-31T02:58:41Z
Jaswacker
30585766
Created blank page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Wildvine
0
154
599
2020-05-31T02:59:18Z
Jaswacker
30585766
Redirected page to [[Wildvine (Disambiguation)]]
wikitext
text/x-wiki
#REDIRECT [[Wildvine (Disambiguation)]]
1e44136dbd0489fba95421b696c3068edc4510a7
Wildvine (Disambiguation)
0
155
600
2020-05-31T02:59:41Z
Jaswacker
30585766
Created page with "{{disambig}}"
wikitext
text/x-wiki
{{disambig}}
580e1a7971ffc6daff2fe0f0a7116493fe221fc2
Spitter
0
156
601
2020-05-31T03:00:00Z
Jaswacker
30585766
Created blank page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Buzzshock
0
157
602
2020-05-31T03:00:35Z
Jaswacker
30585766
Created blank page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Arctiguana
0
158
603
2020-05-31T03:00:55Z
Jaswacker
30585766
Created blank page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Blitzwolfer
0
159
604
2020-05-31T03:01:17Z
Jaswacker
30585766
Created blank page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Benwolf
0
160
605
2020-05-31T03:03:52Z
Jaswacker
30585766
Redirected page to [[Benwolf (Disambiguation)]]
wikitext
text/x-wiki
#REDIRECT [[Benwolf (Disambiguation)]]
510767ca7a5c326138462f0a7736b8280ed40f0e
Benwolf (Disambiguation)
0
161
606
2020-05-31T03:05:14Z
Jaswacker
30585766
Created page with "{{disambig}} * To see the [[Ben 10(2005)|original series]] episode titled ''Benwolf'', click [[Benwolf (Episode)|here]]. * If you meant the alien transformation formerly know..."
wikitext
text/x-wiki
{{disambig}}
* To see the [[Ben 10(2005)|original series]] episode titled ''Benwolf'', click [[Benwolf (Episode)|here]].
* If you meant the alien transformation formerly known as Benwolf, see [[Blitzwolfer]].
e13ca4d0f5d2233549382cc3ea8d2993d71d7b3d
Benmummy
0
162
607
2020-05-31T03:06:56Z
Jaswacker
30585766
Redirected page to [[Snare-oh]]
wikitext
text/x-wiki
#REDIRECT [[Snare-oh]]
011db32e6a26c0d9e6b4b9aadee3d64db08298a7
Snare-oh
0
163
608
2020-05-31T03:07:09Z
Jaswacker
30585766
Created blank page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Benvicktor
0
164
609
2020-05-31T03:07:47Z
Jaswacker
30585766
Redirected page to [[Frankenstrike]]
wikitext
text/x-wiki
#REDIRECT [[Frankenstrike]]
cbf1f39b0fe78209862a650b377094e0b349d903
Frankenstrike
0
165
610
2020-05-31T03:08:00Z
Jaswacker
30585766
Created blank page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Ditto
0
166
611
2020-05-31T03:08:17Z
Jaswacker
30585766
Created blank page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
615
611
2020-05-31T03:11:53Z
Jaswacker
30585766
wikitext
text/x-wiki
<noinclude>[[Category:Transformations]]</noinclude>
f6f6cbdcb89a7e6e5417340594e09b5e640a2bcb
Eye Guy
0
167
612
2020-05-31T03:08:43Z
Jaswacker
30585766
Created blank page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
616
612
2020-05-31T03:11:57Z
Jaswacker
30585766
wikitext
text/x-wiki
<noinclude>[[Category:Transformations]]</noinclude>
f6f6cbdcb89a7e6e5417340594e09b5e640a2bcb
Way Big
0
168
613
2020-05-31T03:09:13Z
Jaswacker
30585766
Created blank page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
625
613
2020-05-31T03:13:15Z
Jaswacker
30585766
wikitext
text/x-wiki
<noinclude>[[Category:Transformations]]</noinclude>
f6f6cbdcb89a7e6e5417340594e09b5e640a2bcb
Arctiguana
0
158
614
603
2020-05-31T03:11:48Z
Jaswacker
30585766
wikitext
text/x-wiki
<noinclude>[[Category:Transformations]]</noinclude>
f6f6cbdcb89a7e6e5417340594e09b5e640a2bcb
Blitzwolfer
0
159
617
604
2020-05-31T03:12:35Z
Jaswacker
30585766
wikitext
text/x-wiki
<noinclude>[[Category:Transformations]]</noinclude>
f6f6cbdcb89a7e6e5417340594e09b5e640a2bcb
Buzzshock
0
157
618
602
2020-05-31T03:12:40Z
Jaswacker
30585766
wikitext
text/x-wiki
<noinclude>[[Category:Transformations]]</noinclude>
f6f6cbdcb89a7e6e5417340594e09b5e640a2bcb
Cannonbolt (Prime)
0
153
619
598
2020-05-31T03:12:45Z
Jaswacker
30585766
wikitext
text/x-wiki
<noinclude>[[Category:Transformations]]</noinclude>
f6f6cbdcb89a7e6e5417340594e09b5e640a2bcb
Heatblast (Prime)
0
149
620
591
2020-05-31T03:12:50Z
Jaswacker
30585766
wikitext
text/x-wiki
<noinclude>[[Category:Transformations]]</noinclude>
f6f6cbdcb89a7e6e5417340594e09b5e640a2bcb
Ghostfreak
0
136
621
573
2020-05-31T03:12:55Z
Jaswacker
30585766
wikitext
text/x-wiki
<noinclude>[[Category:Transformations]]</noinclude>
f6f6cbdcb89a7e6e5417340594e09b5e640a2bcb
Spitter
0
156
622
601
2020-05-31T03:13:00Z
Jaswacker
30585766
wikitext
text/x-wiki
<noinclude>[[Category:Transformations]]</noinclude>
f6f6cbdcb89a7e6e5417340594e09b5e640a2bcb
Snare-oh
0
163
623
608
2020-05-31T03:13:05Z
Jaswacker
30585766
wikitext
text/x-wiki
<noinclude>[[Category:Transformations]]</noinclude>
f6f6cbdcb89a7e6e5417340594e09b5e640a2bcb
Ripjaws
0
141
624
578
2020-05-31T03:13:11Z
Jaswacker
30585766
wikitext
text/x-wiki
<noinclude>[[Category:Transformations]]</noinclude>
f6f6cbdcb89a7e6e5417340594e09b5e640a2bcb
Wildmutt
0
131
626
568
2020-05-31T03:13:20Z
Jaswacker
30585766
wikitext
text/x-wiki
<noinclude>[[Category:Transformations]]</noinclude>
f6f6cbdcb89a7e6e5417340594e09b5e640a2bcb
Grey Matter (Prime)
0
169
627
2020-05-31T03:14:01Z
Jaswacker
30585766
Created page with "<noinclude>[[Category:Transformations]]</noinclude>"
wikitext
text/x-wiki
<noinclude>[[Category:Transformations]]</noinclude>
f6f6cbdcb89a7e6e5417340594e09b5e640a2bcb
Four Arms (Prime)
0
170
628
2020-05-31T03:14:11Z
Jaswacker
30585766
Created page with "<noinclude>[[Category:Transformations]]</noinclude>"
wikitext
text/x-wiki
<noinclude>[[Category:Transformations]]</noinclude>
f6f6cbdcb89a7e6e5417340594e09b5e640a2bcb
Diamondhead (Prime)
0
171
629
2020-05-31T03:15:44Z
Jaswacker
30585766
Created page with "<noinclude>[[Category:Transformations]]</noinclude>"
wikitext
text/x-wiki
<noinclude>[[Category:Transformations]]</noinclude>
f6f6cbdcb89a7e6e5417340594e09b5e640a2bcb
Upgrade (Prime)
0
172
630
2020-05-31T03:16:00Z
Jaswacker
30585766
Created page with "<noinclude>[[Category:Transformations]]</noinclude>"
wikitext
text/x-wiki
<noinclude>[[Category:Transformations]]</noinclude>
f6f6cbdcb89a7e6e5417340594e09b5e640a2bcb
Wildvine (Prime)
0
173
631
2020-05-31T03:16:09Z
Jaswacker
30585766
Created page with "<noinclude>[[Category:Transformations]]</noinclude>"
wikitext
text/x-wiki
<noinclude>[[Category:Transformations]]</noinclude>
f6f6cbdcb89a7e6e5417340594e09b5e640a2bcb
Stinkfly (Prime)
0
174
632
2020-05-31T03:16:18Z
Jaswacker
30585766
Created page with "<noinclude>[[Category:Transformations]]</noinclude>"
wikitext
text/x-wiki
<noinclude>[[Category:Transformations]]</noinclude>
f6f6cbdcb89a7e6e5417340594e09b5e640a2bcb
Transformations (Disambiguation)
0
94
633
588
2020-05-31T03:16:38Z
Jaswacker
30585766
wikitext
text/x-wiki
{{Disambig}}
*For a full list of [[Ben Tennyson (Prime)|Ben Prime's]] alien transformations, go to [[Transformations/Prime]].
*For a full list of the transformations of [[Ben Tennyson (Reboot)|Ben from the]] [[Ben 10 (2016)|Reboot]], go to [[Transformations/Reboot]].
*For a list of alien transformations that aren't haven't been seen on screen, go to [[Minor Transformations/Unseen]].
*placeholder
<noinclude>[[Category:Transformations]]</noinclude>
5a0621fd86dba1d0a9f49d3fe541ef33338f57f7
Transformations/Prime
0
95
634
463
2020-05-31T03:17:33Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
<span id="esmeral"></span>
{{:Transformations/Prime/disambig}}
placeholder
<noinclude>[[Category:Transformations]]</noinclude>
7730f57967beb033f3c23ec2b8d183caa98770c7
647
634
2020-05-31T03:22:01Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
placeholder
<noinclude>[[Category:Transformations]]</noinclude>
c4c00d8fa7fb2bbde39227909f33425746f2beef
Minor Transformations
0
4
635
548
2020-05-31T03:17:44Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">Unseen</div>
{{:Minor_Transformations/Unseen}}
</div>
<div class="tabbox">
<div class="tab">Albedo</div>
{{:Minor_Transformations/Albedo}}
</div>
<div class="tabbox">
<div class="tab">Ben 23</div>
{{:Minor_Transformations/Ben_23}}
</div>
<div class="tabbox">
<div class="tab">Bad Ben</div>
{{:Minor_Transformations/Bad_Ben}}
</div>
<div class="tabbox">
<div class="tab">Mad Ben</div>
{{:Minor_Transformations/Mad_Ben}}
</div>
<div class="tabbox">
<div class="tab">Nega Ben</div>
{{:Minor_Transformations/Nega_Ben}}
</div>
<div class="tabbox">
<div class="tab">Gwen 10</div>
{{:Minor_Transformations/Gwen_10}}
</div>
<div class="tabbox">
<div class="tab">Other</div>
{{:Minor_Transformations/Other}}
</div>
</div>
<noinclude>[[Category:Transformations]]</noinclude>
5dd1680628bfd3756dd1632691108dcbb1278505
Minor Transformations/Albedo
0
175
636
2020-05-31T03:18:12Z
Jaswacker
30585766
Created page with "placeholder"
wikitext
text/x-wiki
placeholder
ff55435345834a3fe224936776c2aa15f6ed5358
Minor Transformations/Ben 23
0
176
637
2020-05-31T03:18:31Z
Jaswacker
30585766
Created page with "placeholder"
wikitext
text/x-wiki
placeholder
ff55435345834a3fe224936776c2aa15f6ed5358
Minor Transformations/Bad Ben
0
177
638
2020-05-31T03:18:55Z
Jaswacker
30585766
Created page with "placeholder"
wikitext
text/x-wiki
placeholder
ff55435345834a3fe224936776c2aa15f6ed5358
Minor Transformations/Mad Ben
0
178
639
2020-05-31T03:19:10Z
Jaswacker
30585766
Created page with "placeholder"
wikitext
text/x-wiki
placeholder
ff55435345834a3fe224936776c2aa15f6ed5358
Minor Transformations/Nega Ben
0
179
640
2020-05-31T03:19:23Z
Jaswacker
30585766
Created page with "placeholder"
wikitext
text/x-wiki
placeholder
ff55435345834a3fe224936776c2aa15f6ed5358
Minor Transformations/Gwen 10
0
180
641
2020-05-31T03:19:41Z
Jaswacker
30585766
Created page with "placeholder"
wikitext
text/x-wiki
placeholder
ff55435345834a3fe224936776c2aa15f6ed5358
Minor Transformations/Other
0
181
642
2020-05-31T03:20:05Z
Jaswacker
30585766
Created page with "placeholder"
wikitext
text/x-wiki
placeholder
ff55435345834a3fe224936776c2aa15f6ed5358
666
642
2020-05-31T05:30:19Z
Carth
30634784
wikitext
text/x-wiki
==Earth Samples==
According to differing statements from Dwayne McDuffie, five Earth samples are said to be present inside the Omnitrix.
{{-}}
===Human===
As Ben is a human himself, he is incapable of using this transformation. If an alien were to use the device however, they would be able to transform into a human. [[Argit]] is the only alien user of an Omnitrix confirmed to have a Human transformation.
===Primate, Elephant, Dolphin and White Lab Mouse===
It's possible that these animal samples are not meant for transformation, rather for cataloguing purposes, as most of them are not fully sapient like most samples.
28697a6f41c18f60ddae4da265c2ad1ce7ca3228
667
666
2020-05-31T09:06:11Z
Carth
30634784
wikitext
text/x-wiki
<sup>[[Minor_Transformations/Other|Full page link.]]</sup>
==Alpha==
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Four Arms===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Humungousaur===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five Earth samples are said to be present inside the Omnitrix.
{{-}}
===Human===
As Ben is a human himself, he is incapable of using this transformation. If an alien were to use the device however, they would be able to transform into a human. [[Argit]] is the only alien user of an Omnitrix confirmed to have a Human transformation.
===Primate, Elephant, Dolphin and White Lab Mouse===
It's possible that these animal samples are not meant for transformation, rather for cataloguing purposes, as most of them are not fully sapient like most samples.
0288b85b6479d938c1c77fbab165df596e55ffd3
668
667
2020-05-31T16:31:39Z
Jaswacker
30585766
/* Earth Samples */
wikitext
text/x-wiki
<sup>[[Minor_Transformations/Other|Full page link.]]</sup>
==Alpha==
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Four Arms===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Humungousaur===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five Earth samples are said to be present inside the Omnitrix.
{{-}}
===Human===
As Ben is a human himself, he is incapable of using this transformation. If an alien were to use the device however, they would be able to transform into a human. [[Argit]] is the only alien user of an Omnitrix confirmed to have a Human transformation.
{{-}}
===Primate, Elephant, Dolphin and White Lab Mouse===
It's possible that these animal samples are not meant for transformation, rather for cataloguing purposes, as most of them are not fully sapient like most samples.
8f0da791d6750b5ac70fba8a575cecd3837cbfaa
669
668
2020-05-31T16:32:23Z
Jaswacker
30585766
wikitext
text/x-wiki
<sup>[[Minor_Transformations/Other|Full page link.]]</sup>
{{-}}
==Alpha==
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Four Arms===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Humungousaur===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five Earth samples are said to be present inside the Omnitrix.
{{-}}
===Human===
As Ben is a human himself, he is incapable of using this transformation. If an alien were to use the device however, they would be able to transform into a human. [[Argit]] is the only alien user of an Omnitrix confirmed to have a Human transformation.
{{-}}
===Primate, Elephant, Dolphin and White Lab Mouse===
It's possible that these animal samples are not meant for transformation, rather for cataloguing purposes, as most of them are not fully sapient like most samples.
04588d3ad4ec7888fcad839461228d2d143f6661
Ben Tennyson (Reboot)
0
182
643
2020-05-31T03:20:20Z
Jaswacker
30585766
Created page with "placeholder"
wikitext
text/x-wiki
placeholder
ff55435345834a3fe224936776c2aa15f6ed5358
Ben 10 (2016)
0
183
644
2020-05-31T03:20:42Z
Jaswacker
30585766
Created page with "placeholder"
wikitext
text/x-wiki
placeholder
ff55435345834a3fe224936776c2aa15f6ed5358
Transformations/Reboot
0
184
645
2020-05-31T03:20:56Z
Jaswacker
30585766
Created page with "placeholder"
wikitext
text/x-wiki
placeholder
ff55435345834a3fe224936776c2aa15f6ed5358
646
645
2020-05-31T03:21:59Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|rbt}}
{{:Transformations/Reboot/disambig}}
placeholder
<noinclude>[[Category:Transformations]]</noinclude>
ed9a2372766977701051902528420a75ad1ea693
Transformations/Prime/disambig
0
96
648
354
2020-05-31T03:22:59Z
Jaswacker
30585766
wikitext
text/x-wiki
<div style="margin:.5em 1em .5em 1em;padding:.5em;background:#f7f8ff;border:thin solid #aaa;text-align:center;">This page is dedicated to the alien transformations of [[Ben Tennyson (Prime)|Ben Prime]]. To see the transformations of the various other [[Ben Tennyson|Bens]] in the multiverse, see [[Transformations (Disambiguation)]]. <span style="font-size:95%;">
</div>
<noinclude>[[Category:Templates]]</noinclude>
dfd0cb4372339db006f30d7bb8d0a484856318cf
Transformations/Reboot/disambig
0
185
649
2020-05-31T03:23:24Z
Jaswacker
30585766
Created page with "<div style="margin:.5em 1em .5em 1em;padding:.5em;background:#f7f8ff;border:thin solid #aaa;text-align:center;">This page is dedicated to the alien transformations of Ben Te..."
wikitext
text/x-wiki
<div style="margin:.5em 1em .5em 1em;padding:.5em;background:#f7f8ff;border:thin solid #aaa;text-align:center;">This page is dedicated to the alien transformations of [[Ben Tennyson (Reboot)|''Reboot'' Ben]]. To see the transformations of the various other [[Ben Tennyson|Bens]] in the multiverse, see [[Transformations (Disambiguation)]]. <span style="font-size:95%;">
</div>
<noinclude>[[Category:Templates]]</noinclude>
6f25815bdbc69faecf4af48d8ae6166933659e18
Main Page/disambig
0
89
650
327
2020-05-31T03:26:53Z
Jaswacker
30585766
wikitext
text/x-wiki
<div style="margin:.5em 1em .5em 1em;padding:.5em;background:#f7f8ff;border:thin solid #aaa;text-align:center;">'''''Omnipedia''' is the unofficial [[Ben 10]] wiki and knowledge database of '''[[Special:Statistics|{{ALLPAGES}}]]''' articles that anyone can edit or add to! <span style="font-size:95%;">
</div>
<noinclude>[[Category: Main Page templates]]</noinclude>
68bc587eb4e34885411f4f7d8c486e2968aa20a1
651
650
2020-05-31T03:27:36Z
Jaswacker
30585766
wikitext
text/x-wiki
<div style="margin:.5em 1em .5em 1em;padding:.5em;background:#f7f8ff;border:thin solid #aaa;text-align:center;">'''''Omnipedia''' is the unofficial [[Ben 10]] wiki and knowledge database of '''[[Special:Statistics|{{NUMBEROFARTICLES}}]]''' articles that anyone can edit or add to! <span style="font-size:95%;">
</div>
<noinclude>[[Category: Main Page templates]]</noinclude>
dd4c9746f067de8e5a733ba8aef13c38da41871d
652
651
2020-05-31T03:29:09Z
Jaswacker
30585766
wikitext
text/x-wiki
<div style="margin:.5em 1em .5em 1em;padding:.5em;background:#f7f8ff;border:thin solid #aaa;text-align:center;">'''''Omnipedia''' is the unofficial [[Ben 10]] wiki and knowledge database of '''[[Special:Statistics|{{NUMBEROFPAGES}}]]''' articles that anyone can edit or add to! <span style="font-size:95%;">
</div>
<noinclude>[[Category: Main Page templates]]</noinclude>
eb2241618b6805f2fb63befeae33d3da9ecf1ab8
File:Plantapocalypse Base.png
6
186
657
2020-05-31T04:33:32Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Plantapocalypse Grown.png
6
187
658
2020-05-31T04:33:52Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Minor Transformations/Albedo
0
175
670
636
2020-05-31T16:48:28Z
Jaswacker
30585766
wikitext
text/x-wiki
<sup>[[Minor_Transformations/Albedo|Full page link.]]</sup>
dc61e874143257c1abf8f63d754a655f8c96007a
Minor Transformations
0
4
671
635
2020-05-31T17:32:04Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">Unseen</div>
{{:Minor_Transformations/Unseen}}
</div>
<div class="tabbox">
<div class="tab">Albedo</div>
{{:Minor_Transformations/Albedo}}
</div>
<div class="tabbox">
<div class="tab">Ben 23</div>
{{:Minor_Transformations/Ben_23}}
</div>
<div class="tabbox">
<div class="tab">Bad Ben</div>
{{:Minor_Transformations/Bad_Ben}}
</div>
<div class="tabbox">
<div class="tab">Mad Ben</div>
{{:Minor_Transformations/Mad_Ben}}
</div>
<div class="tabbox">
<div class="tab">Nega Ben</div>
{{:Minor_Transformations/Nega_Ben}}
</div>
<div class="tabbox">
<div class="tab">Gwen 10</div>
{{:Minor_Transformations/Gwen_10}}
</div>
<div class="tabbox">
<div class="tab">Ben 10,000</div>
{{:Minor_Transformations/Ben_10K}}
</div>
<div class="tabbox">
<div class="tab">Other</div>
{{:Minor_Transformations/Other}}
</div>
</div>
<noinclude>[[Category:Transformations]]</noinclude>
70205ab64fa1f842e85c2296c3d0436f74f42b02
679
671
2020-05-31T17:51:40Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">Unseen</div>
{{:Minor_Transformations/Unseen}}
</div>
<div class="tabbox">
<div class="tab">Albedo</div>
{{:Minor_Transformations/Albedo}}
</div>
<div class="tabbox">
<div class="tab">Ben 23</div>
{{:Minor_Transformations/Ben_23}}
</div>
<div class="tabbox">
<div class="tab">Bad Ben</div>
{{:Minor_Transformations/Bad_Ben}}
</div>
<div class="tabbox">
<div class="tab">Mad Ben</div>
{{:Minor_Transformations/Mad_Ben}}
</div>
<div class="tabbox">
<div class="tab">Nega Ben</div>
{{:Minor_Transformations/Nega_Ben}}
</div>
<div class="tabbox">
<div class="tab">Gwen 10</div>
{{:Minor_Transformations/Gwen_10}}
</div>
<div class="tabbox">
<div class="tab">Ben 10,000</div>
{{:Minor_Transformations/Ben_10K}}
</div>
<div class="tabbox">
<div class="tab">Other</div>
{{:Minor_Transformations/Other}}
</div>
</div>
<noinclude>[[Category:Transformations]]</noinclude>
ff23291a867f1e1a6af0dfc2d76f44672d249de6
Minor Transformations/Ben 10K
0
188
672
2020-05-31T17:41:17Z
Jaswacker
30585766
Created page with "This page is dedicated by the alien transformations used by [[Ben 10,000 (Original Series)]] in the [[Ben 10,000 (Episode)|episode of the same name]], and the aliens used by h..."
wikitext
text/x-wiki
This page is dedicated by the alien transformations used by [[Ben 10,000 (Original Series)]] in the [[Ben 10,000 (Episode)|episode of the same name]], and the aliens used by his son [[Ken Tennyson (Original Series)|Kenny]].
For the fusion transformations of his ''[[Ben 10: Omniverse|Omniverse]]'' counterpart, see [[Transformations/Biomnitrix|Biomnitrix Transformations]].
For Ben 10,000's ''[[Ben 10: Ultimate Alien|Ultimate Alien]]'' superpowered transformation counterpart, see [[Ultimate Ben]].
<sup>[[Minor_Transformations/Ben_10K|Full page link.]]</sup>
__TOC__
<br>
{{-}}
===Placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Ken Tennyson==
===Placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
1682cd28c9ac8cf524e637387f7b3700378247f4
673
672
2020-05-31T17:41:59Z
Jaswacker
30585766
wikitext
text/x-wiki
This page is dedicated by the alien transformations used by [[Ben 10,000 (Original Series)]] in the [[Ben 10,000 (Episode)|episode of the same name]], and the aliens used by his son [[Ken Tennyson (Original Series)|Kenny]] in the episode [[Ken 10]].
For the fusion transformations of his ''[[Ben 10: Omniverse|Omniverse]]'' counterpart, see [[Transformations/Biomnitrix|Biomnitrix Transformations]].
For Ben 10,000's ''[[Ben 10: Ultimate Alien|Ultimate Alien]]'' superpowered transformation counterpart, see [[Ultimate Ben]].
<sup>[[Minor_Transformations/Ben_10K|Full page link.]]</sup>
__TOC__
<br>
{{-}}
===Placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Ken Tennyson==
===Placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
1d3e0f785f9e15d7c7af38febc34d4b528d346de
674
673
2020-05-31T17:42:19Z
Jaswacker
30585766
wikitext
text/x-wiki
This page is dedicated by the alien transformations used by [[Ben 10,000 (Original Series)]] in the [[Ben 10,000 (Episode)|episode of the same name]], and the aliens used by his son [[Ken Tennyson (Original Series)|Kenny]] in the episode [[Ken 10]].
For the fusion transformations of his ''[[Ben 10: Omniverse|Omniverse]]'' counterpart, see [[Transformations/Biomnitrix|Biomnitrix Transformations]].
For Ben 10,000's ''[[Ben 10: Ultimate Alien|Ultimate Alien]]'' superpowered transformation counterpart, see [[Ultimate Ben]].
<br>
<sup>[[Minor_Transformations/Ben_10K|Full page link.]]</sup>
__TOC__
<br>
{{-}}
===Placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Ken Tennyson==
===Placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
8ceeb69866ef701bf664b4ed5f6d4dde014e5d15
675
674
2020-05-31T17:42:39Z
Jaswacker
30585766
wikitext
text/x-wiki
<sup>[[Minor_Transformations/Ben_10K|Full page link.]]</sup>
This page is dedicated by the alien transformations used by [[Ben 10,000 (Original Series)]] in the [[Ben 10,000 (Episode)|episode of the same name]], and the aliens used by his son [[Ken Tennyson (Original Series)|Kenny]] in the episode [[Ken 10]].
For the fusion transformations of his ''[[Ben 10: Omniverse|Omniverse]]'' counterpart, see [[Transformations/Biomnitrix|Biomnitrix Transformations]].
For Ben 10,000's ''[[Ben 10: Ultimate Alien|Ultimate Alien]]'' superpowered transformation counterpart, see [[Ultimate Ben]].
__TOC__
<br>
{{-}}
===Placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Ken Tennyson==
===Placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
0c5ecf2d27e5821b9cbb6a6843d9c954a50850a9
676
675
2020-05-31T17:42:56Z
Jaswacker
30585766
wikitext
text/x-wiki
<sup>[[Minor_Transformations/Ben_10K|Full page link.]]</sup><br>
This page is dedicated by the alien transformations used by [[Ben 10,000 (Original Series)]] in the [[Ben 10,000 (Episode)|episode of the same name]], and the aliens used by his son [[Ken Tennyson (Original Series)|Kenny]] in the episode [[Ken 10]].
For the fusion transformations of his ''[[Ben 10: Omniverse|Omniverse]]'' counterpart, see [[Transformations/Biomnitrix|Biomnitrix Transformations]].
For Ben 10,000's ''[[Ben 10: Ultimate Alien|Ultimate Alien]]'' superpowered transformation counterpart, see [[Ultimate Ben]].
__TOC__
<br>
{{-}}
===Placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Ken Tennyson==
===Placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
1643c54501e97cd5f1bb7cd6b41f78e93e67af59
677
676
2020-05-31T17:44:56Z
Jaswacker
30585766
wikitext
text/x-wiki
<sup>[[Minor_Transformations/Ben_10K|Full page link.]]</sup><br>
This page is dedicated by the alien transformations used by [[Ben 10,000 (Original Series)]], and the aliens used by his son [[Ken Tennyson (Original Series)|Kenny]] in the episode [[Ken 10]].
For the fusion transformations of his ''[[Ben 10: Omniverse|Omniverse]]'' counterpart, see [[Transformations/Biomnitrix|Biomnitrix Transformations]].
For Ben 10,000's ''[[Ben 10: Ultimate Alien|Ultimate Alien]]'' superpowered transformation counterpart, see [[Ultimate Ben]].
__TOC__
<br>
{{-}}
===Placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Ken Tennyson==
===Placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
b1f8fa7be8f4c4701b2b864bce4c248ed084c8b7
678
677
2020-05-31T17:50:26Z
Jaswacker
30585766
wikitext
text/x-wiki
This page is dedicated by the alien transformations used by [[Ben 10,000 (Original Series)]], and the aliens used by his son [[Ken Tennyson (Original Series)|Kenny]] in the episode [[Ken 10]].
For the fusion transformations of his ''[[Ben 10: Omniverse|Omniverse]]'' counterpart, see [[Transformations/Biomnitrix|Biomnitrix Transformations]].
For Ben 10,000's ''[[Ben 10: Ultimate Alien|Ultimate Alien]]'' superpowered transformation counterpart, see [[Ultimate Ben]].
<sup>[[Minor_Transformations/Ben_10K|Full page link.]]</sup>
__TOC__
<br>
{{-}}
===Placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Ken Tennyson==
===Placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
02ffac1914f5992d19a4938675b106541c89ed68
File:RaceagainsttimeBen.png
6
189
680
2020-05-31T17:56:15Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Ben Tennyson (Disambiguation)
0
24
681
587
2020-05-31T17:57:25Z
Carth
30634784
/* Live Action */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Alternate Versions of Ben Tennyson==
===Future Versions of Ben Tennyson===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Eon|Eon]]
</gallery></center>
===The Greater Multiverse===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Max Tennyson (Gwen 10)|Max Tennyson from "Gwen 10"]]
File:PLACEHOLDER2.png|[[Gwen Tennyson (placeholder dimension)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Dimension 23)|"Ben 23"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (placeholder dimension)|"No-Watch Ben"]]
File:PLACEHOLDER2.png|[[Mad Ben|Mad Ben]]
File:PLACEHOLDER2.png|[[Bad Ben|Bad Ben]]
File:PLACEHOLDER2.png|[[Nega Ben|Nega Ben]]
File:PLACEHOLDER2.png|[[Benzarro|Benzarro]]
File:PLACEHOLDER2.png|[[Argit (placeholder dimension)|"Argit 10"]]
</gallery></center>
===Live Action===
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
bf02ca6127ad1fc7fb74184f3234f6e0c53c730f
Minor Transformations/Other
0
181
682
669
2020-05-31T23:57:36Z
Carth
30634784
wikitext
text/x-wiki
<sup>[[Minor_Transformations/Other|Full page link.]]</sup>
{{-}}
==Ben Tennyson (Race Against Time)==
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Grey Matter===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Diamondhead===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Wildmutt===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Eon===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Alpha==
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Four Arms===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Humungousaur===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five Earth samples are said to be present inside the Omnitrix.
{{-}}
===Human===
As Ben is a human himself, he is incapable of using this transformation. If an alien were to use the device however, they would be able to transform into a human. [[Argit]] is the only alien user of an Omnitrix confirmed to have a Human transformation.
{{-}}
===Primate, Elephant, Dolphin and White Lab Mouse===
It's possible that these animal samples are not meant for transformation, rather for cataloguing purposes, as most of them are not fully sapient like most samples.
9d2c6c3402902f910c4300f5f9bbe82ba872afb6
683
682
2020-06-01T00:04:45Z
Carth
30634784
/* Ben Tennyson (Race Against Time) */
wikitext
text/x-wiki
<sup>[[Minor_Transformations/Other|Full page link.]]</sup>
{{-}}
==Ben Tennyson (Race Against Time)==
The following are forms used by Ben Tennyson in [[Ben 10: Race Against Time|Race Against Time]]. It's also known that he has access to Wildmutt, XLR8, Four Arms, Stinkfly, Ripjaws, Upgrade and Cannonbolt, but these go unseen, only being confirmed by the presence of their icons.
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Grey Matter===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Diamondhead===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Wildmutt===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Eon===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Alpha==
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Four Arms===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Humungousaur===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five Earth samples are said to be present inside the Omnitrix.
{{-}}
===Human===
As Ben is a human himself, he is incapable of using this transformation. If an alien were to use the device however, they would be able to transform into a human. [[Argit]] is the only alien user of an Omnitrix confirmed to have a Human transformation.
{{-}}
===Primate, Elephant, Dolphin and White Lab Mouse===
It's possible that these animal samples are not meant for transformation, rather for cataloguing purposes, as most of them are not fully sapient like most samples.
ae56ec08bdcc1c96bd5617cd6a7b6a5842138bf0
684
683
2020-06-01T00:05:25Z
Carth
30634784
/* Ben Tennyson (Race Against Time) */
wikitext
text/x-wiki
<sup>[[Minor_Transformations/Other|Full page link.]]</sup>
{{-}}
==Ben Tennyson (Race Against Time)==
The following are forms used by Ben Tennyson in [[Ben 10: Race Against Time|Race Against Time]]. It's also known that he has access to '''Wildmutt''', '''XLR8''', '''Four Arms''', '''Stinkfly''', '''Ripjaws''', '''Upgrade''' and '''Cannonbolt''', but these go unseen, only being confirmed by the presence of their icons.
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Grey Matter===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Diamondhead===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Wildmutt===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Eon===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Alpha==
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Four Arms===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Humungousaur===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five Earth samples are said to be present inside the Omnitrix.
{{-}}
===Human===
As Ben is a human himself, he is incapable of using this transformation. If an alien were to use the device however, they would be able to transform into a human. [[Argit]] is the only alien user of an Omnitrix confirmed to have a Human transformation.
{{-}}
===Primate, Elephant, Dolphin and White Lab Mouse===
It's possible that these animal samples are not meant for transformation, rather for cataloguing purposes, as most of them are not fully sapient like most samples.
8e7445ff1baf916f1be2ece5eb6015069b7e1212
686
684
2020-06-01T01:22:07Z
Carth
30634784
/* Eon */
wikitext
text/x-wiki
<sup>[[Minor_Transformations/Other|Full page link.]]</sup>
{{-}}
==Ben Tennyson (Race Against Time)==
The following are forms used by Ben Tennyson in [[Ben 10: Race Against Time|Race Against Time]]. It's also known that he has access to '''Wildmutt''', '''XLR8''', '''Four Arms''', '''Stinkfly''', '''Ripjaws''', '''Upgrade''' and '''Cannonbolt''', but these go unseen, only being confirmed by the presence of their icons.
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Grey Matter===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Diamondhead===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Wildmutt===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Eon===
[[File:Eon_Transformation.png|thumb|200px|caption]]
'''Eon''' is a Chronian from the planet Chronia.
After hacking his way through the Omnitrix's firewalls, Eon forced Ben to transform into a copy of himself. His powers are identical to Eon's except amplified due to the rebirth.
The form was lost the moment Ben transformed back into himself with the help of Gwen coaching him to break free from Eon's control.
{{-}}
==Alpha==
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Four Arms===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Humungousaur===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five Earth samples are said to be present inside the Omnitrix.
{{-}}
===Human===
As Ben is a human himself, he is incapable of using this transformation. If an alien were to use the device however, they would be able to transform into a human. [[Argit]] is the only alien user of an Omnitrix confirmed to have a Human transformation.
{{-}}
===Primate, Elephant, Dolphin and White Lab Mouse===
It's possible that these animal samples are not meant for transformation, rather for cataloguing purposes, as most of them are not fully sapient like most samples.
7e5afb3695e9d808e7a61b0d87402eea28a37454
687
686
2020-06-01T01:22:44Z
Carth
30634784
/* Eon */
wikitext
text/x-wiki
<sup>[[Minor_Transformations/Other|Full page link.]]</sup>
{{-}}
==Ben Tennyson (Race Against Time)==
The following are forms used by Ben Tennyson in [[Ben 10: Race Against Time|Race Against Time]]. It's also known that he has access to '''Wildmutt''', '''XLR8''', '''Four Arms''', '''Stinkfly''', '''Ripjaws''', '''Upgrade''' and '''Cannonbolt''', but these go unseen, only being confirmed by the presence of their icons.
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Grey Matter===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Diamondhead===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Wildmutt===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Eon===
[[File:Eon_Transformation.png|thumb|200px|caption]]
'''Eon''' is a Chronian from the planet Chronia.
After hacking his way through the Omnitrix's firewalls, Eon forced Ben to transform into a copy of himself. His powers are identical to Eon's except amplified due to the rebirth.
The form was lost the moment Ben transformed back into himself with the help of Gwen coaching him to break free from Eon's control.
For more information, see [[Eon (Race Against Time]|Eon]].
{{-}}
==Alpha==
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Four Arms===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Humungousaur===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five Earth samples are said to be present inside the Omnitrix.
{{-}}
===Human===
As Ben is a human himself, he is incapable of using this transformation. If an alien were to use the device however, they would be able to transform into a human. [[Argit]] is the only alien user of an Omnitrix confirmed to have a Human transformation.
{{-}}
===Primate, Elephant, Dolphin and White Lab Mouse===
It's possible that these animal samples are not meant for transformation, rather for cataloguing purposes, as most of them are not fully sapient like most samples.
303779119fa685b10cb7b278f0ab4a9cedb3e178
688
687
2020-06-01T01:22:58Z
Carth
30634784
/* Eon */
wikitext
text/x-wiki
<sup>[[Minor_Transformations/Other|Full page link.]]</sup>
{{-}}
==Ben Tennyson (Race Against Time)==
The following are forms used by Ben Tennyson in [[Ben 10: Race Against Time|Race Against Time]]. It's also known that he has access to '''Wildmutt''', '''XLR8''', '''Four Arms''', '''Stinkfly''', '''Ripjaws''', '''Upgrade''' and '''Cannonbolt''', but these go unseen, only being confirmed by the presence of their icons.
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Grey Matter===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Diamondhead===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Wildmutt===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Eon===
[[File:Eon_Transformation.png|thumb|200px|caption]]
'''Eon''' is a Chronian from the planet Chronia.
After hacking his way through the Omnitrix's firewalls, Eon forced Ben to transform into a copy of himself. His powers are identical to Eon's except amplified due to the rebirth.
The form was lost the moment Ben transformed back into himself with the help of Gwen coaching him to break free from Eon's control.
For more information, see [[Eon (Race Against Time)|Eon]].
{{-}}
==Alpha==
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Four Arms===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Humungousaur===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five Earth samples are said to be present inside the Omnitrix.
{{-}}
===Human===
As Ben is a human himself, he is incapable of using this transformation. If an alien were to use the device however, they would be able to transform into a human. [[Argit]] is the only alien user of an Omnitrix confirmed to have a Human transformation.
{{-}}
===Primate, Elephant, Dolphin and White Lab Mouse===
It's possible that these animal samples are not meant for transformation, rather for cataloguing purposes, as most of them are not fully sapient like most samples.
383faed154de66b2dd746e22fd607c45cb81d544
689
688
2020-06-01T01:24:56Z
Carth
30634784
/* Eon */
wikitext
text/x-wiki
<sup>[[Minor_Transformations/Other|Full page link.]]</sup>
{{-}}
==Ben Tennyson (Race Against Time)==
The following are forms used by Ben Tennyson in [[Ben 10: Race Against Time|Race Against Time]]. It's also known that he has access to '''Wildmutt''', '''XLR8''', '''Four Arms''', '''Stinkfly''', '''Ripjaws''', '''Upgrade''' and '''Cannonbolt''', but these go unseen, only being confirmed by the presence of their icons.
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Grey Matter===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Diamondhead===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Wildmutt===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Eon===
[[File:Eon_Transformation.png|thumb|200px|caption]]
'''Eon''' is a '''Chronian''' from the planet '''Chronia'''.
After hacking his way through the Omnitrix's firewalls, Eon forced Ben to transform into a copy of himself. His powers are identical to Eon's except amplified due to the rebirth.
The form was lost the moment Ben transformed back into himself with the help of Gwen coaching him to break free from Eon's control.
This form is treated as non-cannonical due to Eon's origins changing in [[Ben 10,000 Returns|Ultimate Alien]] and [[Ben Again|Omniverse]].
For more information, see [[Eon (Race Against Time)|Eon]].
{{-}}
==Alpha==
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Four Arms===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Humungousaur===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five Earth samples are said to be present inside the Omnitrix.
{{-}}
===Human===
As Ben is a human himself, he is incapable of using this transformation. If an alien were to use the device however, they would be able to transform into a human. [[Argit]] is the only alien user of an Omnitrix confirmed to have a Human transformation.
{{-}}
===Primate, Elephant, Dolphin and White Lab Mouse===
It's possible that these animal samples are not meant for transformation, rather for cataloguing purposes, as most of them are not fully sapient like most samples.
a489f96c181fb772ff63eafa0ed720735842f267
690
689
2020-06-01T01:26:21Z
Carth
30634784
/* Eon */
wikitext
text/x-wiki
<sup>[[Minor_Transformations/Other|Full page link.]]</sup>
{{-}}
==Ben Tennyson (Race Against Time)==
The following are forms used by Ben Tennyson in [[Ben 10: Race Against Time|Race Against Time]]. It's also known that he has access to '''Wildmutt''', '''XLR8''', '''Four Arms''', '''Stinkfly''', '''Ripjaws''', '''Upgrade''' and '''Cannonbolt''', but these go unseen, only being confirmed by the presence of their icons.
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Grey Matter===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Diamondhead===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Wildmutt===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Eon===
[[File:Eon_Transformation.png|thumb|200px|caption]]
'''Eon''' is a '''Chronian''' from the planet '''Chronia'''.
After hacking his way through the Omnitrix's firewalls, Eon forced Ben to transform into a copy of himself. His appearance (sans helmet) and powers are identical to Eon's except amplified due to the rebirth.
The form was lost the moment Ben transformed back into himself with the help of Gwen coaching him to break free from Eon's control.
This form is treated as non-cannonical due to Eon's origins changing in [[Ben 10,000 Returns|Ultimate Alien]] and [[Ben Again|Omniverse]].
For more information, see [[Eon (Race Against Time)|Eon]].
{{-}}
==Alpha==
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Four Arms===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Humungousaur===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five Earth samples are said to be present inside the Omnitrix.
{{-}}
===Human===
As Ben is a human himself, he is incapable of using this transformation. If an alien were to use the device however, they would be able to transform into a human. [[Argit]] is the only alien user of an Omnitrix confirmed to have a Human transformation.
{{-}}
===Primate, Elephant, Dolphin and White Lab Mouse===
It's possible that these animal samples are not meant for transformation, rather for cataloguing purposes, as most of them are not fully sapient like most samples.
c4ffa12b1924febc1629c8d2c555602d284fd594
691
690
2020-06-01T01:34:57Z
Carth
30634784
/* Eon */
wikitext
text/x-wiki
<sup>[[Minor_Transformations/Other|Full page link.]]</sup>
{{-}}
==Ben Tennyson (Race Against Time)==
The following are forms used by Ben Tennyson in [[Ben 10: Race Against Time|Race Against Time]]. It's also known that he has access to '''Wildmutt''', '''XLR8''', '''Four Arms''', '''Stinkfly''', '''Ripjaws''', '''Upgrade''' and '''Cannonbolt''', but these go unseen, only being confirmed by the presence of their icons.
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Grey Matter===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Diamondhead===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Wildmutt===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Eon===
[[File:Eon_Transformation.png|thumb|200px|caption]]
'''Eon''' is a '''Chronian''' from the planet '''Chronia'''.
After hacking his way through the Omnitrix's firewalls, Eon forced [[Ben Tennyson (Race Against Time)|Ben]] to transform into a copy of himself. His appearance (sans helmet) and powers are identical to Eon's except amplified due to the rebirth.
The form was lost the moment Ben transformed back into himself with the help of [[Gwen Tennyson (Race Against Time|Gwen]] coaching him to break free from Eon's control.
This form is treated as non-cannonical due to Eon's origins changing in [[Ben 10,000 Returns|Ultimate Alien]] and [[Ben Again|Omniverse]].
For more information, see [[Eon (Disambiguation)|Eon]].
{{-}}
==Alpha==
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Four Arms===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Humungousaur===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five Earth samples are said to be present inside the Omnitrix.
{{-}}
===Human===
As Ben is a human himself, he is incapable of using this transformation. If an alien were to use the device however, they would be able to transform into a human. [[Argit]] is the only alien user of an Omnitrix confirmed to have a Human transformation.
{{-}}
===Primate, Elephant, Dolphin and White Lab Mouse===
It's possible that these animal samples are not meant for transformation, rather for cataloguing purposes, as most of them are not fully sapient like most samples.
d324d0348c1434d83715e54cfce7814e865f3cf5
692
691
2020-06-01T01:35:26Z
Carth
30634784
/* Eon */
wikitext
text/x-wiki
<sup>[[Minor_Transformations/Other|Full page link.]]</sup>
{{-}}
==Ben Tennyson (Race Against Time)==
The following are forms used by Ben Tennyson in [[Ben 10: Race Against Time|Race Against Time]]. It's also known that he has access to '''Wildmutt''', '''XLR8''', '''Four Arms''', '''Stinkfly''', '''Ripjaws''', '''Upgrade''' and '''Cannonbolt''', but these go unseen, only being confirmed by the presence of their icons.
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Grey Matter===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Diamondhead===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Wildmutt===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Eon===
[[File:Eon_Transformation.png|thumb|200px|caption]]
'''Eon''' is a '''[[Chronian]]''' from the planet '''[[Chronia]]'''.
After hacking his way through the Omnitrix's firewalls, Eon forced [[Ben Tennyson (Race Against Time)|Ben]] to transform into a copy of himself. His appearance (sans helmet) and powers are identical to Eon's except amplified due to the rebirth.
The form was lost the moment Ben transformed back into himself with the help of [[Gwen Tennyson (Race Against Time|Gwen]] coaching him to break free from Eon's control.
This form is treated as non-cannonical due to Eon's origins changing in [[Ben 10,000 Returns|Ultimate Alien]] and [[Ben Again|Omniverse]].
For more information, see [[Eon (Disambiguation)|Eon]].
{{-}}
==Alpha==
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Four Arms===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Humungousaur===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five Earth samples are said to be present inside the Omnitrix.
{{-}}
===Human===
As Ben is a human himself, he is incapable of using this transformation. If an alien were to use the device however, they would be able to transform into a human. [[Argit]] is the only alien user of an Omnitrix confirmed to have a Human transformation.
{{-}}
===Primate, Elephant, Dolphin and White Lab Mouse===
It's possible that these animal samples are not meant for transformation, rather for cataloguing purposes, as most of them are not fully sapient like most samples.
a889406a424f35069e07e383305c0fa4c727ccae
693
692
2020-06-01T01:38:34Z
Jaswacker
30585766
/* Eon */
wikitext
text/x-wiki
<sup>[[Minor_Transformations/Other|Full page link.]]</sup>
{{-}}
==Ben Tennyson (Race Against Time)==
The following are forms used by Ben Tennyson in [[Ben 10: Race Against Time|Race Against Time]]. It's also known that he has access to '''Wildmutt''', '''XLR8''', '''Four Arms''', '''Stinkfly''', '''Ripjaws''', '''Upgrade''' and '''Cannonbolt''', but these go unseen, only being confirmed by the presence of their icons.
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Grey Matter===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Diamondhead===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Wildmutt===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Eon===
[[File:Eon_Transformation.png|thumb|200px|caption]]
'''Eon''' is a [[Chronian]] from the planet [[Chronia]].
After hacking his way through the Omnitrix's firewalls, Eon forced [[Ben Tennyson (Race Against Time)|Ben]] to transform into a copy of himself. His appearance (sans helmet) and powers are identical to Eon's except amplified due to the rebirth.
The form was lost the moment Ben transformed back into himself with the help of [[Gwen Tennyson (Race Against Time)|Gwen]] coaching him to break free from Eon's control.
This form is treated as non-canonical due to Eon's origins changing in ''[[Ben 10,000 Returns|Ultimate Alien]]'' and ''[[Ben Again|Omniverse]]''.
For more information, see [[Eon (Disambiguation)|Eon]].
{{-}}
==Alpha==
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Four Arms===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Humungousaur===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five Earth samples are said to be present inside the Omnitrix.
{{-}}
===Human===
As Ben is a human himself, he is incapable of using this transformation. If an alien were to use the device however, they would be able to transform into a human. [[Argit]] is the only alien user of an Omnitrix confirmed to have a Human transformation.
{{-}}
===Primate, Elephant, Dolphin and White Lab Mouse===
It's possible that these animal samples are not meant for transformation, rather for cataloguing purposes, as most of them are not fully sapient like most samples.
e78d493ab3e259763cb3cb70baf4369dacb43700
694
693
2020-06-01T01:39:24Z
Jaswacker
30585766
/* Eon */
wikitext
text/x-wiki
<sup>[[Minor_Transformations/Other|Full page link.]]</sup>
{{-}}
==Ben Tennyson (Race Against Time)==
The following are forms used by Ben Tennyson in [[Ben 10: Race Against Time|Race Against Time]]. It's also known that he has access to '''Wildmutt''', '''XLR8''', '''Four Arms''', '''Stinkfly''', '''Ripjaws''', '''Upgrade''' and '''Cannonbolt''', but these go unseen, only being confirmed by the presence of their icons.
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Grey Matter===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Diamondhead===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Wildmutt===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Eon===
[[File:Eon_Transformation.png|thumb|200px|caption]]
'''Eon''' is a [[Chronian]] from the planet [[Chronia]].
After hacking his way through the Omnitrix's firewalls, Eon forced [[Ben Tennyson (Race Against Time)|Ben]] to transform into a copy of himself. His appearance (sans helmet) and powers are identical to Eon's except amplified due to the rebirth.
The form was lost the moment Ben transformed back into himself with the help of [[Gwen Tennyson (Race Against Time)|Gwen]] coaching him to break free from Eon's control.
This form is treated as non-canonical due to Eon's origins changing in ''[[Ben 10,000 Returns|Ultimate Alien]]'' and ''[[Ben Again|Omniverse]]''.
<small>For more information on his multiversal counterparts, see [[Eon (Disambiguation)|Eon]].</small>
{{-}}
==Alpha==
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Four Arms===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Humungousaur===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five Earth samples are said to be present inside the Omnitrix.
{{-}}
===Human===
As Ben is a human himself, he is incapable of using this transformation. If an alien were to use the device however, they would be able to transform into a human. [[Argit]] is the only alien user of an Omnitrix confirmed to have a Human transformation.
{{-}}
===Primate, Elephant, Dolphin and White Lab Mouse===
It's possible that these animal samples are not meant for transformation, rather for cataloguing purposes, as most of them are not fully sapient like most samples.
5a746bcf41353abd422192bf3e22032b99d37595
695
694
2020-06-01T01:39:35Z
Jaswacker
30585766
/* Eon */
wikitext
text/x-wiki
<sup>[[Minor_Transformations/Other|Full page link.]]</sup>
{{-}}
==Ben Tennyson (Race Against Time)==
The following are forms used by Ben Tennyson in [[Ben 10: Race Against Time|Race Against Time]]. It's also known that he has access to '''Wildmutt''', '''XLR8''', '''Four Arms''', '''Stinkfly''', '''Ripjaws''', '''Upgrade''' and '''Cannonbolt''', but these go unseen, only being confirmed by the presence of their icons.
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Grey Matter===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Diamondhead===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Wildmutt===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Eon===
[[File:Eon_Transformation.png|thumb|200px|caption]]
'''Eon''' is a [[Chronian]] from the planet [[Chronia]].
After hacking his way through the Omnitrix's firewalls, Eon forced [[Ben Tennyson (Race Against Time)|Ben]] to transform into a copy of himself. His appearance (sans helmet) and powers are identical to Eon's except amplified due to the rebirth.
The form was lost the moment Ben transformed back into himself with the help of [[Gwen Tennyson (Race Against Time)|Gwen]] coaching him to break free from Eon's control.
This form is treated as non-canonical due to Eon's origins changing in ''[[Ben 10,000 Returns|Ultimate Alien]]'' and ''[[Ben Again|Omniverse]]''.
<small>For more information on his multiversal counterparts, see [[Eon (Disambiguation)|Eon]].</small>
{{-}}
==Alpha==
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Four Arms===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Humungousaur===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five Earth samples are said to be present inside the Omnitrix.
{{-}}
===Human===
As Ben is a human himself, he is incapable of using this transformation. If an alien were to use the device however, they would be able to transform into a human. [[Argit]] is the only alien user of an Omnitrix confirmed to have a Human transformation.
{{-}}
===Primate, Elephant, Dolphin and White Lab Mouse===
It's possible that these animal samples are not meant for transformation, rather for cataloguing purposes, as most of them are not fully sapient like most samples.
2f5cf69815b4d98de66209b08fff790ad57fb13f
File:Eon Transformation.png
6
190
685
2020-06-01T00:55:03Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Eon (Disambiguation)
0
191
696
2020-06-01T01:48:20Z
Carth
30634784
Created page with "{{Disambig}} Eon is a villain who debuted in the movie, Ben 10: Race Against Time, but has appeared in Ultimate Alien and Omniverse under differing circumstances. The first on..."
wikitext
text/x-wiki
{{Disambig}}
Eon is a villain who debuted in the movie, Ben 10: Race Against Time, but has appeared in Ultimate Alien and Omniverse under differing circumstances. The first one is an alien, the latter two are alternate "bad future" versions of Ben.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2png|[[Eon (Race Against Time)]]
File:PLACEHOLDER2.png|[[Eon (Ultimate Alien)]]
File:PLACEHOLDER2.png|[[Eon (Omniverse)]]
</gallery></center>
27843214c31d0478deb1d088109f00e9bc2fd38d
697
696
2020-06-01T01:51:49Z
Carth
30634784
wikitext
text/x-wiki
{{Disambig}}
Eon is a villain who debuted in the movie, [[Ben 10: Race Against Time]], but has appeared in Ultimate Alien and Omniverse under differing circumstances. The first one is an alien, the latter two are alternate "bad future" versions of Ben. The last one is a temporary transformation that [[Ben Tennyson (Race Against Time)|Ben ]] was forced to use for a short time.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Eon (Race Against Time)]]
File:PLACEHOLDER2.png|[[Eon (Ultimate Alien)]]
File:PLACEHOLDER2.png|[[Eon (Omniverse)]]
File:Eon_Transformation.png|[[Minor_Transformations/Other#Eon)|Eon (Transformation)]]
</gallery></center>
4857b210c02cbad5069cd3a1f53a22d42cfe4a51
698
697
2020-06-01T01:52:01Z
Carth
30634784
wikitext
text/x-wiki
{{Disambig}}
'''Eon''' is a villain who debuted in the movie, [[Ben 10: Race Against Time]], but has appeared in Ultimate Alien and Omniverse under differing circumstances. The first one is an alien, the latter two are alternate "bad future" versions of Ben. The last one is a temporary transformation that [[Ben Tennyson (Race Against Time)|Ben ]] was forced to use for a short time.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Eon (Race Against Time)]]
File:PLACEHOLDER2.png|[[Eon (Ultimate Alien)]]
File:PLACEHOLDER2.png|[[Eon (Omniverse)]]
File:Eon_Transformation.png|[[Minor_Transformations/Other#Eon)|Eon (Transformation)]]
</gallery></center>
7acca40c19a650dbaf9042b4144526dea236cc42
699
698
2020-06-01T01:54:49Z
Carth
30634784
wikitext
text/x-wiki
{{Disambig}}
'''Eon''' is a villain who debuted in the movie, [[Ben 10: Race Against Time]], but has appeared in Ultimate Alien and Omniverse under differing circumstances. The first one is an alien, the latter two are alternate "bad future" versions of Ben. The last one is a temporary transformation that [[Ben Tennyson (Race Against Time)|Ben ]] was forced to use for a short time.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Eon (Race Against Time)]]
File:PLACEHOLDER2.png|[[Eon (Ultimate Alien)]]
File:PLACEHOLDER2.png|[[Eon (Omniverse)]]
File:Eon_Transformation.png|[[Minor_Transformations/Other#Eon|Eon (Transformation)]]
</gallery></center>
68d7875b2eb76171c4af8d13d0791e6742f78829
700
699
2020-06-01T01:59:57Z
Carth
30634784
wikitext
text/x-wiki
{{Disambig}}
'''Eon''' is a villain who debuted in the movie, [[Ben 10: Race Against Time]], but has appeared in the cartoons under differing circumstances.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Eon (Race Against Time)]]
File:Eon_Transformation.png|[[Minor_Transformations/Other#Eon|Eon (Transformation)]]
File:PLACEHOLDER2.png|[[Eon (Animated)|Eon]]
</gallery></center>
c8387f5e698c3512eb3e4525bb678d8d6f582e77
701
700
2020-06-01T02:00:48Z
Carth
30634784
wikitext
text/x-wiki
{{Disambig}}
'''Eon''' is a villain who debuted in the movie, [[Ben 10: Race Against Time]], but has appeared in the cartoons under differing circumstances.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Eon (Race Against Time)]]
File:Eon_Transformation.png|[[Minor_Transformations/Other#Eon|Eon (Transformation)]]
File:PLACEHOLDER2.png|[[Eon|Eon (Animated)]]
</gallery></center>
41e820939e3c44b47348843c8d07288481519d5e
702
701
2020-06-01T02:01:45Z
Jaswacker
30585766
wikitext
text/x-wiki
{{Disambig}}
'''Eon''' is a villain who debuted in the movie, ''[[Ben 10: Race Against Time]]'', but has also appeared in ''[[Ben 10: Ultimate Alien|Ultimate Alien]]'' and ''[[Ben 10:Omniverse|Omniverse]]'' under differing circumstances.
The former is a [[Chronian]] general, while the latter two are alternate "bad future" versions of [[Ben Tennyson]].
Also in ''Race Against Time'', Ben had a Chronian transformation also named Eon.
<br>
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Eon (Race Against Time)|''Race Against Time'' Eon]]
File:Eon_Transformation.png|[[Minor_Transformations/Other#Eon|Eon (Transformation)]]
File:PLACEHOLDER2.png|[[Eon (Prime)|''Prime'' Eon]]
</gallery></center>
c297b3cbaec8dcb5d950979fec21f69d0bf0b28b
707
702
2020-06-01T02:03:27Z
Jaswacker
30585766
wikitext
text/x-wiki
{{Disambig}}
'''Eon''' is a villain who debuted in the movie, ''[[Ben 10: Race Against Time]]'', but has also appeared in ''[[Ben 10: Ultimate Alien|Ultimate Alien]]'' and ''[[Ben 10: Omniverse|Omniverse]]'' under differing circumstances.
The former is a [[Chronian]] general, while the latter two are alternate "bad future" versions of [[Ben Tennyson]].
Also in ''Race Against Time'', Ben had a Chronian transformation also named Eon.
<br>
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Eon (Race Against Time)|''Race Against Time'' Eon]]
File:Eon_Transformation.png|[[Minor_Transformations/Other#Eon|Eon (Transformation)]]
File:PLACEHOLDER2.png|[[Eon (Prime)|''Prime'' Eon]]
</gallery></center>
94d0863c66516893193a750a8be2e8789a38c7e6
708
707
2020-06-01T02:08:51Z
Carth
30634784
wikitext
text/x-wiki
{{Disambig}}
'''Eon''' is a villain who debuted in the movie, ''[[Ben 10: Race Against Time]]'', but has also appeared in ''[[Ben 10: Ultimate Alien|Ultimate Alien]]'' and ''[[Ben 10: Omniverse|Omniverse]]'' under differing circumstances.
The former is a [[Chronian]] general, while the latter two are alternate "bad future" versions of [[Ben Tennyson]].
Also in ''Race Against Time'', Ben had a Chronian transformation also named Eon.
<br>
<center><gallery widths="250px" heights="300px">
File:Eon_RaceAgainstTime.png|[[Eon (Race Against Time)|''Race Against Time'' Eon]]
File:Eon_Transformation.png|[[Minor_Transformations/Other#Eon|Eon (Transformation)]]
File:PLACEHOLDER2.png|[[Eon (Prime)|''Prime'' Eon]]
</gallery></center>
8e51fc16c99cb450d71ea4988a0cb73d77443e78
710
708
2020-06-01T02:10:25Z
Carth
30634784
wikitext
text/x-wiki
{{Disambig}}
'''Eon''' is a villain who debuted in the movie, ''[[Ben 10: Race Against Time]]'', but has also appeared in ''[[Ben 10: Ultimate Alien|Ultimate Alien]]'' and ''[[Ben 10: Omniverse|Omniverse]]'' under differing circumstances.
The former is a [[Chronian]] general, while the latter two are alternate "bad future" versions of [[Ben Tennyson]].
Also in ''Race Against Time'', Ben had a temporary Chronian transformation also named Eon.
<br>
<center><gallery widths="250px" heights="300px">
File:Eon_RaceAgainstTime.png|[[Eon (Race Against Time)|''Race Against Time'' Eon]]
File:Eon_Transformation.png|[[Minor_Transformations/Other#Eon|Eon (Transformation)]]
File:PLACEHOLDER2.png|[[Eon (Prime)|''Prime'' Eon]]
</gallery></center>
b7fa343be34a20a6d266d4ad7f2afccc83406b83
712
710
2020-06-01T02:20:48Z
Carth
30634784
wikitext
text/x-wiki
{{Disambig}}
'''Eon''' is a villain who debuted in the movie, ''[[Ben 10: Race Against Time]]'', but has also appeared in ''[[Ben 10: Ultimate Alien|Ultimate Alien]]'' and ''[[Ben 10: Omniverse|Omniverse]]'' under differing circumstances.
The former is a [[Chronian]] general, while the latter two are alternate "bad future" versions of [[Ben Tennyson]].
Also in ''Race Against Time'', Ben had a temporary Chronian transformation also named Eon.
<br>
<center><gallery widths="250px" heights="300px">
File:Eon_RaceAgainstTime.png|[[Eon (Race Against Time)|''Race Against Time'' Eon]]
File:Eon_Transformation.png|[[Minor_Transformations/Other#Eon|Eon (Transformation)]]
File:Eon_Omniverse.png|[[Eon (Prime)|''Prime'' Eon]]
</gallery></center>
6a574788e33b8000531b1867b3983e56a31de330
720
712
2020-06-02T00:00:13Z
Jaswacker
30585766
wikitext
text/x-wiki
{{Disambig}}
'''Eon''' is a villain who debuted in the movie, ''[[Ben 10: Race Against Time]]'', but has also appeared in ''[[Ben 10: Ultimate Alien|Ultimate Alien]]'' and ''[[Ben 10: Omniverse|Omniverse]]'' under differing circumstances.
The former is a [[Chronian]] general, while the latter two are alternate "bad future" versions of [[Ben Tennyson]].
Also in ''Race Against Time'', Ben had a temporary Chronian transformation also named Eon.
<br>
<center><gallery widths="200px" heights="250px">
File:Eon_RaceAgainstTime.png|[[Eon (Race Against Time)|''Race Against Time'' Eon]]
File:Eon_Transformation.png|[[Minor_Transformations/Other#Eon|Eon (Transformation)]]
File:Eon_UltimateAlien.png|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|[[Eon (Omniverse)|''Omniverse'' Eon]]
</gallery></center>
1b5da7aa9bc70ad86afbc267da911f02a43f80d4
Ben 10: Ultimate Alien
0
192
703
2020-06-01T02:03:02Z
Jaswacker
30585766
Created blank page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Ben 10: Omniverse
0
193
704
2020-06-01T02:03:04Z
Jaswacker
30585766
Created blank page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
705
704
2020-06-01T02:03:17Z
Jaswacker
30585766
Jaswacker moved page [[Ben 10:Omniverse]] to [[Ben 10: Omniverse]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Eon RaceAgainstTime.png
6
195
709
2020-06-01T02:09:39Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Eon Omniverse.png
6
196
711
2020-06-01T02:20:15Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Ben 10: Alien Force
0
197
713
2020-06-01T06:37:43Z
Carth
30634784
Created page with "placeholder"
wikitext
text/x-wiki
placeholder
ff55435345834a3fe224936776c2aa15f6ed5358
Games
0
198
714
2020-06-01T07:08:32Z
Carth
30634784
Created page with "There have been many video games throughout the Ben 10 franchise, this is a directory for those games. == Console Games == These are the main console games. <center><gallery..."
wikitext
text/x-wiki
There have been many video games throughout the Ben 10 franchise, this is a directory for those games.
== Console Games ==
These are the main console games.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben 10 (Mattel HyperScan)|Ben 10]]
File:PLACEHOLDER2.png|[[Ben 10: Protector of Earth]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - The Game]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - Vilgax Attacks]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - The Rise of Hex]]
File:PLACEHOLDER2.png|[[Ben 10: Ultimate Alien - Cosmic Destruction]]
File:PLACEHOLDER2.png|[[Ben 10: Galactic Racing]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse (Game)|Ben 10: Omniverse]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse 2]]
File:PLACEHOLDER2.png|[[Ben 10 (Reboot Game)|Ben 10]]
File:PLACEHOLDER2.png|[[Unnamed Second Reboot Game]]
</gallery></center>
== Handheld Games ==
The handheld games are often downgraded ports of the original console games, sometimes with different stories, so for the most part, they're treated separately.
== Mobile Games ==
Games you can play on a phone.
== Flash Games ==
Quick games you can play on your computer, usually from Cartoon Network's website.
99dbab23c3613afa946767805aa5de2b083d00bf
716
714
2020-06-01T07:14:42Z
Carth
30634784
wikitext
text/x-wiki
There have been many video games throughout the Ben 10 franchise, this is a directory for those games.
== Console Games ==
These are the main console games.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben 10 (Mattel HyperScan)|Ben 10]]
File:PLACEHOLDER2.png|[[Ben 10: Protector of Earth]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - The Game]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - Vilgax Attacks]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - The Rise of Hex]]
File:PLACEHOLDER2.png|[[Ben 10: Ultimate Alien - Cosmic Destruction]]
File:PLACEHOLDER2.png|[[Ben 10: Galactic Racing]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse (Game)|Ben 10: Omniverse]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse 2]]
File:PLACEHOLDER2.png|[[Ben 10 (Reboot Game)|Ben 10]]
File:PLACEHOLDER2.png|[[Unnamed Second Reboot Game]]
</gallery></center>
== Handheld Games ==
The handheld games are often downgraded ports of the original console games, sometimes with different stories, so for the most part, they're treated separately.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben 10: Protector of Earth (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - The Game (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - Vilgax Attacks (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Triple Pack (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Ultimate Alien - Cosmic Destruction (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Galactic Racing (DS/3DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse (DS Game)|Ben 10: Omniverse (DS/3DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse 2 (3DS)]]
</gallery></center>
== Mobile Games ==
Games you can play on a phone.
== Flash Games ==
Quick games you can play on your computer, usually from Cartoon Network's website.
4d482d695a931aa7918d41a89a35c59307177108
717
716
2020-06-01T07:42:35Z
Carth
30634784
wikitext
text/x-wiki
There have been many video games throughout the Ben 10 franchise, this is a directory for those games.
== Console Games ==
These are the main console games.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben 10 (Mattel HyperScan)|Ben 10]] <small>(2006 - Mattel HyperScan)</small>
File:PLACEHOLDER2.png|[[Ben 10: Protector of Earth]] <small>(2007 - PS2, PSP, Wii)</small>
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - The Game]] <small>(2008 - PS2, PSP, Wii)</small>
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - Vilgax Attacks]] <small>(2009 - PS2, PSP, Wii, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - The Rise of Hex]] <small>(2010 - WiiWare, XBOX Live Arcade)</small>
File:PLACEHOLDER2.png|[[Ben 10: Ultimate Alien - Cosmic Destruction]] <small>(2010 - PS3, PS2, PSP, Wii, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10: Galactic Racing]] <small>(2011 - PS3, PS Vita, Wii, 3DS)</small>
File:PLACEHOLDER2.png|[[Ben 10: Omniverse (Game)|Ben 10: Omniverse]] <small>(2012 - PS3, Wii, Wii U, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10: Omniverse 2]] <small>(2013 - PS3, Wii, Wii U, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10 (Reboot Game)|Ben 10]] <small>(2017 = PS4, Switch, XBONE)</small>
File:PLACEHOLDER2.png|[[Unnamed Second Reboot Game]]
</gallery></center>
== Handheld Games ==
The handheld games are often downgraded ports of the original console games, sometimes with different stories, so for the most part, they're treated separately.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben 10: Protector of Earth (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - The Game (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - Vilgax Attacks (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Triple Pack (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Ultimate Alien - Cosmic Destruction (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Galactic Racing (DS/3DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse (DS)|Ben 10: Omniverse]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse 2 (3DS)]]
</gallery></center>
== Crossover Games ==
File:PLACEHOLDER2.png|[[FusionFall]]
File:PLACEHOLDER2.png|[[Cartoon Network: Punch Time Explosion|Cartoon Network: Punch Time Explosion/XL]]
== Mobile Games ==
Games you can play on a phone.
== Flash Games ==
Quick games you can play on your computer, usually from Cartoon Network's website.
e5c8223849a1f90c1ea2ff0b07b7f4dd7af48a04
718
717
2020-06-01T07:43:58Z
Carth
30634784
wikitext
text/x-wiki
There have been many video games throughout the Ben 10 franchise, this is a directory for those games.
== Console Games ==
These are the main console games.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben 10 (Mattel HyperScan)|Ben 10]] <small>('''2006''' - Mattel HyperScan)</small>
File:PLACEHOLDER2.png|[[Ben 10: Protector of Earth]] <small>('''2007''' - PS2, PSP, Wii)</small>
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - The Game]] <small>('''2008''' - PS2, PSP, Wii)</small>
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - Vilgax Attacks]] <small>('''2009''' - PS2, PSP, Wii, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - The Rise of Hex]] <small>('''2010''' - WiiWare, XBOX Live Arcade)</small>
File:PLACEHOLDER2.png|[[Ben 10: Ultimate Alien - Cosmic Destruction]] <small>('''2010''' - PS3, PS2, PSP, Wii, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10: Galactic Racing]] <small>('''2011''' - PS3, PS Vita, Wii, 3DS)</small>
File:PLACEHOLDER2.png|[[Ben 10: Omniverse (Game)|Ben 10: Omniverse]] <small>('''2012''' - PS3, Wii, Wii U, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10: Omniverse 2]] <small>('''2013''' - PS3, Wii, Wii U, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10 (Reboot Game)|Ben 10]] <small>('''2017''' - PS4, Switch, XBONE)</small>
File:PLACEHOLDER2.png|[[Unnamed Second Reboot Game]]
</gallery></center>
== Handheld Games ==
The handheld games are often downgraded ports of the original console games, sometimes with different stories, so for the most part, they're treated separately.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben 10: Protector of Earth (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - The Game (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - Vilgax Attacks (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Triple Pack (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Ultimate Alien - Cosmic Destruction (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Galactic Racing (DS/3DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse (DS)|Ben 10: Omniverse]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse 2 (3DS)]]
</gallery></center>
== Crossover Games ==
File:PLACEHOLDER2.png|[[FusionFall]]
File:PLACEHOLDER2.png|[[Cartoon Network: Punch Time Explosion|Cartoon Network: Punch Time Explosion/XL]]
== Mobile Games ==
Games you can play on a phone.
== Flash Games ==
Quick games you can play on your computer, usually from Cartoon Network's website.
a744d52f215a3172b06cd255134c5fa1d4f6cf89
719
718
2020-06-01T07:44:29Z
Carth
30634784
/* Crossover Games */
wikitext
text/x-wiki
There have been many video games throughout the Ben 10 franchise, this is a directory for those games.
== Console Games ==
These are the main console games.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben 10 (Mattel HyperScan)|Ben 10]] <small>('''2006''' - Mattel HyperScan)</small>
File:PLACEHOLDER2.png|[[Ben 10: Protector of Earth]] <small>('''2007''' - PS2, PSP, Wii)</small>
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - The Game]] <small>('''2008''' - PS2, PSP, Wii)</small>
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - Vilgax Attacks]] <small>('''2009''' - PS2, PSP, Wii, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - The Rise of Hex]] <small>('''2010''' - WiiWare, XBOX Live Arcade)</small>
File:PLACEHOLDER2.png|[[Ben 10: Ultimate Alien - Cosmic Destruction]] <small>('''2010''' - PS3, PS2, PSP, Wii, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10: Galactic Racing]] <small>('''2011''' - PS3, PS Vita, Wii, 3DS)</small>
File:PLACEHOLDER2.png|[[Ben 10: Omniverse (Game)|Ben 10: Omniverse]] <small>('''2012''' - PS3, Wii, Wii U, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10: Omniverse 2]] <small>('''2013''' - PS3, Wii, Wii U, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10 (Reboot Game)|Ben 10]] <small>('''2017''' - PS4, Switch, XBONE)</small>
File:PLACEHOLDER2.png|[[Unnamed Second Reboot Game]]
</gallery></center>
== Handheld Games ==
The handheld games are often downgraded ports of the original console games, sometimes with different stories, so for the most part, they're treated separately.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben 10: Protector of Earth (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - The Game (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - Vilgax Attacks (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Triple Pack (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Ultimate Alien - Cosmic Destruction (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Galactic Racing (DS/3DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse (DS)|Ben 10: Omniverse]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse 2 (3DS)]]
</gallery></center>
== Mobile Games ==
Games you can play on a phone.
== Flash Games ==
Quick games you can play on your computer, usually from Cartoon Network's website.
356fb65fc071a172770a30ff071e4dd17f8ef12f
Main Page/fundamentals
0
61
715
333
2020-06-01T07:08:59Z
Carth
30634784
wikitext
text/x-wiki
<center>'''New to ''Ben 10''? Start here!'''</center>
{|cellpadding="0" cellspacing="0" style="margin:auto;"
|-
|style="padding:.5em 1em 0 1em;"|'''[[Ben 10|Cartoons]]'''
|style="padding:.5em 1em 0 1em;"|'''[[Continuity]]'''
|-
|style="padding:0 1em;"|'''[[Movies]]'''
|style="padding:0 1em;"|'''[[Toys]]'''
|-
|style="padding:0 1em;"|'''[[Heroes|Characters]]'''
|style="padding:0 1em;"|'''[[Games]]'''
|-
|style="padding:0 1em;"|'''[[Transformations]]'''
|style="padding:0 1em;"|'''[[Comics]]'''
|-
|style="padding:0 1em .5em 1em;"|'''[[Villains]]'''
|style="padding:0 1em .5em 1em;"|'''[[Fandom]]'''
|}
<noinclude>
[[Category: Main Page templates]]
</noinclude>
6d4081425c07b8f33072989092ef3154905f18b8
Eon
0
199
721
2020-06-02T00:00:41Z
Jaswacker
30585766
Redirected page to [[Eon (Disambiguation)]]
wikitext
text/x-wiki
#REDIRECT [[Eon_(Disambiguation)]]
7155644d5adff916af0bb38c67b89dc641b6abc2
File:Eon UltimateAlien.png
6
200
723
2020-06-02T00:17:54Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Minor Transformations/Albedo
0
175
724
670
2020-06-02T00:29:59Z
Jaswacker
30585766
wikitext
text/x-wiki
This page is dedicated to the alien transformations of [[Albedo]] that have been seen in the show. It is assumed that Albedo has access to every form that [[Ben Tennyson (Prime)|Ben]] can use, with the exception of [[Feedback]].<ref>https://web.archive.org/web/20200602002717/https://ask.fm/DerrickJWyatt/answers/162825748852</ref>
Albedo is also able to "evolve" his transformations into [[Utlimate Forms]].
<sup>[[Minor_Transformations/Albedo|Full page link.]]</sup>
{{-}}
===placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Ultimate Forms==
===placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
ed04c5c39ed3aad0df04bd614e7614e6e00eb5da
725
724
2020-06-02T00:30:45Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__
This page is dedicated to the alien transformations of [[Albedo]] that have been seen in the show. It is assumed that Albedo has access to every form that [[Ben Tennyson (Prime)|Ben]] can use, with the exception of [[Feedback]].<ref>https://web.archive.org/web/20200602002717/https://ask.fm/DerrickJWyatt/answers/162825748852</ref>
Albedo is also able to "evolve" his transformations into [[Utlimate Forms]].
<sup>[[Minor_Transformations/Albedo|Full page link.]]</sup>
{{-}}
===placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Ultimate Forms==
===placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
622edb2b523a1078df80b5f2224c4f63323ca572
Ultimate Ben
0
201
726
2020-06-02T00:33:48Z
Jaswacker
30585766
Created page with "{{:Ultimate Ben (disambig)}} placeholder"
wikitext
text/x-wiki
{{:Ultimate Ben (disambig)}}
placeholder
86b5e3fa4e47f22f1a69db06decf6669b103976c
727
726
2020-06-02T00:34:11Z
Jaswacker
30585766
wikitext
text/x-wiki
{{:Ultimate Ben/disambig}}
placeholder
58ee30001a58f1163906d9a23a9a3e3451fa2357
Ultimate Ben/disambig
0
202
728
2020-06-02T00:36:43Z
Jaswacker
30585766
Created page with "<div style="margin:.5em 1em .5em 1em;padding:.5em;background:#f7f8ff;border:thin solid #aaa;text-align:center;">This page is dedicated to the unique superpowered transformatio..."
wikitext
text/x-wiki
<div style="margin:.5em 1em .5em 1em;padding:.5em;background:#f7f8ff;border:thin solid #aaa;text-align:center;">This page is dedicated to the unique superpowered transformation of [[Ben 10,000 (Ultimate Alien)|Ben 10,000]]. For other versions of Ben 10,000, [[Ben 10,000 (Disambiguation)|click here]]. <span style="font-size:95%;">
</div>
<noinclude>[[Category:Templates]]</noinclude>
a889725771c5f0daa1b27f67b217285d1cee1671
Ben 10,000 (Ultimate Alien)
0
203
729
2020-06-02T00:36:55Z
Jaswacker
30585766
Created blank page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Ben 10,000 (Disambiguation)
0
204
730
2020-06-02T00:41:21Z
Jaswacker
30585766
Created page with "{{trix|os|ult|bio|auu}} {{disambig}} Placeholder <center><gallery widths="250px" heights="300px"> File:PLACEHOLDER2.png|Ben 10,000 (Original Series)|''Original Series'' Ben..."
wikitext
text/x-wiki
{{trix|os|ult|bio|auu}}
{{disambig}}
Placeholder
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
</gallery></center>
* For the evil future version of Ben Tennyson, see [[Eon]].
* For Ben 10,000's future son, see [[Kenny Tennyson]].
* For the superpowered transformation in [[Ben 10,000 Returns]], see [[Ultimate Ben]].
464aa9184626dd88ff1be7e86ac81a938cd7c241
731
730
2020-06-02T00:41:36Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|os|ult|bio|auu}}
{{disambig}}
Placeholder
<br>
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
</gallery></center>
<br>
* For the evil future version of Ben Tennyson, see [[Eon]].
* For Ben 10,000's future son, see [[Kenny Tennyson]].
* For the superpowered transformation in [[Ben 10,000 Returns]], see [[Ultimate Ben]].
58931e13dd4d81b2fa44cad0ebc51716d6698165
732
731
2020-06-02T00:41:51Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|os|ult|bio|auu}}
{{disambig}}
Placeholder
<br>
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
</gallery></center>
<br>
* For the evil future version of Ben Tennyson, see [[Eon]].
* For Ben 10,000's future son, see [[Kenny Tennyson]].
* For the superpowered transformation in [[Ben 10,000 Returns]], see [[Ultimate Ben]].
6e991748e1f8c48a5c2e863bac9b2ee8dbbf7ad3
733
732
2020-06-02T00:42:59Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|ult|bio|auu}}
{{disambig}}
Placeholder
<br>
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
</gallery></center>
<br>
* For the evil future version of Ben Tennyson, see [[Eon]].
* For Ben 10,000's future son, see [[Kenny Tennyson]].
* For the superpowered transformation in [[Ben 10,000 Returns]], see [[Ultimate Ben]].
d81a433e371dcff80f22cad2f824668d6aadd98f
Albedo
0
205
734
2020-06-02T00:43:50Z
Jaswacker
30585766
Created blank page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Origportalerdrawing.jpg
6
206
737
2020-06-02T01:19:37Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Portaler.png
6
207
738
2020-06-02T01:20:47Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Transformations (Disambiguation)
0
94
741
633
2020-06-02T03:47:28Z
Carth
30634784
wikitext
text/x-wiki
{{Disambig}}
*For a full list of [[Ben Tennyson (Prime)|Ben Prime's]] alien transformations, go to [[Transformations/Prime]].
*For a full list of the transformations of [[Ben Tennyson (Reboot)|Ben from the]] [[Ben 10 (2016)|Reboot]], go to [[Transformations/Reboot]].
*For a list of lesser transformations, go to [[Minor Transformations]], for ones with no onscreen appearances, go to [[Minor Transformations/Unseen]].
<noinclude>[[Category:Transformations]]</noinclude>
c4e63b452773530ccfa48899495ca4bc2748f218
742
741
2020-06-02T03:50:07Z
Carth
30634784
wikitext
text/x-wiki
{{Disambig}}
*For a full list of [[Ben Tennyson (Prime)|Ben Prime's]] alien transformations, go to [[Transformations/Prime]].
*For a full list of the transformations of [[Ben Tennyson (Reboot)|Ben from the]] [[Ben 10 (2016)|Reboot]], go to [[Transformations/Reboot]].
*For a list of lesser transformations, go to [[Minor Transformations]], and for ones with no onscreen appearances, go to [[Minor Transformations/Unseen]].
<noinclude>[[Category:Transformations]]</noinclude>
94461b24ca8bac354b8d47bde615c0e7a01405ed
Continuity
0
122
743
496
2020-06-02T04:55:17Z
Carth
30634784
wikitext
text/x-wiki
Continuity is the flow of events throughout a long running series... is what we would say. Due to different writers on different series, contradicting past events, retcons and the like, Ben 10's continuity is a confusing mess, but because we're crazy, let's try and make sense of it anyway. First, we need to talk about Canonicity Tiers.
== Canonicity Tiers ==
No, not the tears shed as we tried to make sense of everything, these are for the degree of separation between the series and the expanded universe.
=== Level 01: Absolute Canon ===
Without question, the actual cartoon series is the bulk of this tier. Sometimes due to later events, things can be taken out of this tier as if they never happened, this is what's known as a retcon.
=== Level 02: Dubiously Canon ===
This tier is largely a catch-all for things in the expanded universe, such as the video games, comics, crew statements and the like. Until properly confirmed, these stay in this tier.
A good example of Dubious Canonicity comes from the Nintendo DS version of Vilgax Attacks, in which at the end of a fight with Albedo, he transforms into Negative Alien X, only to be trapped in the form for an entire year... which according to Paradox in the episode (InsertName), happened in a separate timeline.
=== Level 03: Non Canon ===
Non-Canon involves things like most crossovers, like FusionFall, or Super Secret Crisis War, as well as random promotional videos that introduce new aliens, such as the Total Access adverts.
=== Level 04: Retroactive Continuity ===
Retcons. A good example of one was when Eon was made not to be a Chronian, but an alternate evil Ben Tennyson. Another good example would be when Kevin's father Devin turned out to be a false memory implanted into his mind by Proctor Servantis.
e3c99a93282460d7fb26a8857bcbd02c676991e8
744
743
2020-06-02T04:57:56Z
Carth
30634784
/* Level 02: Dubiously Canon */
wikitext
text/x-wiki
Continuity is the flow of events throughout a long running series... is what we would say. Due to different writers on different series, contradicting past events, retcons and the like, Ben 10's continuity is a confusing mess, but because we're crazy, let's try and make sense of it anyway. First, we need to talk about Canonicity Tiers.
== Canonicity Tiers ==
No, not the tears shed as we tried to make sense of everything, these are for the degree of separation between the series and the expanded universe.
=== Level 01: Absolute Canon ===
Without question, the actual cartoon series is the bulk of this tier. Sometimes due to later events, things can be taken out of this tier as if they never happened, this is what's known as a retcon.
=== Level 02: Dubiously Canon ===
This tier is largely a catch-all for things in the expanded universe, such as the video games, comics, crew statements and the like. Until properly confirmed, these stay in this tier. Things that may be partially true if at all.
A good example of Dubious Canonicity comes from the Nintendo DS version of Vilgax Attacks, in which at the end of a fight with Albedo, he transforms into Negative Alien X, only to be trapped in the form for an entire year... which according to Paradox in the episode (InsertName), happened in a separate timeline.
=== Level 03: Non Canon ===
Non-Canon involves things like most crossovers, like FusionFall, or Super Secret Crisis War, as well as random promotional videos that introduce new aliens, such as the Total Access adverts.
=== Level 04: Retroactive Continuity ===
Retcons. A good example of one was when Eon was made not to be a Chronian, but an alternate evil Ben Tennyson. Another good example would be when Kevin's father Devin turned out to be a false memory implanted into his mind by Proctor Servantis.
f7a51e7330a06bdf7c8b74e16cb8ffae7e5bd34c
745
744
2020-06-02T05:00:13Z
Carth
30634784
/* Level 01: Absolute Canon */
wikitext
text/x-wiki
Continuity is the flow of events throughout a long running series... is what we would say. Due to different writers on different series, contradicting past events, retcons and the like, Ben 10's continuity is a confusing mess, but because we're crazy, let's try and make sense of it anyway. First, we need to talk about Canonicity Tiers.
== Canonicity Tiers ==
No, not the tears shed as we tried to make sense of everything, these are for the degree of separation between the series and the expanded universe.
=== Level 01: Absolute Canon ===
Without question, the actual cartoon series is the bulk of this tier. Sometimes due to later events, things can be taken out of this tier as if they never happened, this is what's known as a [[Continuity#Level_04:_Retroactive_Continuity|retcon]].
=== Level 02: Dubiously Canon ===
This tier is largely a catch-all for things in the expanded universe, such as the video games, comics, crew statements and the like. Until properly confirmed, these stay in this tier. Things that may be partially true if at all.
A good example of Dubious Canonicity comes from the Nintendo DS version of Vilgax Attacks, in which at the end of a fight with Albedo, he transforms into Negative Alien X, only to be trapped in the form for an entire year... which according to Paradox in the episode (InsertName), happened in a separate timeline.
=== Level 03: Non Canon ===
Non-Canon involves things like most crossovers, like FusionFall, or Super Secret Crisis War, as well as random promotional videos that introduce new aliens, such as the Total Access adverts.
=== Level 04: Retroactive Continuity ===
Retcons. A good example of one was when Eon was made not to be a Chronian, but an alternate evil Ben Tennyson. Another good example would be when Kevin's father Devin turned out to be a false memory implanted into his mind by Proctor Servantis.
d1d8529411fe26b5f5a90d01c36b53cdee9519b7
746
745
2020-06-02T05:01:51Z
Carth
30634784
/* Level 02: Dubiously Canon */
wikitext
text/x-wiki
Continuity is the flow of events throughout a long running series... is what we would say. Due to different writers on different series, contradicting past events, retcons and the like, Ben 10's continuity is a confusing mess, but because we're crazy, let's try and make sense of it anyway. First, we need to talk about Canonicity Tiers.
== Canonicity Tiers ==
No, not the tears shed as we tried to make sense of everything, these are for the degree of separation between the series and the expanded universe.
=== Level 01: Absolute Canon ===
Without question, the actual cartoon series is the bulk of this tier. Sometimes due to later events, things can be taken out of this tier as if they never happened, this is what's known as a [[Continuity#Level_04:_Retroactive_Continuity|retcon]].
=== Level 02: Dubiously Canon ===
This refers to the expanded universe media related to a series, which may or may not be fully or partially true, if at all, in the context of the original story. Things such as the video games, comics, crew statements and the like. Until properly confirmed, these stay in this tier.
A good example of Dubious Canonicity comes from the Nintendo DS version of Vilgax Attacks, in which at the end of a fight with Albedo, he transforms into Negative Alien X, only to be trapped in the form for an entire year... which according to Paradox in the episode (InsertName), happened in a separate timeline.
=== Level 03: Non Canon ===
Non-Canon involves things like most crossovers, like FusionFall, or Super Secret Crisis War, as well as random promotional videos that introduce new aliens, such as the Total Access adverts.
=== Level 04: Retroactive Continuity ===
Retcons. A good example of one was when Eon was made not to be a Chronian, but an alternate evil Ben Tennyson. Another good example would be when Kevin's father Devin turned out to be a false memory implanted into his mind by Proctor Servantis.
0fc5e4b790e33e5481dc7588974d25b90c5322b0
747
746
2020-06-02T05:04:39Z
Carth
30634784
wikitext
text/x-wiki
Continuity is the flow of events throughout a long running series... is what we would say. Due to different writers on different series, contradicting past events, retcons and the like, Ben 10's continuity is a confusing mess, but because we're crazy, let's try and make sense of it anyway. First, we need to talk about Canonicity Tiers.
== Canonicity Tiers ==
No, not the tears shed as we tried to make sense of everything, these are for the degree of separation between the series and the expanded universe.
=== Level 01: Absolute Canon ===
Without question, the actual cartoon series is the bulk of this tier. Sometimes due to later events, things can be taken out of this tier as if they never happened, this is what's known as a [[Continuity#Level_04:_Retroactive_Continuity|retcon]].
=== Level 02: Dubiously Canon ===
This refers to the expanded universe media related to a series, which may or may not be fully or partially true, if at all, in the context of the original story. Things such as the video games, comics, crew statements and the like. Until properly confirmed, these stay in this tier.
A good example of Dubious Canonicity comes from the Nintendo DS version of Vilgax Attacks, in which at the end of a fight with Albedo, he transforms into Negative Alien X, only to be trapped in the form for an entire year... which according to Paradox in the episode (InsertName), happened in a separate timeline.
=== Level 03: Non Canon ===
Non-Canon involves things like most crossovers, like FusionFall, or Super Secret Crisis War, as well as random promotional videos that introduce new aliens, such as the Total Access adverts.
=== Level 04: Retroactive Continuity ===
Retcons. A good example of one was when Eon was made not to be a Chronian, but an alternate evil Ben Tennyson. Another good example would be when Kevin's father Devin turned out to be a false memory implanted into his mind by Proctor Servantis.
<noinclude>[[Category:Meta]]</noinclude>
c22884fb252164a9378c16bd14eb9d0e34d5a25c
Category:Meta
14
208
748
2020-06-02T05:05:20Z
Carth
30634784
Created blank page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:UNKNOWN FORM AF-UA.png
6
210
751
2020-06-02T06:47:50Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:UNKNOWN FORM OS-RB.png
6
212
753
2020-06-02T06:52:49Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:UNKNOWN FORM OV.png
6
213
754
2020-06-02T06:53:05Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Minor Transformations/Ben 10K
0
188
755
678
2020-06-02T07:03:05Z
Carth
30634784
wikitext
text/x-wiki
This page is dedicated by the alien transformations used by [[Ben 10,000 (Original Series)]], and the aliens used by his son [[Ken Tennyson (Original Series)|Kenny]] in the episode [[Ken 10]].
For the fusion transformations of his ''[[Ben 10: Omniverse|Omniverse]]'' counterpart, see [[Transformations/Biomnitrix|Biomnitrix Transformations]].
For Ben 10,000's ''[[Ben 10: Ultimate Alien|Ultimate Alien]]'' superpowered transformation counterpart, see [[Ultimate Ben]].
<sup>[[Minor_Transformations/Ben_10K|Full page link.]]</sup>
{{-}}
===Placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Ken Tennyson==
===Placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
509cd6524b8b349e10d5a842f3eb9913ceea4817
File:VG Ben10Hyperscan.png
6
214
756
2020-06-02T07:22:12Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:VG Ben10PoE.png
6
215
757
2020-06-02T07:22:54Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:VG AlienForce.png
6
216
758
2020-06-02T07:23:29Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:VG VilgaxAttacks.png
6
217
759
2020-06-02T07:23:47Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Games
0
198
760
719
2020-06-02T07:29:00Z
Carth
30634784
/* Console Games */
wikitext
text/x-wiki
There have been many video games throughout the Ben 10 franchise, this is a directory for those games.
== Console Games ==
These are the main console games.
<center><gallery widths="250px" heights="300px">
File:VG Ben10Hyperscan.png|[[Ben 10 (Mattel HyperScan)|Ben 10]] <small>('''2006''' - Mattel HyperScan)</small>
File:VG Ben10PoE.png |[[Ben 10: Protector of Earth]] <small>('''2007''' - PS2, PSP, Wii)</small>
File:VG AlienForce.png |[[Ben 10: Alien Force - The Game]] <small>('''2008''' - PS2, PSP, Wii)</small>
File:VG VilgaxAttacks.png |[[Ben 10: Alien Force - Vilgax Attacks]] <small>('''2009''' - PS2, PSP, Wii, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - The Rise of Hex]] <small>('''2010''' - WiiWare, XBOX Live Arcade)</small>
File:PLACEHOLDER2.png|[[Ben 10: Ultimate Alien - Cosmic Destruction]] <small>('''2010''' - PS3, PS2, PSP, Wii, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10: Galactic Racing]] <small>('''2011''' - PS3, PS Vita, Wii, 3DS)</small>
File:PLACEHOLDER2.png|[[Ben 10: Omniverse (Game)|Ben 10: Omniverse]] <small>('''2012''' - PS3, Wii, Wii U, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10: Omniverse 2]] <small>('''2013''' - PS3, Wii, Wii U, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10 (Reboot Game)|Ben 10]] <small>('''2017''' - PS4, Switch, XBONE)</small>
File:PLACEHOLDER2.png|[[Unnamed Second Reboot Game]]
</gallery></center>
== Handheld Games ==
The handheld games are often downgraded ports of the original console games, sometimes with different stories, so for the most part, they're treated separately.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben 10: Protector of Earth (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - The Game (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - Vilgax Attacks (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Triple Pack (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Ultimate Alien - Cosmic Destruction (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Galactic Racing (DS/3DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse (DS)|Ben 10: Omniverse]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse 2 (3DS)]]
</gallery></center>
== Mobile Games ==
Games you can play on a phone.
== Flash Games ==
Quick games you can play on your computer, usually from Cartoon Network's website.
25006ca135e88ac26f8429648dbc2dd4b9b6d3fc
XLR8 (Prime)
0
218
761
2020-06-02T09:35:21Z
Carth
30634784
Created page with "placeholder"
wikitext
text/x-wiki
placeholder
ff55435345834a3fe224936776c2aa15f6ed5358
Transformations/Prime
0
95
762
647
2020-06-02T09:37:27Z
Carth
30634784
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
<center><gallery widths="175px" heights="225px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-Oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck|Upchuck (Perk)]]
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
d95dea5a62646e01b23067996c898d4278a34e21
763
762
2020-06-02T09:37:57Z
Carth
30634784
/* Introduced in Ben 10 */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
<center><gallery widths="175px" heights="225px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck|Upchuck (Perk)]]
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
a40770764dafd31a1da9bfb718c368d1f6ec35b1
764
763
2020-06-02T09:43:50Z
Carth
30634784
/* Introduced in Ben 10 */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
<center><gallery widths="75px" heights="125px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck|Upchuck (Perk)]]
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]]
</gallery></center>
== Introduced in [[Ben 10: Alien Force]] ==
<center><gallery widths="75px" heights="125px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
d5400321599bcfce3ca4b132e05dde2736e6397b
765
764
2020-06-02T09:44:38Z
Carth
30634784
/* Introduced in Ben 10: Alien Force */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
<center><gallery widths="75px" heights="125px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck|Upchuck (Perk)]]
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]]
</gallery></center>
== Introduced in [[Ben 10: Alien Force]] ==
<center><gallery widths="75px" heights="125px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath]]
File:PLACEHOLDER2.png|[[Nanomech]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
54a82369b21dae4f78a17689def75bf7e5f1e394
766
765
2020-06-02T10:00:50Z
Carth
30634784
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
<center><gallery widths="75px" heights="125px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck]] (Perk)
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]] <small>(Introduced in [[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]])</small>
File:PLACEHOLDER2.png|[[Buzzshock]] <small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Spitter]] <small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Arctiguana]] <small>(First used by Ben 10,000)</small>
</gallery></center>
== Introduced in [[Ben 10: Alien Force]] ==
<center><gallery widths="75px" heights="125px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Upchuck]] (Murk)
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|[[Nanomech]] <small>(Introduced in [[Ben 10: Alien Swarm|Alien Swarm]])</small>
File:PLACEHOLDER2.png|[[Rocks]] <small>(Introduced in Power of the Omnitrix stage play)</small>
File:PLACEHOLDER2.png|[[Squidstrictor]] <small>(Introduced in Power of the Omnitrix stage play)</small>
</gallery></center>
== Introduced in [[Ben 10: Ultimate Alien]] ==
<center><gallery widths="75px" heights="125px">
File:PLACEHOLDER2.png|[[Water Hazard]]
File:PLACEHOLDER2.png|[[AmpFibian]]
File:PLACEHOLDER2.png|[[Armodrillo]]
File:PLACEHOLDER2.png|[[Terraspin]]
File:PLACEHOLDER2.png|[[NRG]]
File:PLACEHOLDER2.png|[[Fasttrack]]
File:PLACEHOLDER2.png|[[Clockwork]]
File:PLACEHOLDER2.png|[[Chamalien]]
File:PLACEHOLDER2.png|[[Shocksquatch]] <small>(Introduced in [[Ben 10/Generator Rex: Heroes United|Heroes United]])</small>
File:PLACEHOLDER2.png|[[Eatle]]
File:PLACEHOLDER2.png|[[Juryrigg]]
</gallery></center>
== Introduced in [[Ben 10: Omniverse]] ==
<center><gallery widths="75px" heights="125px">
File:PLACEHOLDER2.png|[[Feedback]]
File:PLACEHOLDER2.png|[[Bloxx]]
File:PLACEHOLDER2.png|[[Gravattack]]
File:PLACEHOLDER2.png|[[Crashhopper]]
File:PLACEHOLDER2.png|[[Ball Weevil]]
File:PLACEHOLDER2.png|[[Walkatrout]]
File:PLACEHOLDER2.png|[[Pesky Dust]]
File:PLACEHOLDER2.png|[[Mole-Stache]]
File:PLACEHOLDER2.png|[[The Worst]]
File:PLACEHOLDER2.png|[[Kickin Hawk]]
File:PLACEHOLDER2.png|[[Astrodactyl]]
File:PLACEHOLDER2.png|[[Bullfrag]]
File:PLACEHOLDER2.png|[[Atomix]]
File:PLACEHOLDER2.png|[[Gutrot]]
File:PLACEHOLDER2.png|[[Whampire]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
c37761e2ae2ae960728d75d3c725e44f04c34bab
767
766
2020-06-02T10:06:01Z
Carth
30634784
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck]] (Perk)
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]] <small>(Introduced in [[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]])</small>
File:PLACEHOLDER2.png|[[Buzzshock]] <small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Spitter]] <small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Arctiguana]] <small>(First used by Ben 10,000)</small>
</gallery></center>
== Introduced in [[Ben 10: Alien Force]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Upchuck]] (Murk)
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|[[Nanomech]] <small>(Introduced in [[Ben 10: Alien Swarm|Alien Swarm]])</small>
File:PLACEHOLDER2.png|[[Rocks]] <small>(Introduced in Power of the Omnitrix stage play)</small>
File:PLACEHOLDER2.png|[[Squidstrictor]] <small>(Introduced in Power of the Omnitrix stage play)</small>
</gallery></center>
== Introduced in [[Ben 10: Ultimate Alien]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Water Hazard]]
File:PLACEHOLDER2.png|[[AmpFibian]]
File:PLACEHOLDER2.png|[[Armodrillo]]
File:PLACEHOLDER2.png|[[Terraspin]]
File:PLACEHOLDER2.png|[[NRG]]
File:PLACEHOLDER2.png|[[Fasttrack]]
File:PLACEHOLDER2.png|[[Clockwork]]
File:PLACEHOLDER2.png|[[Chamalien]]
File:PLACEHOLDER2.png|[[Shocksquatch]] <small>(Introduced in [[Ben 10/Generator Rex: Heroes United|Heroes United]])</small>
File:PLACEHOLDER2.png|[[Eatle]]
File:PLACEHOLDER2.png|[[Juryrigg]]
</gallery></center>
== Introduced in [[Ben 10: Omniverse]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Feedback]]
File:PLACEHOLDER2.png|[[Bloxx]]
File:PLACEHOLDER2.png|[[Gravattack]]
File:PLACEHOLDER2.png|[[Crashhopper]]
File:PLACEHOLDER2.png|[[Ball Weevil]]
File:PLACEHOLDER2.png|[[Walkatrout]]
File:PLACEHOLDER2.png|[[Pesky Dust]]
File:PLACEHOLDER2.png|[[Mole-Stache]]
File:PLACEHOLDER2.png|[[The Worst]]
File:PLACEHOLDER2.png|[[Kickin Hawk]]
File:PLACEHOLDER2.png|[[Astrodactyl]]
File:PLACEHOLDER2.png|[[Bullfrag]]
File:PLACEHOLDER2.png|[[Atomix]]
File:PLACEHOLDER2.png|[[Gutrot]]
File:PLACEHOLDER2.png|[[Whampire]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
0aaa1dadd5040a1de56fe72b0a57b4b32744bb75
770
767
2020-06-02T15:06:48Z
Jaswacker
30585766
/* Introduced in Ben 10 */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck]] (Perk)
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]] <small>(Introduced in [[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]])</small>
File:PLACEHOLDER2.png|[[Buzzshock]] <small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|[[Spitter]] <small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Arctiguana]] <small>(First used by Ben 10,000)</small>
</gallery></center>
== Introduced in [[Ben 10: Alien Force]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Upchuck]] (Murk)
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|[[Nanomech]] <small>(Introduced in [[Ben 10: Alien Swarm|Alien Swarm]])</small>
File:PLACEHOLDER2.png|[[Rocks]] <small>(Introduced in Power of the Omnitrix stage play)</small>
File:PLACEHOLDER2.png|[[Squidstrictor]] <small>(Introduced in Power of the Omnitrix stage play)</small>
</gallery></center>
== Introduced in [[Ben 10: Ultimate Alien]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Water Hazard]]
File:PLACEHOLDER2.png|[[AmpFibian]]
File:PLACEHOLDER2.png|[[Armodrillo]]
File:PLACEHOLDER2.png|[[Terraspin]]
File:PLACEHOLDER2.png|[[NRG]]
File:PLACEHOLDER2.png|[[Fasttrack]]
File:PLACEHOLDER2.png|[[Clockwork]]
File:PLACEHOLDER2.png|[[Chamalien]]
File:PLACEHOLDER2.png|[[Shocksquatch]] <small>(Introduced in [[Ben 10/Generator Rex: Heroes United|Heroes United]])</small>
File:PLACEHOLDER2.png|[[Eatle]]
File:PLACEHOLDER2.png|[[Juryrigg]]
</gallery></center>
== Introduced in [[Ben 10: Omniverse]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Feedback]]
File:PLACEHOLDER2.png|[[Bloxx]]
File:PLACEHOLDER2.png|[[Gravattack]]
File:PLACEHOLDER2.png|[[Crashhopper]]
File:PLACEHOLDER2.png|[[Ball Weevil]]
File:PLACEHOLDER2.png|[[Walkatrout]]
File:PLACEHOLDER2.png|[[Pesky Dust]]
File:PLACEHOLDER2.png|[[Mole-Stache]]
File:PLACEHOLDER2.png|[[The Worst]]
File:PLACEHOLDER2.png|[[Kickin Hawk]]
File:PLACEHOLDER2.png|[[Astrodactyl]]
File:PLACEHOLDER2.png|[[Bullfrag]]
File:PLACEHOLDER2.png|[[Atomix]]
File:PLACEHOLDER2.png|[[Gutrot]]
File:PLACEHOLDER2.png|[[Whampire]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
ee06a33cbe98da9f0535e93425e925dd2bfec8cb
771
770
2020-06-02T15:08:26Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck]] (Perk)
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]] <small>(Introduced in [[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]])</small>
File:PLACEHOLDER2.png|[[Buzzshock]] <small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|[[Spitter]] <small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Arctiguana]] <small>(First used by Ben 10,000)</small>
</gallery></center>
== Introduced in [[Ben 10: Alien Force]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Upchuck]] (Murk)
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|[[Nanomech]] <small>(Introduced in [[Ben 10: Alien Swarm|Alien Swarm]])</small>
File:PLACEHOLDER2.png|[[Rocks]] <small>(Introduced in Power of the Omnitrix stage play)</small>
File:PLACEHOLDER2.png|[[Squidstrictor]] <small>(Introduced in Power of the Omnitrix stage play)</small>
</gallery></center>
== Introduced in [[Ben 10: Ultimate Alien]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Water Hazard]]
File:PLACEHOLDER2.png|[[AmpFibian]]
File:PLACEHOLDER2.png|[[Armodrillo]]
File:PLACEHOLDER2.png|[[Terraspin]]
File:PLACEHOLDER2.png|[[NRG]]
File:PLACEHOLDER2.png|[[Fasttrack]]
File:PLACEHOLDER2.png|[[Clockwork]]
File:PLACEHOLDER2.png|[[Chamalien]]
File:PLACEHOLDER2.png|[[Shocksquatch]] <small>(Introduced in [[Ben 10/Generator Rex: Heroes United|Heroes United]])</small>
File:PLACEHOLDER2.png|[[Eatle]]
File:PLACEHOLDER2.png|[[Juryrigg]]
</gallery></center>
== Introduced in [[Ben 10: Omniverse]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Feedback]]
File:PLACEHOLDER2.png|[[Bloxx]]
File:PLACEHOLDER2.png|[[Gravattack]]
File:PLACEHOLDER2.png|[[Crashhopper]]
File:PLACEHOLDER2.png|[[Ball Weevil]]
File:PLACEHOLDER2.png|[[Walkatrout]]
File:PLACEHOLDER2.png|[[Pesky Dust]]
File:PLACEHOLDER2.png|[[Mole-Stache]]
File:PLACEHOLDER2.png|[[The Worst]]
File:PLACEHOLDER2.png|[[Kickin Hawk]]
File:PLACEHOLDER2.png|[[Astrodactyl]]
File:PLACEHOLDER2.png|[[Bullfrag]]
File:PLACEHOLDER2.png|[[Atomix]]
File:PLACEHOLDER2.png|[[Gutrot]]
File:PLACEHOLDER2.png|[[Whampire]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
{{-}}
7676daae6e6d380969d553893fb47a086c4e3849
772
771
2020-06-02T15:11:32Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
<gallery mode="slideshow">
Image:PLACEHOLDER2.png|[[Heatblast]]
Image:PLACEHOLDER2.png|[[Placeholder]]
Image:PLACEHOLDER2.png|[[Placeholder]]
</gallery>
__TOC__
{{-}}
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck]] (Perk)
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]] <small>(Introduced in [[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]])</small>
File:PLACEHOLDER2.png|[[Buzzshock]] <small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|[[Spitter]] <small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Arctiguana]] <small>(First used by Ben 10,000)</small>
</gallery></center>
== Introduced in [[Ben 10: Alien Force]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Upchuck]] (Murk)
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|[[Nanomech]] <small>(Introduced in [[Ben 10: Alien Swarm|Alien Swarm]])</small>
File:PLACEHOLDER2.png|[[Rocks]] <small>(Introduced in Power of the Omnitrix stage play)</small>
File:PLACEHOLDER2.png|[[Squidstrictor]] <small>(Introduced in Power of the Omnitrix stage play)</small>
</gallery></center>
== Introduced in [[Ben 10: Ultimate Alien]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Water Hazard]]
File:PLACEHOLDER2.png|[[AmpFibian]]
File:PLACEHOLDER2.png|[[Armodrillo]]
File:PLACEHOLDER2.png|[[Terraspin]]
File:PLACEHOLDER2.png|[[NRG]]
File:PLACEHOLDER2.png|[[Fasttrack]]
File:PLACEHOLDER2.png|[[Clockwork]]
File:PLACEHOLDER2.png|[[Chamalien]]
File:PLACEHOLDER2.png|[[Shocksquatch]] <small>(Introduced in [[Ben 10/Generator Rex: Heroes United|Heroes United]])</small>
File:PLACEHOLDER2.png|[[Eatle]]
File:PLACEHOLDER2.png|[[Juryrigg]]
</gallery></center>
== Introduced in [[Ben 10: Omniverse]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Feedback]]
File:PLACEHOLDER2.png|[[Bloxx]]
File:PLACEHOLDER2.png|[[Gravattack]]
File:PLACEHOLDER2.png|[[Crashhopper]]
File:PLACEHOLDER2.png|[[Ball Weevil]]
File:PLACEHOLDER2.png|[[Walkatrout]]
File:PLACEHOLDER2.png|[[Pesky Dust]]
File:PLACEHOLDER2.png|[[Mole-Stache]]
File:PLACEHOLDER2.png|[[The Worst]]
File:PLACEHOLDER2.png|[[Kickin Hawk]]
File:PLACEHOLDER2.png|[[Astrodactyl]]
File:PLACEHOLDER2.png|[[Bullfrag]]
File:PLACEHOLDER2.png|[[Atomix]]
File:PLACEHOLDER2.png|[[Gutrot]]
File:PLACEHOLDER2.png|[[Whampire]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
{{-}}
d01a534cf60b0a33ef7e0f8288a1c8a24ca0b989
773
772
2020-06-02T15:12:08Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
<gallery mode="slideshow">
Image:PLACEHOLDER2.png|[[Heatblast]]
Image:PLACEHOLDER2.png|[[Placeholder]]
Image:PLACEHOLDER2.png|[[Placeholder]]
</gallery>
__TOC__
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck]] (Perk)
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]] <small>(Introduced in [[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]])</small>
File:PLACEHOLDER2.png|[[Buzzshock]] <small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|[[Spitter]] <small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Arctiguana]] <small>(First used by Ben 10,000)</small>
</gallery></center>
== Introduced in [[Ben 10: Alien Force]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Upchuck]] (Murk)
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|[[Nanomech]] <small>(Introduced in [[Ben 10: Alien Swarm|Alien Swarm]])</small>
File:PLACEHOLDER2.png|[[Rocks]] <small>(Introduced in Power of the Omnitrix stage play)</small>
File:PLACEHOLDER2.png|[[Squidstrictor]] <small>(Introduced in Power of the Omnitrix stage play)</small>
</gallery></center>
== Introduced in [[Ben 10: Ultimate Alien]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Water Hazard]]
File:PLACEHOLDER2.png|[[AmpFibian]]
File:PLACEHOLDER2.png|[[Armodrillo]]
File:PLACEHOLDER2.png|[[Terraspin]]
File:PLACEHOLDER2.png|[[NRG]]
File:PLACEHOLDER2.png|[[Fasttrack]]
File:PLACEHOLDER2.png|[[Clockwork]]
File:PLACEHOLDER2.png|[[Chamalien]]
File:PLACEHOLDER2.png|[[Shocksquatch]] <small>(Introduced in [[Ben 10/Generator Rex: Heroes United|Heroes United]])</small>
File:PLACEHOLDER2.png|[[Eatle]]
File:PLACEHOLDER2.png|[[Juryrigg]]
</gallery></center>
== Introduced in [[Ben 10: Omniverse]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Feedback]]
File:PLACEHOLDER2.png|[[Bloxx]]
File:PLACEHOLDER2.png|[[Gravattack]]
File:PLACEHOLDER2.png|[[Crashhopper]]
File:PLACEHOLDER2.png|[[Ball Weevil]]
File:PLACEHOLDER2.png|[[Walkatrout]]
File:PLACEHOLDER2.png|[[Pesky Dust]]
File:PLACEHOLDER2.png|[[Mole-Stache]]
File:PLACEHOLDER2.png|[[The Worst]]
File:PLACEHOLDER2.png|[[Kickin Hawk]]
File:PLACEHOLDER2.png|[[Astrodactyl]]
File:PLACEHOLDER2.png|[[Bullfrag]]
File:PLACEHOLDER2.png|[[Atomix]]
File:PLACEHOLDER2.png|[[Gutrot]]
File:PLACEHOLDER2.png|[[Whampire]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
{{-}}
92d2f65bcdb98d729a91f5575f35ea885fab5e71
Transformations/Reboot
0
184
768
646
2020-06-02T10:14:18Z
Carth
30634784
wikitext
text/x-wiki
{{trix|rbt}}
{{:Transformations/Reboot/disambig}}
== Regular Forms ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Cannonbolt (Reboot|Cannonbolt]]
File:PLACEHOLDER2.png|[[Overflow]]
File:PLACEHOLDER2.png|[[Heatblast (Reboot)|Heatblast]]
File:PLACEHOLDER2.png|[[XLR8 (Reboot)|XLR8]]
File:PLACEHOLDER2.png|[[Four Arms (Reboot)|Four Arms]]
File:PLACEHOLDER2.png|[[Grey Matter (Reboot)|Grey Matter]]
File:PLACEHOLDER2.png|[[Diamondhead (Reboot)|Diamondhead]]
File:PLACEHOLDER2.png|[[Upgrade (Reboot)|Upgrade]]
File:PLACEHOLDER2.png|[[Stinkfly (Reboot)|Stinkfly]]
File:PLACEHOLDER2.png|[[Wildvine (Reboot)|Wildvine]]
File:PLACEHOLDER2.png|[[Gax]]
File:PLACEHOLDER2.png|[[Slapback]]
File:PLACEHOLDER2.png|[[Humungousaur (Reboot)|Humungousaur]]
File:PLACEHOLDER2.png|[[Rath (Reboot)|Rath]]
File:PLACEHOLDER2.png|[[Jetray (Reboot)|Jetray]]
</gallery></center>
== Omni-Enhanced ==
== Omni-Kix ==
<noinclude>[[Category:Transformations]]</noinclude>
32e80a912647a467b460af2b0f5257e71fdc8022
769
768
2020-06-02T10:26:43Z
Carth
30634784
wikitext
text/x-wiki
{{trix|rbt}}
{{:Transformations/Reboot/disambig}}
== Regular Forms ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Cannonbolt (Reboot|Cannonbolt]]
File:PLACEHOLDER2.png|[[Overflow]]
File:PLACEHOLDER2.png|[[Heatblast (Reboot)|Heatblast]]
File:PLACEHOLDER2.png|[[XLR8 (Reboot)|XLR8]]
File:PLACEHOLDER2.png|[[Four Arms (Reboot)|Four Arms]]
File:PLACEHOLDER2.png|[[Grey Matter (Reboot)|Grey Matter]]
File:PLACEHOLDER2.png|[[Diamondhead (Reboot)|Diamondhead]]
File:PLACEHOLDER2.png|[[Upgrade (Reboot)|Upgrade]]
File:PLACEHOLDER2.png|[[Stinkfly (Reboot)|Stinkfly]]
File:PLACEHOLDER2.png|[[Wildvine (Reboot)|Wildvine]]
File:PLACEHOLDER2.png|[[Gax]]
File:PLACEHOLDER2.png|[[Shock Rock]]
File:PLACEHOLDER2.png|[[Slapback]]
File:PLACEHOLDER2.png|[[Humungousaur (Reboot)|Humungousaur]]
File:PLACEHOLDER2.png|[[Rath (Reboot)|Rath]]
File:PLACEHOLDER2.png|[[Jetray (Reboot)|Jetray]]
</gallery></center>
== Omni-Enhanced ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Diamondhead (Reboot)|Diamondhead]]
File:PLACEHOLDER2.png|[[Grey Matter (Reboot)|Grey Matter]]
File:PLACEHOLDER2.png|[[Wildvine (Reboot)|Wildvine]]
File:PLACEHOLDER2.png|[[Heatblast (Reboot)|Heatblast]]
File:PLACEHOLDER2.png|[[Four Arms (Reboot)|Four Arms]]
File:PLACEHOLDER2.png|[[Cannonbolt (Reboot|Cannonbolt]]
File:PLACEHOLDER2.png|[[Stinkfly (Reboot)|Stinkfly]]
File:PLACEHOLDER2.png|[[Overflow]]
File:PLACEHOLDER2.png|[[XLR8 (Reboot)|XLR8]]
</gallery></center>
== Omni-Kix ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Four Arms (Reboot)|Four Arms]]
File:PLACEHOLDER2.png|[[Heatblast (Reboot)|Heatblast]]
File:PLACEHOLDER2.png|[[Humungousaur (Reboot)|Humungousaur]]
File:PLACEHOLDER2.png|[[Shock Rock]]
File:PLACEHOLDER2.png|[[XLR8 (Reboot)|XLR8]]
File:PLACEHOLDER2.png|[[Rath (Reboot)|Rath]]
File:PLACEHOLDER2.png|[[Cannonbolt (Reboot|Cannonbolt]]
File:PLACEHOLDER2.png|[[Diamondhead (Reboot)|Diamondhead]]
File:PLACEHOLDER2.png|[[Slapback]]
File:PLACEHOLDER2.png|[[Jetray (Reboot)|Jetray]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
2812d33975aa02a89e89972cbe04dac281983ded
File:Hotdawg.png
6
219
775
2020-06-02T16:56:21Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Hotdawgguitar.png
6
220
776
2020-06-02T16:56:22Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Ben 10 (Mattel HyperScan)
0
221
777
2020-06-02T20:25:34Z
Carth
30634784
Created page with "placeholder"
wikitext
text/x-wiki
placeholder
ff55435345834a3fe224936776c2aa15f6ed5358
Ben 10: Protector of Earth
0
222
778
2020-06-02T20:36:21Z
Carth
30634784
Created page with "test test"
wikitext
text/x-wiki
test test
abedc47a5ede3fab13390898c5160ec9afbb6ec3
Ben 10: Protector of Earth/Console
0
223
779
2020-06-02T20:36:42Z
Carth
30634784
Created page with "PS2"
wikitext
text/x-wiki
PS2
6c36a3937cd34e1cc700738b4a3722e6fe8cc7da
Ben 10: Protector of Earth/Handheld
0
224
780
2020-06-02T20:36:58Z
Carth
30634784
Created page with "NDS"
wikitext
text/x-wiki
NDS
5209946074f668a0d3da1c30831002e3ba07c693
Ben 10: Protector of Earth
0
222
781
778
2020-06-02T20:38:51Z
Carth
30634784
wikitext
text/x-wiki
__NOTOC__
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">Console</div>
{{:Ben_10:_Protector_of_Earth/Console}}
</div>
<div class="tabbox">
<div class="tab">Handheld</div>
{{:Ben_10:_Protector_of_Earth/Handheld}}
</div>
</div>
4bb373dc70f526edd23e6f1dd6650b4568d9314b
Games
0
198
783
760
2020-06-02T21:03:07Z
Carth
30634784
/* Console Games */
wikitext
text/x-wiki
There have been many video games throughout the Ben 10 franchise, this is a directory for those games.
== Console Games ==
These are the main console games.
<center><gallery widths="250px" heights="300px">
File:VG Ben10Hyperscan.png|[[Ben 10 (Mattel HyperScan)|Ben 10]] <small>('''2006''' - Mattel HyperScan)</small>
File:VG Ben10PoE.png |[[Ben 10: Protector of Earth/Console|Ben 10: Protector of Earth]] <small>('''2007''' - PS2, PSP, Wii)</small>
File:VG AlienForce.png |[[Ben 10: Alien Force - The Game]] <small>('''2008''' - PS2, PSP, Wii)</small>
File:VG VilgaxAttacks.png |[[Ben 10: Alien Force - Vilgax Attacks]] <small>('''2009''' - PS2, PSP, Wii, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - The Rise of Hex]] <small>('''2010''' - WiiWare, XBOX Live Arcade)</small>
File:PLACEHOLDER2.png|[[Ben 10: Ultimate Alien - Cosmic Destruction]] <small>('''2010''' - PS3, PS2, PSP, Wii, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10: Galactic Racing]] <small>('''2011''' - PS3, PS Vita, Wii, 3DS)</small>
File:PLACEHOLDER2.png|[[Ben 10: Omniverse (Game)|Ben 10: Omniverse]] <small>('''2012''' - PS3, Wii, Wii U, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10: Omniverse 2]] <small>('''2013''' - PS3, Wii, Wii U, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10 (Reboot Game)|Ben 10]] <small>('''2017''' - PS4, Switch, XBONE)</small>
File:PLACEHOLDER2.png|[[Unnamed Second Reboot Game]]
</gallery></center>
== Handheld Games ==
The handheld games are often downgraded ports of the original console games, sometimes with different stories, so for the most part, they're treated separately.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben 10: Protector of Earth (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - The Game (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - Vilgax Attacks (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Triple Pack (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Ultimate Alien - Cosmic Destruction (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Galactic Racing (DS/3DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse (DS)|Ben 10: Omniverse]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse 2 (3DS)]]
</gallery></center>
== Mobile Games ==
Games you can play on a phone.
== Flash Games ==
Quick games you can play on your computer, usually from Cartoon Network's website.
dfa0c94f2951c4199083fd23de61fb5641619aaa
784
783
2020-06-02T21:04:03Z
Carth
30634784
/* Handheld Games */
wikitext
text/x-wiki
There have been many video games throughout the Ben 10 franchise, this is a directory for those games.
== Console Games ==
These are the main console games.
<center><gallery widths="250px" heights="300px">
File:VG Ben10Hyperscan.png|[[Ben 10 (Mattel HyperScan)|Ben 10]] <small>('''2006''' - Mattel HyperScan)</small>
File:VG Ben10PoE.png |[[Ben 10: Protector of Earth/Console|Ben 10: Protector of Earth]] <small>('''2007''' - PS2, PSP, Wii)</small>
File:VG AlienForce.png |[[Ben 10: Alien Force - The Game]] <small>('''2008''' - PS2, PSP, Wii)</small>
File:VG VilgaxAttacks.png |[[Ben 10: Alien Force - Vilgax Attacks]] <small>('''2009''' - PS2, PSP, Wii, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - The Rise of Hex]] <small>('''2010''' - WiiWare, XBOX Live Arcade)</small>
File:PLACEHOLDER2.png|[[Ben 10: Ultimate Alien - Cosmic Destruction]] <small>('''2010''' - PS3, PS2, PSP, Wii, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10: Galactic Racing]] <small>('''2011''' - PS3, PS Vita, Wii, 3DS)</small>
File:PLACEHOLDER2.png|[[Ben 10: Omniverse (Game)|Ben 10: Omniverse]] <small>('''2012''' - PS3, Wii, Wii U, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10: Omniverse 2]] <small>('''2013''' - PS3, Wii, Wii U, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10 (Reboot Game)|Ben 10]] <small>('''2017''' - PS4, Switch, XBONE)</small>
File:PLACEHOLDER2.png|[[Unnamed Second Reboot Game]]
</gallery></center>
== Handheld Games ==
The handheld games are often downgraded ports of the original console games, sometimes with different stories, so for the most part, they're treated separately.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben 10: Protector of Earth/Handheld|Ben 10: Protector of Earth]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - The Game (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - Vilgax Attacks (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Triple Pack (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Ultimate Alien - Cosmic Destruction (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Galactic Racing (DS/3DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse (DS)|Ben 10: Omniverse]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse 2 (3DS)]]
</gallery></center>
== Mobile Games ==
Games you can play on a phone.
== Flash Games ==
Quick games you can play on your computer, usually from Cartoon Network's website.
e0322ea6b6fefacabf272ac1a13930a22e88476c
785
784
2020-06-02T21:04:35Z
Carth
30634784
/* Handheld Games */
wikitext
text/x-wiki
There have been many video games throughout the Ben 10 franchise, this is a directory for those games.
== Console Games ==
These are the main console games.
<center><gallery widths="250px" heights="300px">
File:VG Ben10Hyperscan.png|[[Ben 10 (Mattel HyperScan)|Ben 10]] <small>('''2006''' - Mattel HyperScan)</small>
File:VG Ben10PoE.png |[[Ben 10: Protector of Earth/Console|Ben 10: Protector of Earth]] <small>('''2007''' - PS2, PSP, Wii)</small>
File:VG AlienForce.png |[[Ben 10: Alien Force - The Game]] <small>('''2008''' - PS2, PSP, Wii)</small>
File:VG VilgaxAttacks.png |[[Ben 10: Alien Force - Vilgax Attacks]] <small>('''2009''' - PS2, PSP, Wii, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - The Rise of Hex]] <small>('''2010''' - WiiWare, XBOX Live Arcade)</small>
File:PLACEHOLDER2.png|[[Ben 10: Ultimate Alien - Cosmic Destruction]] <small>('''2010''' - PS3, PS2, PSP, Wii, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10: Galactic Racing]] <small>('''2011''' - PS3, PS Vita, Wii, 3DS)</small>
File:PLACEHOLDER2.png|[[Ben 10: Omniverse (Game)|Ben 10: Omniverse]] <small>('''2012''' - PS3, Wii, Wii U, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10: Omniverse 2]] <small>('''2013''' - PS3, Wii, Wii U, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10 (Reboot Game)|Ben 10]] <small>('''2017''' - PS4, Switch, XBONE)</small>
File:PLACEHOLDER2.png|[[Unnamed Second Reboot Game]]
</gallery></center>
== Handheld Games ==
The handheld games are often downgraded ports of the original console games, sometimes with different stories and different playable characters.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben 10: Protector of Earth/Handheld|Ben 10: Protector of Earth]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - The Game (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - Vilgax Attacks (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Triple Pack (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Ultimate Alien - Cosmic Destruction (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Galactic Racing (DS/3DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse (DS)|Ben 10: Omniverse]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse 2 (3DS)]]
</gallery></center>
== Mobile Games ==
Games you can play on a phone.
== Flash Games ==
Quick games you can play on your computer, usually from Cartoon Network's website.
e8d990e08eaa283f3468493d79a1eb9894551fdd
Transformations/Prime
0
95
786
773
2020-06-02T21:11:57Z
Jaswacker
30585766
/* Introduced in Ben 10: Alien Force */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
<gallery mode="slideshow">
Image:PLACEHOLDER2.png|[[Heatblast]]
Image:PLACEHOLDER2.png|[[Placeholder]]
Image:PLACEHOLDER2.png|[[Placeholder]]
</gallery>
__TOC__
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck]] (Perk)
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]] <small>(Introduced in [[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]])</small>
File:PLACEHOLDER2.png|[[Buzzshock]] <small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|[[Spitter]] <small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Arctiguana]] <small>(First used by Ben 10,000)</small>
</gallery></center>
== Introduced in [[Ben 10: Alien Force]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Upchuck]] (Murk)
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|[[Nanomech]] <small>(Introduced in ''[[Ben 10: Alien Swarm|Alien Swarm]]'')</small>
File:PLACEHOLDER2.png|[[Rocks]] <small>(Introduced in ''[[Power of the Omnitrix]]'' stage play)</small>
File:PLACEHOLDER2.png|[[Squidstrictor]] <small>(Introduced in ''Power of the Omnitrix'' stage play)</small>
</gallery></center>
== Introduced in [[Ben 10: Ultimate Alien]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Water Hazard]]
File:PLACEHOLDER2.png|[[AmpFibian]]
File:PLACEHOLDER2.png|[[Armodrillo]]
File:PLACEHOLDER2.png|[[Terraspin]]
File:PLACEHOLDER2.png|[[NRG]]
File:PLACEHOLDER2.png|[[Fasttrack]]
File:PLACEHOLDER2.png|[[Clockwork]]
File:PLACEHOLDER2.png|[[Chamalien]]
File:PLACEHOLDER2.png|[[Shocksquatch]] <small>(Introduced in [[Ben 10/Generator Rex: Heroes United|Heroes United]])</small>
File:PLACEHOLDER2.png|[[Eatle]]
File:PLACEHOLDER2.png|[[Juryrigg]]
</gallery></center>
== Introduced in [[Ben 10: Omniverse]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Feedback]]
File:PLACEHOLDER2.png|[[Bloxx]]
File:PLACEHOLDER2.png|[[Gravattack]]
File:PLACEHOLDER2.png|[[Crashhopper]]
File:PLACEHOLDER2.png|[[Ball Weevil]]
File:PLACEHOLDER2.png|[[Walkatrout]]
File:PLACEHOLDER2.png|[[Pesky Dust]]
File:PLACEHOLDER2.png|[[Mole-Stache]]
File:PLACEHOLDER2.png|[[The Worst]]
File:PLACEHOLDER2.png|[[Kickin Hawk]]
File:PLACEHOLDER2.png|[[Astrodactyl]]
File:PLACEHOLDER2.png|[[Bullfrag]]
File:PLACEHOLDER2.png|[[Atomix]]
File:PLACEHOLDER2.png|[[Gutrot]]
File:PLACEHOLDER2.png|[[Whampire]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
{{-}}
e577222ceca156675587e04036ef5484f5651300
787
786
2020-06-02T21:12:26Z
Jaswacker
30585766
/* Introduced in Ben 10: Ultimate Alien */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
<gallery mode="slideshow">
Image:PLACEHOLDER2.png|[[Heatblast]]
Image:PLACEHOLDER2.png|[[Placeholder]]
Image:PLACEHOLDER2.png|[[Placeholder]]
</gallery>
__TOC__
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck]] (Perk)
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]] <small>(Introduced in [[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]])</small>
File:PLACEHOLDER2.png|[[Buzzshock]] <small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|[[Spitter]] <small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Arctiguana]] <small>(First used by Ben 10,000)</small>
</gallery></center>
== Introduced in [[Ben 10: Alien Force]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Upchuck]] (Murk)
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|[[Nanomech]] <small>(Introduced in ''[[Ben 10: Alien Swarm|Alien Swarm]]'')</small>
File:PLACEHOLDER2.png|[[Rocks]] <small>(Introduced in ''[[Power of the Omnitrix]]'' stage play)</small>
File:PLACEHOLDER2.png|[[Squidstrictor]] <small>(Introduced in ''Power of the Omnitrix'' stage play)</small>
</gallery></center>
== Introduced in [[Ben 10: Ultimate Alien]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Water Hazard]]
File:PLACEHOLDER2.png|[[AmpFibian]]
File:PLACEHOLDER2.png|[[Armodrillo]]
File:PLACEHOLDER2.png|[[Terraspin]]
File:PLACEHOLDER2.png|[[NRG]]
File:PLACEHOLDER2.png|[[Fasttrack]]
File:PLACEHOLDER2.png|[[Clockwork]]
File:PLACEHOLDER2.png|[[Chamalien]]
File:PLACEHOLDER2.png|[[Shocksquatch]] <small>(Introduced in ''[[Ben 10/Generator Rex: Heroes United|Heroes United]]'')</small>
File:PLACEHOLDER2.png|[[Eatle]]
File:PLACEHOLDER2.png|[[Juryrigg]]
</gallery></center>
== Introduced in [[Ben 10: Omniverse]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Feedback]]
File:PLACEHOLDER2.png|[[Bloxx]]
File:PLACEHOLDER2.png|[[Gravattack]]
File:PLACEHOLDER2.png|[[Crashhopper]]
File:PLACEHOLDER2.png|[[Ball Weevil]]
File:PLACEHOLDER2.png|[[Walkatrout]]
File:PLACEHOLDER2.png|[[Pesky Dust]]
File:PLACEHOLDER2.png|[[Mole-Stache]]
File:PLACEHOLDER2.png|[[The Worst]]
File:PLACEHOLDER2.png|[[Kickin Hawk]]
File:PLACEHOLDER2.png|[[Astrodactyl]]
File:PLACEHOLDER2.png|[[Bullfrag]]
File:PLACEHOLDER2.png|[[Atomix]]
File:PLACEHOLDER2.png|[[Gutrot]]
File:PLACEHOLDER2.png|[[Whampire]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
{{-}}
0c4c11ea150836257c6fb55ab0b60720db2202be
788
787
2020-06-02T21:13:26Z
Jaswacker
30585766
/* Introduced in Ben 10 */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
<gallery mode="slideshow">
Image:PLACEHOLDER2.png|[[Heatblast]]
Image:PLACEHOLDER2.png|[[Placeholder]]
Image:PLACEHOLDER2.png|[[Placeholder]]
</gallery>
__TOC__
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck]] (Perk)
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]] <small>(Introduced in ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'')</small>
File:PLACEHOLDER2.png|[[Buzzshock]] <small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|[[Spitter]] <small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Arctiguana]] <small>(First used by Ben 10,000)</small>
</gallery></center>
== Introduced in [[Ben 10: Alien Force]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Upchuck]] (Murk)
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|[[Nanomech]] <small>(Introduced in ''[[Ben 10: Alien Swarm|Alien Swarm]]'')</small>
File:PLACEHOLDER2.png|[[Rocks]] <small>(Introduced in ''[[Power of the Omnitrix]]'' stage play)</small>
File:PLACEHOLDER2.png|[[Squidstrictor]] <small>(Introduced in ''Power of the Omnitrix'' stage play)</small>
</gallery></center>
== Introduced in [[Ben 10: Ultimate Alien]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Water Hazard]]
File:PLACEHOLDER2.png|[[AmpFibian]]
File:PLACEHOLDER2.png|[[Armodrillo]]
File:PLACEHOLDER2.png|[[Terraspin]]
File:PLACEHOLDER2.png|[[NRG]]
File:PLACEHOLDER2.png|[[Fasttrack]]
File:PLACEHOLDER2.png|[[Clockwork]]
File:PLACEHOLDER2.png|[[Chamalien]]
File:PLACEHOLDER2.png|[[Shocksquatch]] <small>(Introduced in ''[[Ben 10/Generator Rex: Heroes United|Heroes United]]'')</small>
File:PLACEHOLDER2.png|[[Eatle]]
File:PLACEHOLDER2.png|[[Juryrigg]]
</gallery></center>
== Introduced in [[Ben 10: Omniverse]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Feedback]]
File:PLACEHOLDER2.png|[[Bloxx]]
File:PLACEHOLDER2.png|[[Gravattack]]
File:PLACEHOLDER2.png|[[Crashhopper]]
File:PLACEHOLDER2.png|[[Ball Weevil]]
File:PLACEHOLDER2.png|[[Walkatrout]]
File:PLACEHOLDER2.png|[[Pesky Dust]]
File:PLACEHOLDER2.png|[[Mole-Stache]]
File:PLACEHOLDER2.png|[[The Worst]]
File:PLACEHOLDER2.png|[[Kickin Hawk]]
File:PLACEHOLDER2.png|[[Astrodactyl]]
File:PLACEHOLDER2.png|[[Bullfrag]]
File:PLACEHOLDER2.png|[[Atomix]]
File:PLACEHOLDER2.png|[[Gutrot]]
File:PLACEHOLDER2.png|[[Whampire]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
{{-}}
357603612911bc5524ff7cda4c35a13ce78bba1a
Minor Transformations/Other
0
181
789
695
2020-06-02T21:21:57Z
Carth
30634784
wikitext
text/x-wiki
<sup>[[Minor_Transformations/Other|Full page link.]]</sup>
{{-}}
==Ben Tennyson (Race Against Time)==
The following are forms used by Ben Tennyson in [[Ben 10: Race Against Time|Race Against Time]]. It's also known that he has access to '''Wildmutt''', '''XLR8''', '''Four Arms''', '''Stinkfly''', '''Ripjaws''', '''Upgrade''' and '''Cannonbolt''', but these go unseen, only being confirmed by the presence of their icons.
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Grey Matter===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Diamondhead===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Wildmutt===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Eon===
[[File:Eon_Transformation.png|thumb|200px|caption]]
'''Eon''' is a [[Chronian]] from the planet [[Chronia]].
After hacking his way through the Omnitrix's firewalls, Eon forced [[Ben Tennyson (Race Against Time)|Ben]] to transform into a copy of himself. His appearance (sans helmet) and powers are identical to Eon's except amplified due to the rebirth.
The form was lost the moment Ben transformed back into himself with the help of [[Gwen Tennyson (Race Against Time)|Gwen]] coaching him to break free from Eon's control.
This form is treated as non-canonical due to Eon's origins changing in ''[[Ben 10,000 Returns|Ultimate Alien]]'' and ''[[Ben Again|Omniverse]]''.
<small>For more information on his multiversal counterparts, see [[Eon (Disambiguation)|Eon]].</small>
{{-}}
== Deefus Veeblepister ==
===Slapstrike===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
===Unitaur===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
==Alpha==
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Four Arms===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Humungousaur===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five Earth samples are said to be present inside the Omnitrix.
{{-}}
===Human===
As Ben is a human himself, he is incapable of using this transformation. If an alien were to use the device however, they would be able to transform into a human. [[Argit]] is the only alien user of an Omnitrix confirmed to have a Human transformation.
{{-}}
===Primate, Elephant, Dolphin and White Lab Mouse===
It's possible that these animal samples are not meant for transformation, rather for cataloguing purposes, as most of them are not fully sapient like most samples.
bb1631f493debbbff8e5c9cf0beb3c722a68edd8
790
789
2020-06-02T21:22:34Z
Carth
30634784
wikitext
text/x-wiki
<sup>[[Minor_Transformations/Other|Full page link.]]</sup>
{{-}}
==Ben Tennyson (Race Against Time)==
The following are forms used by Ben Tennyson in [[Ben 10: Race Against Time|Race Against Time]]. It's also known that he has access to '''Wildmutt''', '''XLR8''', '''Four Arms''', '''Stinkfly''', '''Ripjaws''', '''Upgrade''' and '''Cannonbolt''', but these go unseen, only being confirmed by the presence of their icons.
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Grey Matter===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Diamondhead===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Wildmutt===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Eon===
[[File:Eon_Transformation.png|thumb|200px|caption]]
'''Eon''' is a [[Chronian]] from the planet [[Chronia]].
After hacking his way through the Omnitrix's firewalls, Eon forced [[Ben Tennyson (Race Against Time)|Ben]] to transform into a copy of himself. His appearance (sans helmet) and powers are identical to Eon's except amplified due to the rebirth.
The form was lost the moment Ben transformed back into himself with the help of [[Gwen Tennyson (Race Against Time)|Gwen]] coaching him to break free from Eon's control.
This form is treated as non-canonical due to Eon's origins changing in ''[[Ben 10,000 Returns|Ultimate Alien]]'' and ''[[Ben Again|Omniverse]]''.
<small>For more information on his multiversal counterparts, see [[Eon (Disambiguation)|Eon]].</small>
{{-}}
== Deefus Veeblepister ==
===Slapstrike===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unitaur===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Alpha==
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Four Arms===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Humungousaur===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five Earth samples are said to be present inside the Omnitrix.
{{-}}
===Human===
As Ben is a human himself, he is incapable of using this transformation. If an alien were to use the device however, they would be able to transform into a human. [[Argit]] is the only alien user of an Omnitrix confirmed to have a Human transformation.
{{-}}
===Primate, Elephant, Dolphin and White Lab Mouse===
It's possible that these animal samples are not meant for transformation, rather for cataloguing purposes, as most of them are not fully sapient like most samples.
bc64b54a017a7ea085ec26de0407d11fd0682a5a
Upchuck
0
6
791
590
2020-06-02T22:15:44Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
<Insert some infobox here, which isnt done yet>
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 2, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|''Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck, Battle Version''' (Wave 3, 2007)
: placeholder
: for new lines
: do this thing
{{quote|''Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave #, year)
: Release of Wave 2 Upchuck with the ''Ultimate Alien'' toyline.
{{quote|toybio}}
{{-}}
=== DNA Alien Heroes ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Rocks ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Benwolf and Upchuck''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Planetary Powder Sets ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck Planetary Powder Set''' (year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Alien Force'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Creation Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Murk Upchuck and Gorvan''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Alien Creation Transporter: Upchuck & Clear Heatblast''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Ultimate Alien'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Haywire''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Four Arms, Upchuck, & XLR8''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Four Arms/Stinkfly, Swampfire/Diamondhead, Goop/Wildmutt''' (Wave 4, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== 2" Mini Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
[[File:PLACEHOLDER2.png|thumb|250px|clear green variant]]
*'''Upchuck''', Blind Bag (Series 3, year)
: toyinfo
{{-}}
=== ''Omniverse'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Role Play ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Omnitrix Challenge (2012)
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Transformations]]</noinclude>
e50c45732e23411dc91a9e61516cb0540aaea867
Template:Stub
10
113
792
497
2020-06-02T22:16:47Z
Jaswacker
30585766
wikitext
text/x-wiki
<br clear="all" />{{messagebox
|header=''"It that it? Is this the end?"''
|message_text=''This article is a [[:Category:Stub|stub]] and is missing information. You can help '''{{SITENAME}}''' by <span class="plainlinks">[{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|action=edit}} expanding it]</span>.''
|image_name=PLACEHOLDER2.png
|image_width=80
|width = 90%
|bottomtext={{#if: {{{1|}}}|'''What's needed:''' {{{1|}}} |}}
}}<includeonly>{{#ifeq:{{NAMESPACE}}|User||[[Category:Stub]]}}</includeonly>
<noinclude>Use this template to mark an article as a [[:Category:Stub|stub]]. Place the template at the bottom of the article. The article will then be automatically added to the stub category.
[[Category:Templates| ]]</noinclude>
f7a13458b6c1d63b21f373cde0a227f6e98ec286
794
792
2020-06-02T22:49:31Z
Jaswacker
30585766
wikitext
text/x-wiki
<br clear="all" />{{messagebox
|header=''"It that it? Is this the end?"''
|message_text=''This article is a [[:Category:Stub|stub]] and is missing information. You can help '''{{SITENAME}}''' by <span class="plainlinks">[{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|action=edit}} expanding it]</span>.''
|image_name=singlehandedhand.png
|image_width=80
|width = 90%
|bottomtext={{#if: {{{1|}}}|'''What's needed:''' {{{1|}}} |}}
}}<includeonly>{{#ifeq:{{NAMESPACE}}|User||[[Category:Stub]]}}</includeonly>
<noinclude>Use this template to mark an article as a [[:Category:Stub|stub]]. Place the template at the bottom of the article. The article will then be automatically added to the stub category.
[[Category:Templates| ]]</noinclude>
c77a6dd8ce58488d2f3368edd064190f717dfe7f
798
794
2020-06-02T22:55:47Z
Carth
30634784
wikitext
text/x-wiki
<br clear="all" />{{messagebox
|header='''''"I can still feel my hand! But where is it?"'''''
|message_text=''This article is a [[:Category:Stub|stub]] and is missing information. You can help '''{{SITENAME}}''' by <span class="plainlinks">[{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|action=edit}} expanding it]</span>.''
|image_name=singlehandedhand.png
|image_width=80
|width = 90%
|bottomtext={{#if: {{{1|}}}|'''What's needed:''' {{{1|}}} |}}
}}<includeonly>{{#ifeq:{{NAMESPACE}}|User||[[Category:Stub]]}}</includeonly>
<noinclude>Use this template to mark an article as a [[:Category:Stub|stub]]. Place the template at the bottom of the article. The article will then be automatically added to the stub category.
[[Category:Templates| ]]</noinclude>
4ce03f888b4fbe945ffb2c28e8de21dd19ec9ef7
802
798
2020-06-02T23:00:17Z
Jaswacker
30585766
wikitext
text/x-wiki
<br clear="all" />{{messagebox
|header='''''"I can still feel my hand, but where is it?"'''''
|message_text=''This article is a [[:Category:Stub|stub]] and is missing information. You can help '''{{SITENAME}}''' by <span class="plainlinks">[{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|action=edit}} expanding it]</span>.''
|image_name=benslefthand.png
|image_width=110
|width = 90%
|bottomtext={{#if: {{{1|}}}|'''What's needed:''' {{{1|}}} |}}
}}<includeonly>{{#ifeq:{{NAMESPACE}}|User||[[Category:Stub]]}}</includeonly>
<noinclude>Use this template to mark an article as a [[:Category:Stub|stub]]. Place the template at the bottom of the article. The article will then be automatically added to the stub category.
[[Category:Templates| ]]</noinclude>
5954d7b7916674d14590f2ef21acd3542522b9f6
803
802
2020-06-02T23:01:47Z
Jaswacker
30585766
wikitext
text/x-wiki
<br clear="all" />{{messagebox
|header='''''"I can still feel my hand, but where is it?"'''''
|message_text=''This article is a [[:Category:Stub|stub]] and is missing information. You can help '''{{SITENAME}}''' by <span class="plainlinks">[{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|action=edit}} expanding it]</span>.''
|image_name=benslefthand.png
|image_width=120
|width = 90%
|bottomtext={{#if: {{{1|}}}|'''What's needed:''' {{{1|}}} |}}
}}<div style="clear:both"><includeonly>{{#ifeq:{{NAMESPACE}}|User||[[Category:Stub]]}}</includeonly>
<noinclude>Use this template to mark an article as a [[:Category:Stub|stub]]. Place the template at the bottom of the article. The article will then be automatically added to the stub category.
[[Category:Templates| ]]</noinclude>
d0e6970a04e27f263481ed40a67a4d56ab4645ef
804
803
2020-06-02T23:06:56Z
Jaswacker
30585766
wikitext
text/x-wiki
<br clear="all" />{{messagebox
|header='''''"I can still feel my hand, but where is it?"'''''
|message_text=''This article is a [[:Category:Stub|stub]] and is missing information. You can help '''{{SITENAME}}''' by <span class="plainlinks">[{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|action=edit}} expanding it]</span>.''
|image_name=benslefthand.png
|image_width=120
|width = 90%
|bottomtext={{#if: {{{1|}}}|'''What's needed:''' {{{1|}}} |}}
}}
<includeonly>{{#ifeq:{{NAMESPACE}}|User||[[Category:Stub]]}}</includeonly>
<noinclude>Use this template to mark an article as a [[:Category:Stub|stub]]. Place the template at the bottom of the article. The article will then be automatically added to the stub category.
[[Category:Templates| ]]</noinclude>
0d0c12dfa42e2ac516bd0ddb1798e05b739f0420
813
804
2020-06-02T23:29:25Z
Jaswacker
30585766
wikitext
text/x-wiki
<br clear="all" />{{messagebox
|header='''''"I can still feel my hand, but where is it?"'''''
|message_text=''This article is a [[:Category:Stub|stub]] and is missing information. You can help '''{{SITENAME}}''' by <span class="plainlinks">[{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|action=edit}} expanding it]</span>.''
|image_name=benslosthand.png
|image_width=120
|width = 90%
|bottomtext={{#if: {{{1|}}}|'''What's needed:''' {{{1|}}} |}}
}}
<includeonly>{{#ifeq:{{NAMESPACE}}|User||[[Category:Stub]]}}</includeonly>
<noinclude>Use this template to mark an article as a [[:Category:Stub|stub]]. Place the template at the bottom of the article. The article will then be automatically added to the stub category.
[[Category:Templates| ]]</noinclude>
ae52cd2037e31f9ff6e9d1c162a068da0b66b0c1
817
813
2020-06-02T23:43:24Z
Jaswacker
30585766
wikitext
text/x-wiki
<br clear="all" />{{messagebox
|header='''''"I can still feel my hand, but where is it?"'''''
|message_text=''This article is a [[:Category:Stub|stub]] and is missing information. You can help '''{{SITENAME}}''' by <span class="plainlinks">[{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|action=edit}} expanding it]</span>.''
|image_name=benslosthand.png
|image_width=90
|width = 90%
|bottomtext={{#if: {{{1|}}}|'''What's needed:''' {{{1|}}} |}}
}}
<includeonly>{{#ifeq:{{NAMESPACE}}|User||[[Category:Stub]]}}</includeonly>
<noinclude>Use this template to mark an article as a [[:Category:Stub|stub]]. Place the template at the bottom of the article. The article will then be automatically added to the stub category.
[[Category:Templates| ]]</noinclude>
c619012ef28673ebcbd8e66a7c6fcf7bedce38bf
818
817
2020-06-02T23:43:34Z
Jaswacker
30585766
wikitext
text/x-wiki
<br clear="all" />{{messagebox
|header='''''"I can still feel my hand, but where is it?"'''''
|message_text=''This article is a [[:Category:Stub|stub]] and is missing information. You can help '''{{SITENAME}}''' by <span class="plainlinks">[{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|action=edit}} expanding it]</span>.''
|image_name=benslosthand.png
|image_width=100
|width = 90%
|bottomtext={{#if: {{{1|}}}|'''What's needed:''' {{{1|}}} |}}
}}
<includeonly>{{#ifeq:{{NAMESPACE}}|User||[[Category:Stub]]}}</includeonly>
<noinclude>Use this template to mark an article as a [[:Category:Stub|stub]]. Place the template at the bottom of the article. The article will then be automatically added to the stub category.
[[Category:Templates| ]]</noinclude>
804b5e48775fff82d77e5c3125503ad250be57f1
File:Singlehandedhand.png
6
225
793
2020-06-02T22:49:07Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Singlehandedhand2.png
6
226
795
2020-06-02T22:50:39Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Singlehandedhand3.png
6
227
796
2020-06-02T22:52:47Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Benshandsgone.png
6
228
797
2020-06-02T22:55:41Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Benshandsgone2.png
6
229
799
2020-06-02T22:56:47Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Benslosthand.png
6
230
800
2020-06-02T22:58:24Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Benslefthand.png
6
231
801
2020-06-02T22:59:15Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Template:Messagebox
10
111
805
392
2020-06-02T23:07:42Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><center>
{| cellspacing="0" style="{{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;text-align:right;" |<div style="padding:.5em; background-color:#{{{bgcolor|efefff}}}; border:solid 1px #{{{border|9f9fff}}};text-align:{{{justification|center}}};margin:auto;">{{#if: {{{image_name|}}} |
[[Image:{{{image_name|}}}|left{{ #if: {{{image_width|}}}|{{!}}{{{image_width|}}}px|}}{{ #if: {{{mouseover|}}} |{{!}}{{{mouseover|}}}|}}]] | }}
{{ #if: {{{header|}}} |<span style="font-size:125%;font-weight:900;">{{{header|}}}</span><hr/>|}}
{{{message_text|Your message text goes here. Generally speaking, you should have more than 1 line of text in order to force the thing to lay out correctly.}}}
{{ #if: {{{talkpage|}}}|<small>{{ #if: {{{talkSameLine|}}}| |<br/>}}{{{talkpage|}}} [[:{{TALKPAGENAME}}{{!}}talk page]].</small>|}}
</div>{{#if: {{{bottomtext|}}}|<small>{{{bottomtext|}}}</small>|}}
|}
<div style "clear:both;"></div>
</center>{{ #if: {{{noCats|}}}||{{{categories|}}}}}</includeonly><noinclude>
{{Template:Messagebox/doc}}
[[Category:Templates]]</noinclude>
d00043e0792f2621c4333345c58ab0011c1387a0
806
805
2020-06-02T23:08:15Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><center>
<div style "clear:both;">
{| cellspacing="0" style="{{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;text-align:right;" |<div style="padding:.5em; background-color:#{{{bgcolor|efefff}}}; border:solid 1px #{{{border|9f9fff}}};text-align:{{{justification|center}}};margin:auto;">{{#if: {{{image_name|}}} |
[[Image:{{{image_name|}}}|left{{ #if: {{{image_width|}}}|{{!}}{{{image_width|}}}px|}}{{ #if: {{{mouseover|}}} |{{!}}{{{mouseover|}}}|}}]] | }}
{{ #if: {{{header|}}} |<span style="font-size:125%;font-weight:900;">{{{header|}}}</span><hr/>|}}
{{{message_text|Your message text goes here. Generally speaking, you should have more than 1 line of text in order to force the thing to lay out correctly.}}}
{{ #if: {{{talkpage|}}}|<small>{{ #if: {{{talkSameLine|}}}| |<br/>}}{{{talkpage|}}} [[:{{TALKPAGENAME}}{{!}}talk page]].</small>|}}
</div>{{#if: {{{bottomtext|}}}|<small>{{{bottomtext|}}}</small>|}}
|}
</div>
</center>{{ #if: {{{noCats|}}}||{{{categories|}}}}}</includeonly><noinclude>
{{Template:Messagebox/doc}}
[[Category:Templates]]</noinclude>
d47e8d5d9bde13c558cd29c129593ac880eb10e7
807
806
2020-06-02T23:11:25Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><center>
{| cellspacing="0" style="{{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;text-align:right;" |<div style="padding:.5em; background-color:#{{{bgcolor|efefff}}}; border:solid 1px #{{{border|9f9fff}}};text-align:{{{justification|center}}};margin:auto;">{{#if: {{{image_name|}}} |
[[Image:{{{image_name|}}}|left{{ #if: {{{image_width|}}}|{{!}}{{{image_width|}}}px|}}{{ #if: {{{mouseover|}}} |{{!}}{{{mouseover|}}}|}}]] | }}
{{ #if: {{{header|}}} |<span style="font-size:125%;font-weight:900;">{{{header|}}}</span><hr/>|}}
{{{message_text|Your message text goes here. Generally speaking, you should have more than 1 line of text in order to force the thing to lay out correctly.}}}
{{ #if: {{{talkpage|}}}|<small>{{ #if: {{{talkSameLine|}}}| |<br/>}}{{{talkpage|}}} [[:{{TALKPAGENAME}}{{!}}talk page]].</small>|}}
</div>{{#if: {{{bottomtext|}}}|<small>{{{bottomtext|}}}</small>|}}
<div style "clear:both;"></div>
|}
</center>{{ #if: {{{noCats|}}}||{{{categories|}}}}}</includeonly><noinclude>
{{Template:Messagebox/doc}}
[[Category:Templates]]</noinclude>
f31347044f5a2a235c971afe5a8e5df632746529
808
807
2020-06-02T23:21:05Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><center>
{| cellspacing="0" style="{{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;text-align:right;" |<div style="padding:.5em; background-color:#{{{bgcolor|efefff}}}; border:solid 1px #{{{border|9f9fff}}};text-align:{{{justification|center}}};margin:auto;">{{#if: {{{image_name|}}} |
[[Image:{{{image_name|}}}|left{{ #if: {{{image_width|}}}|{{!}}{{{image_width|}}}px|}}{{ #if: {{{mouseover|}}} |{{!}}{{{mouseover|}}}|}}]] | }}
{{ #if: {{{header|}}} |<span style="font-size:125%;font-weight:900;">{{{header|}}}</span><hr/>|}}
{{{message_text|Your message text goes here. Generally speaking, you should have more than 1 line of text in order to force the thing to lay out correctly.}}}
{{ #if: {{{talkpage|}}}|<small>{{ #if: {{{talkSameLine|}}}| |<br/>}}{{{talkpage|}}} [[:{{TALKPAGENAME}}{{!}}talk page]].</small>|}}
</div>{{#if: {{{bottomtext|}}}|<small>{{{bottomtext|}}}</small>|}}
|}
</center>{{ #if: {{{noCats|}}}||{{{categories|}}}}}</includeonly><noinclude>
{{Template:Messagebox/doc}}
[[Category:Templates]]</noinclude>
5e640f4e817f4d7d0bbf28e8436632e4ac9e588e
809
808
2020-06-02T23:24:27Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><center>
{| cellspacing="0" style="{{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;text-align:right;" |<div style="padding:.5em; background-color:#{{{bgcolor|efefff}}}; border:solid 1px #{{{border|9f9fff}}};text-align:{{{justification|center}}};margin:auto;">{{#if: {{{image_name|}}} |
[[Image:{{{image_name|}}}|left{{ #if: {{{image_width|}}}|{{!}}{{{image_width|}}}px|}}{{ #if: {{{mouseover|}}} |{{!}}{{{mouseover|}}}|}}]] | }}<div style "clear:both;"></div>
{{ #if: {{{header|}}} |<span style="font-size:125%;font-weight:900;">{{{header|}}}</span><hr/>|}}
{{{message_text|Your message text goes here. Generally speaking, you should have more than 1 line of text in order to force the thing to lay out correctly.}}}
{{ #if: {{{talkpage|}}}|<small>{{ #if: {{{talkSameLine|}}}| |<br/>}}{{{talkpage|}}} [[:{{TALKPAGENAME}}{{!}}talk page]].</small>|}}
</div>{{#if: {{{bottomtext|}}}|<small>{{{bottomtext|}}}</small>|}}
|}
</center>{{ #if: {{{noCats|}}}||{{{categories|}}}}}</includeonly><noinclude>
{{Template:Messagebox/doc}}
[[Category:Templates]]</noinclude>
65de27c5c44e847561a42dcdfe5d4be037d67782
810
809
2020-06-02T23:24:37Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><center>
{| cellspacing="0" style="{{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;text-align:right;" |<div style="padding:.5em; background-color:#{{{bgcolor|efefff}}}; border:solid 1px #{{{border|9f9fff}}};text-align:{{{justification|center}}};margin:auto;">{{#if: {{{image_name|}}} |
[[Image:{{{image_name|}}}|left{{ #if: {{{image_width|}}}|{{!}}{{{image_width|}}}px|}}{{ #if: {{{mouseover|}}} |{{!}}{{{mouseover|}}}|}}]] | }}
{{ #if: {{{header|}}} |<span style="font-size:125%;font-weight:900;">{{{header|}}}</span><hr/>|}}
{{{message_text|Your message text goes here. Generally speaking, you should have more than 1 line of text in order to force the thing to lay out correctly.}}}
{{ #if: {{{talkpage|}}}|<small>{{ #if: {{{talkSameLine|}}}| |<br/>}}{{{talkpage|}}} [[:{{TALKPAGENAME}}{{!}}talk page]].</small>|}}
</div>{{#if: {{{bottomtext|}}}|<small>{{{bottomtext|}}}</small>|}}
|}
</center>{{ #if: {{{noCats|}}}||{{{categories|}}}}}</includeonly><noinclude>
{{Template:Messagebox/doc}}
[[Category:Templates]]</noinclude>
5e640f4e817f4d7d0bbf28e8436632e4ac9e588e
811
810
2020-06-02T23:25:29Z
101.98.17.73
0
wikitext
text/x-wiki
<includeonly><center>
{| cellspacing="0" style="{{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;text-align:right;" |<div style="padding:.5em; background-color:#{{{bgcolor|efefff}}}; border:solid 1px #{{{border|9f9fff}}};text-align:{{{justification|center}}};margin:auto;">{{#if: {{{image_name|}}} |
[[Image:{{{image_name|}}}|left{{ #if: {{{image_width|}}}|{{!}}{{{image_width|}}}px|}}{{ #if: {{{mouseover|}}} |{{!}}{{{mouseover|}}}|}}]] | }}
{{ #if: {{{header|}}} |<span style="font-size:125%;font-weight:900;">{{{header|}}}</span><hr/>|}}
{{{message_text|Your message text goes here. Generally speaking, you should have more than 1 line of text in order to force the thing to lay out correctly.}}}
{{ #if: {{{talkpage|}}}|<small>{{ #if: {{{talkSameLine|}}}| |<br/>}}{{{talkpage|}}} [[:{{TALKPAGENAME}}{{!}}talk page]].</small>|}}
</div>{{#if: {{{bottomtext|}}}|<small>{{{bottomtext|}}}</small>|}}
<div style="clear: both"></div>
|}
</center>{{ #if: {{{noCats|}}}||{{{categories|}}}}}</includeonly><noinclude>
{{Template:Messagebox/doc}}
[[Category:Templates]]</noinclude>
ef57d3430a188fc3eec2c967aec57328b1f5e3f6
812
811
2020-06-02T23:27:40Z
101.98.17.73
0
wikitext
text/x-wiki
<includeonly><center>
{| cellspacing="0" style="{{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;text-align:right;" |<div style="padding:.5em; background-color:#{{{bgcolor|efefff}}}; border:solid 1px #{{{border|9f9fff}}};text-align:{{{justification|center}}};margin:auto;">{{#if: {{{image_name|}}} |
[[Image:{{{image_name|}}}|left{{ #if: {{{image_width|}}}|{{!}}{{{image_width|}}}px|}}{{ #if: {{{mouseover|}}} |{{!}}{{{mouseover|}}}|}}]] | }}
{{ #if: {{{header|}}} |<span style="font-size:125%;font-weight:900;">{{{header|}}}</span><hr/>|}}
{{{message_text|Your message text goes here. Generally speaking, you should have more than 1 line of text in order to force the thing to lay out correctly.}}}
{{ #if: {{{talkpage|}}}|<small>{{ #if: {{{talkSameLine|}}}| |<br/>}}{{{talkpage|}}} [[:{{TALKPAGENAME}}{{!}}talk page]].</small>|}}
<div style="clear: both"></div>
</div>{{#if: {{{bottomtext|}}}|<small>{{{bottomtext|}}}</small>|}}
|}
</center>{{ #if: {{{noCats|}}}||{{{categories|}}}}}</includeonly><noinclude>
{{Template:Messagebox/doc}}
[[Category:Templates]]</noinclude>
ba8bdda1f7c7e77cf7bb3731a4ca4c9e9d3d5136
814
812
2020-06-02T23:31:48Z
101.98.17.73
0
wikitext
text/x-wiki
<includeonly><center>
{| cellspacing="0" style="{{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;text-align:right;" |<div style="padding:.5em; background-color:#{{{bgcolor|efefff}}}; border:solid 1px #{{{border|9f9fff}}};text-align:{{{justification|center}}};margin:auto;vertical-align:middle;">{{#if: {{{image_name|}}} |
[[Image:{{{image_name|}}}|left{{ #if: {{{image_width|}}}|{{!}}{{{image_width|}}}px|}}{{ #if: {{{mouseover|}}} |{{!}}{{{mouseover|}}}|}}]] | }}
{{ #if: {{{header|}}} |<span style="font-size:125%;font-weight:900;">{{{header|}}}</span><hr/>|}}
{{{message_text|Your message text goes here. Generally speaking, you should have more than 1 line of text in order to force the thing to lay out correctly.}}}
{{ #if: {{{talkpage|}}}|<small>{{ #if: {{{talkSameLine|}}}| |<br/>}}{{{talkpage|}}} [[:{{TALKPAGENAME}}{{!}}talk page]].</small>|}}
<div style="clear: both"></div>
</div>{{#if: {{{bottomtext|}}}|<small>{{{bottomtext|}}}</small>|}}
|}
</center>{{ #if: {{{noCats|}}}||{{{categories|}}}}}</includeonly><noinclude>
{{Template:Messagebox/doc}}
[[Category:Templates]]</noinclude>
62e6f003ae6976ad538fb48b4ecb8918dce20886
815
814
2020-06-02T23:37:23Z
101.98.17.73
0
wikitext
text/x-wiki
<includeonly><center>
{| cellspacing="0" style="{{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;text-align:right;" |<div style="padding:.5em; background-color:#{{{bgcolor|efefff}}}; border:solid 1px #{{{border|9f9fff}}};text-align:{{{justification|center}}};margin:auto;vertical-align:middle;">{{#if: {{{image_name|}}} |
[[Image:{{{image_name|}}}|left{{ #if: {{{image_width|}}}|{{!}}{{{image_width|}}}px|}}{{ #if: {{{mouseover|}}} |{{!}}{{{mouseover|}}}|}}]] | }}
<div>{{ #if: {{{header|}}} |<span style="font-size:125%;font-weight:900;">{{{header|}}}</span><hr/>|}}
{{{message_text|Your message text goes here. Generally speaking, you should have more than 1 line of text in order to force the thing to lay out correctly.}}}
{{ #if: {{{talkpage|}}}|<small>{{ #if: {{{talkSameLine|}}}| |<br/>}}{{{talkpage|}}} [[:{{TALKPAGENAME}}{{!}}talk page]].</small>|}}</div>
<div style="clear: both"></div>
</div>{{#if: {{{bottomtext|}}}|<small>{{{bottomtext|}}}</small>|}}
|}
</center>{{ #if: {{{noCats|}}}||{{{categories|}}}}}</includeonly><noinclude>
{{Template:Messagebox/doc}}
[[Category:Templates]]</noinclude>
e5d4f2cd27366c947f98a079c847c2c7d00a07de
816
815
2020-06-02T23:43:22Z
101.98.17.73
0
I think this should work.
wikitext
text/x-wiki
<includeonly><center>
{| cellspacing="0" style="{{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;text-align:right;" |<div style="padding:.5em; background-color:#{{{bgcolor|efefff}}}; border:solid 1px #{{{border|9f9fff}}};text-align:{{{justification|center}}};margin:auto;display:table;width:100%">{{#if: {{{image_name|}}} |
[[Image:{{{image_name|}}}|left{{ #if: {{{image_width|}}}|{{!}}{{{image_width|}}}px|}}{{ #if: {{{mouseover|}}} |{{!}}{{{mouseover|}}}|}}]] | }}
<div style="display:table-cell;vertical-align:middle;width:100%">{{ #if: {{{header|}}} |<span style="font-size:125%;font-weight:900;">{{{header|}}}</span><hr/>|}}
{{{message_text|Your message text goes here. Generally speaking, you should have more than 1 line of text in order to force the thing to lay out correctly.}}}
{{ #if: {{{talkpage|}}}|<small>{{ #if: {{{talkSameLine|}}}| |<br/>}}{{{talkpage|}}} [[:{{TALKPAGENAME}}{{!}}talk page]].</small>|}}</div>
<div style="clear: both"></div>
</div>{{#if: {{{bottomtext|}}}|<small>{{{bottomtext|}}}</small>|}}
|}
</center>{{ #if: {{{noCats|}}}||{{{categories|}}}}}</includeonly><noinclude>
{{Template:Messagebox/doc}}
[[Category:Templates]]</noinclude>
13a20542cb484eaa64c9ae16a698020f613de649
Template:Charbox
10
123
819
515
2020-06-03T00:07:03Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Home World'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{portrayed_by|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Portrayed by'''
{{!}} {{{portrayed_by}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_appearance|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Latest appearance'''
{{!}} {{{latest_appearance}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_portrayal|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Latest portrayal'''
{{!}} {{{latest_portrayal}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliation|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliation(s)'''
{{!}} {{{affiliation}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|image2=
|image3=
|fullname=
|nickname=
|species=
|homeworld=
|portrayed_by=
|latest_appearance=
|latest_portrayal=
}}
</pre>
[[Category:Templates]]</noinclude>
785149abba21b3330a4089ff1f53091578343036
824
819
2020-06-03T00:14:19Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Home World'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{portrayed_by|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Portrayed by'''
{{!}} {{{portrayed_by}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_appearance|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Latest appearance'''
{{!}} {{{latest_appearance}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_portrayal|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Latest portrayal'''
{{!}} {{{latest_portrayal}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliation|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliation(s)'''
{{!}} {{{affiliation}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|fullname=
|nickname=
|species=
|homeworld=
|portrayed_by=
|latest_appearance=
|latest_portrayal=
}}
</pre>
[[Category:Templates]]</noinclude>
e9e9a93dd900bdf2d496acce9323890c8c3de39f
825
824
2020-06-03T00:15:53Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px 0px"
|-
|align="center" colspan="2" | {{{image|}}}
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Home World'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{portrayed_by|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Portrayed by'''
{{!}} {{{portrayed_by}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_appearance|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Latest appearance'''
{{!}} {{{latest_appearance}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_portrayal|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Latest portrayal'''
{{!}} {{{latest_portrayal}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliation|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliation(s)'''
{{!}} {{{affiliation}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|fullname=
|nickname=
|species=
|homeworld=
|portrayed_by=
|latest_appearance=
|latest_portrayal=
}}
</pre>
[[Category:Templates]]</noinclude>
8ae55dbd2c1456ecc39118c45b47b8e417ea7328
826
825
2020-06-03T00:17:13Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px 0px"
|-
|align="center" colspan="2" | {{{image|}}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Home World'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{portrayed_by|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Portrayed by'''
{{!}} {{{portrayed_by}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_appearance|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Latest appearance'''
{{!}} {{{latest_appearance}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_portrayal|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Latest portrayal'''
{{!}} {{{latest_portrayal}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliation|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliation(s)'''
{{!}} {{{affiliation}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|fullname=
|nickname=
|species=
|homeworld=
|portrayed_by=
|latest_appearance=
|latest_portrayal=
}}
</pre>
[[Category:Templates]]</noinclude>
42b832b5b7e139c86b5f604f583bcbc61eb926c8
827
826
2020-06-03T00:19:27Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px 0px"
|align="center" colspan="2" | [[Image:{{{image|}}}]]
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Home World'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{portrayed_by|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Portrayed by'''
{{!}} {{{portrayed_by}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_appearance|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Latest appearance'''
{{!}} {{{latest_appearance}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_portrayal|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Latest portrayal'''
{{!}} {{{latest_portrayal}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliation|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliation(s)'''
{{!}} {{{affiliation}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|fullname=
|nickname=
|species=
|homeworld=
|portrayed_by=
|latest_appearance=
|latest_portrayal=
}}
</pre>
[[Category:Templates]]</noinclude>
e6aa07cd69df14ae5e1f435e7f16c24292661888
828
827
2020-06-03T00:20:17Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px 0px"
|align="center" colspan="2" | [[Image:{{{image|}}}|border|150px]]
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Home World'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{portrayed_by|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Portrayed by'''
{{!}} {{{portrayed_by}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_appearance|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Latest appearance'''
{{!}} {{{latest_appearance}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_portrayal|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Latest portrayal'''
{{!}} {{{latest_portrayal}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliation|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliation(s)'''
{{!}} {{{affiliation}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|fullname=
|nickname=
|species=
|homeworld=
|portrayed_by=
|latest_appearance=
|latest_portrayal=
}}
</pre>
[[Category:Templates]]</noinclude>
2c3e865ab7748a87df239da8b544bf939dc0e70a
829
828
2020-06-03T00:21:57Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px 0px"
|align="center" colspan="2" | [[Image:{{{image|}}}|border|300px]]
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Home World'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{portrayed_by|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Portrayed by'''
{{!}} {{{portrayed_by}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_appearance|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Latest appearance'''
{{!}} {{{latest_appearance}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_portrayal|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Latest portrayal'''
{{!}} {{{latest_portrayal}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliation|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliation(s)'''
{{!}} {{{affiliation}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|fullname=
|nickname=
|species=
|homeworld=
|portrayed_by=
|latest_appearance=
|latest_portrayal=
}}
</pre>
[[Category:Templates]]</noinclude>
38359295d91e2e67a2586c086b5697e67d59192a
830
829
2020-06-03T00:24:38Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px 0px"
|align="center" colspan="2" |
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">{{{imagename|}}}</div>
[[Image:{{{image|}}}|border|300px]]
</div>
<div class="tabbox">
<div class="tab">{{{image2name|}}}</div>
[[Image:{{{image2|}}}|border|300px]]
</div>
<div class="tabbox">
<div class="tab">{{{image3name|}}}</div>
[[Image:{{{image3|}}}|border|300px]]
</div>
<div class="tabbox">
<div class="tab">{{{image4name|}}}</div>
[[Image:{{{image4|}}}|border|300px]]
</div></div>
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Home World'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{portrayed_by|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Portrayed by'''
{{!}} {{{portrayed_by}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_appearance|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Latest appearance'''
{{!}} {{{latest_appearance}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_portrayal|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Latest portrayal'''
{{!}} {{{latest_portrayal}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliation|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliation(s)'''
{{!}} {{{affiliation}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|imagename=
|image2=
|image2name=
|image3=
|image3name=
|image4=
|image4name=
|fullname=
|nickname=
|species=
|homeworld=
|portrayed_by=
|latest_appearance=
|latest_portrayal=
}}
</pre>
[[Category:Templates]]</noinclude>
bddbb019e518690c9de8b7fb2de35a0e8cc274f5
Ben Tennyson (Prime)
0
93
820
514
2020-06-03T00:12:48Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image= Omniverserender1.png
|fullname= test
|nickname= test
|species= test
|first_appearance= test
|portrayed_by= test
|latest_appearance= test
|latest_portrayal= test
}}
placeholder!!
2d2b9dd51fda861d4efa5bfc88f04599c31eeefd
821
820
2020-06-03T00:13:04Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image=Omniverserender1.png
|fullname= test
|nickname= test
|species= test
|first_appearance= test
|portrayed_by= test
|latest_appearance= test
|latest_portrayal= test
}}
placeholder!!
d7ff91d5b0870b3211011098505e4d8903cf3f58
822
821
2020-06-03T00:13:23Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image=file:Omniverserender1.png
|fullname= test
|nickname= test
|species= test
|first_appearance= test
|portrayed_by= test
|latest_appearance= test
|latest_portrayal= test
}}
placeholder!!
ae557d0f941a6af25c719499e2ca79acd43c28ae
823
822
2020-06-03T00:13:44Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image=Omniverserender1.png
|fullname= test
|nickname= test
|species= test
|first_appearance= test
|portrayed_by= test
|latest_appearance= test
|latest_portrayal= test
}}
placeholder!!
d7ff91d5b0870b3211011098505e4d8903cf3f58
Ben Tennyson (Prime)
0
93
831
823
2020-06-03T00:25:12Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image=Omniverserender1.png
|imagename=Omniverserender1.png
|image2=Omniverserender1.png
|image2name=Omniverserender1.png
|image3=Omniverserender1.png
|image3name=Omniverserender1.png
|fullname= test
|nickname= test
|species= test
|first_appearance= test
|portrayed_by= test
|latest_appearance= test
|latest_portrayal= test
}}
placeholder!!
f44dc0b5fbe6d605d334139d48a801ba83b23ba6
833
831
2020-06-03T00:28:37Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image=
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">tab</div>
[[Image:omniverserender1.png|border|300px]]
</div>
<div class="tabbox">
<div class="tab">tab2</div>
[[Image:omniverserender1.png|border|300px]]
</div>
<div class="tabbox">
<div class="tab">tab3</div>
[[Image:omniverserender1.png|border|300px]]
</div>
<div class="tabbox">
<div class="tab">tab4</div>
[[Image:omniverserender1.png|border|300px]]
</div></div>
|fullname= test
|nickname= test
|species= test
|first_appearance= test
|portrayed_by= test
|latest_appearance= test
|latest_portrayal= test
}}
placeholder!!
1cc6d01525bd97f78aeeef12697d9e1d17bd5b65
834
833
2020-06-03T00:29:25Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image=
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">OS</div>
[[Image:omniverserender1.png|border|250px]]
</div>
<div class="tabbox">
<div class="tab">AF</div>
[[Image:PLACEHOLDER2.png|border|250px]]
</div>
<div class="tabbox">
<div class="tab">OV</div>
[[Image:omniverserender1.png|border|250px]]
</div></div>
|fullname= test
|nickname= test
|species= test
|first_appearance= test
|portrayed_by= test
|latest_appearance= test
|latest_portrayal= test
}}
placeholder!!
e53fb7119365c671fb10e012773b631b3f365efc
846
834
2020-06-03T01:47:55Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image=
{{chartab|OS|PLACEHOLDER2.png|AF|PLACEHOLDER2.png|OV|omniverserender1.png}}
|fullname= test
|nickname= test
|species= test
|first_appearance= test
|portrayed_by= test
|latest_appearance= test
|latest_portrayal= test
}}
placeholder!!
a3d8c14909097ccaa6fbbd59b2c98f19e5f0ca60
848
846
2020-06-03T01:52:55Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image=
{{chartab|OS|PLACEHOLDER2.png|AF|PLACEHOLDER2.png|OV|omniverserender1.png}}
|fullname=Benjamin Kirby Tennyson
|nickname=Ben
|species=Human
|homeworld=Earth
|residence=Bellwood
|affiliations=test
|relationships=test
|equipment=test
|status=Alive
|first=test
|last=test
}}
placeholder!!
853d76770cb24b13ef158a53ba1e14be960b4f5b
857
848
2020-06-03T02:04:28Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image=
<gallery mode="slideshow">
Image:omniverserender1.png|Original Series
Image:PLACEHOLDER2.png|Alien Force
Image:PLACEHOLDER2.png|Omniverse
</gallery>
|fullname=Benjamin Kirby Tennyson
|nickname=Ben
|species=Human
|homeworld=Earth
|residence=Bellwood
|affiliations=test
|relationships=test
|equipment=test
|status=Alive
|first=test
|last=test
}}
placeholder!!
2f81df827f31c8bda691aa3a14907e8cec5d2ae1
859
857
2020-06-03T02:06:00Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image=
{{chartab|OV|omniverserender1.png|AF|PLACEHOLDER2.png|OS|PLACEHOLDER2.png}}
|fullname=Benjamin Kirby Tennyson
|nickname=Ben
|species=Human
|homeworld=Earth
|residence=Bellwood
|affiliations=test
|relationships=test
|equipment=test
|status=Alive
|first=test
|last=test
}}
placeholder!!
2eb771e07088b83603b54f794a0c1547c7accb3d
867
859
2020-06-03T02:30:18Z
Jaswacker
30585766
Undo revision 859 by [[Special:Contributions/Jaswacker|Jaswacker]] ([[User talk:Jaswacker|talk]])
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image=
<gallery mode="slideshow">
Image:omniverserender1.png|Original Series
Image:PLACEHOLDER2.png|Alien Force
Image:PLACEHOLDER2.png|Omniverse
</gallery>
|fullname=Benjamin Kirby Tennyson
|nickname=Ben
|species=Human
|homeworld=Earth
|residence=Bellwood
|affiliations=test
|relationships=test
|equipment=test
|status=Alive
|first=test
|last=test
}}
placeholder!!
2f81df827f31c8bda691aa3a14907e8cec5d2ae1
868
867
2020-06-03T02:30:33Z
Jaswacker
30585766
Undo revision 857 by [[Special:Contributions/Jaswacker|Jaswacker]] ([[User talk:Jaswacker|talk]])
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image=
{{chartab|OS|PLACEHOLDER2.png|AF|PLACEHOLDER2.png|OV|omniverserender1.png}}
|fullname=Benjamin Kirby Tennyson
|nickname=Ben
|species=Human
|homeworld=Earth
|residence=Bellwood
|affiliations=test
|relationships=test
|equipment=test
|status=Alive
|first=test
|last=test
}}
placeholder!!
853d76770cb24b13ef158a53ba1e14be960b4f5b
869
868
2020-06-03T02:30:51Z
Jaswacker
30585766
Undo revision 848 by [[Special:Contributions/Jaswacker|Jaswacker]] ([[User talk:Jaswacker|talk]])
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image=
{{chartab|OS|PLACEHOLDER2.png|AF|PLACEHOLDER2.png|OV|omniverserender1.png}}
|fullname= test
|nickname= test
|species= test
|first_appearance= test
|portrayed_by= test
|latest_appearance= test
|latest_portrayal= test
}}
placeholder!!
a3d8c14909097ccaa6fbbd59b2c98f19e5f0ca60
870
869
2020-06-03T02:31:18Z
Jaswacker
30585766
Undo revision 846 by [[Special:Contributions/Jaswacker|Jaswacker]] ([[User talk:Jaswacker|talk]])
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image=
<div class="tabcontainer">
<div class="tabbox">
<div class="tab">OV</div>
[[Image:omniverserender1.png|border|250px]]
</div>
<div class="tabbox">
<div class="tab">AF</div>
[[Image:PLACEHOLDER2.png|border|250px]]
</div>
<div class="tabbox">
<div class="tab">OS</div>
[[Image:omniverserender1.png|border|250px]]
</div></div>
|fullname=Benjamin Kirby Tennyson
|nickname=Ben
|species=Human
|homeworld=Earth
|residence=Bellwood
|affiliations=test
|relationships=test
|equipment=test
|status=Alive
|first=test
|last=test
}}
placeholder!!
e603e3f91c50ef0e8fd39a8f99469bf269e4d7ed
871
870
2020-06-03T02:31:49Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image=
<div class="tabcontainer" style="align:right; background: #fff; border:0px solid #02b70c; color:#000; border-radius:50px 10px" align=center>
<div class="tabbox">
<div class="tab">OV</div>
[[Image:omniverserender1.png|border|250px]]
</div>
<div class="tabbox">
<div class="tab">AF</div>
[[Image:PLACEHOLDER2.png|border|250px]]
</div>
<div class="tabbox">
<div class="tab">OS</div>
[[Image:omniverserender1.png|border|250px]]
</div></div>
|fullname=Benjamin Kirby Tennyson
|nickname=Ben
|species=Human
|homeworld=Earth
|residence=Bellwood
|affiliations=test
|relationships=test
|equipment=test
|status=Alive
|first=test
|last=test
}}
placeholder!!
81f7410710d2abdb53415f3d88f97c0dda578901
872
871
2020-06-03T02:32:05Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image=
<div class="tabcontainer" style="align:right; background: #fff; border:0px solid #02b70c; color:#000; border-radius:50px 10px" align=center>
<div class="tabbox">
<div class="tab">OV</div>
[[Image:omniverserender1.png|borderless|250px]]
</div>
<div class="tabbox">
<div class="tab">AF</div>
[[Image:PLACEHOLDER2.png|borderless|250px]]
</div>
<div class="tabbox">
<div class="tab">OS</div>
[[Image:omniverserender1.png|borderless|250px]]
</div></div>
|fullname=Benjamin Kirby Tennyson
|nickname=Ben
|species=Human
|homeworld=Earth
|residence=Bellwood
|affiliations=test
|relationships=test
|equipment=test
|status=Alive
|first=test
|last=test
}}
placeholder!!
8eb1080a0d099acedc9b3343da862e1c3bed5528
873
872
2020-06-03T02:35:28Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image=
<div class="tabcontainer" style="align:right; background: #fff; border:0px solid #02b70c; color:#000; border-radius:50px 10px" align=center>
<div class="tabbox">
<div class="tab">OV</div>
[[Image:omniverserender1.png|borderless|250px]]
</div>
<div class="tabbox">
<div class="tab">AF</div>
[[Image:PLACEHOLDER2.png|borderless|250px]]
</div>
<div class="tabbox">
<div class="tab">OS</div>
[[Image:omniverserender1.png|borderless|250px]]
</div>
</div>
|fullname=Benjamin Kirby Tennyson
|nickname=Ben
|species=Human
|homeworld=Earth
|residence=Bellwood
|affiliations=test
|relationships=test
|equipment=test
|status=Alive
|first=test
|last=test
}}
placeholder!!
564711be374f61ff8521a68cd2b2f1322a32c270
876
873
2020-06-03T02:51:10Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image={{tabs|{{tab|Unseen}}{{tab|Albedo}}}}
|fullname=Benjamin Kirby Tennyson
|nickname=Ben
|species=Human
|homeworld=Earth
|residence=Bellwood
|affiliations=test
|relationships=test
|equipment=test
|status=Alive
|first=test
|last=test
}}
placeholder!!
9bf0bc7f564f3564d145d22d981dfc42d75e18f3
877
876
2020-06-03T02:52:54Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image={{tabs|{{tab|Unseen|PLACEHOLDER2.png}}{{tab|Albedo}}}}
|fullname=Benjamin Kirby Tennyson
|nickname=Ben
|species=Human
|homeworld=Earth
|residence=Bellwood
|affiliations=test
|relationships=test
|equipment=test
|status=Alive
|first=test
|last=test
}}
placeholder!!
2dcf08e70dbd7ee541cee407f4dcfb4672bd977e
878
877
2020-06-03T02:53:49Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image={{tabs|{{tab||PLACEHOLDER2.png}}{{tab|Albedo}}}}
|fullname=Benjamin Kirby Tennyson
|nickname=Ben
|species=Human
|homeworld=Earth
|residence=Bellwood
|affiliations=test
|relationships=test
|equipment=test
|status=Alive
|first=test
|last=test
}}
placeholder!!
b32a7ceeaf3220550a0cdc21c10bc28af1fb4118
880
878
2020-06-03T02:54:54Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image={{tabs|{{tab|Unseen|PLACEHOLDER2.png}}{{tab|Albedo}}}}
|fullname=Benjamin Kirby Tennyson
|nickname=Ben
|species=Human
|homeworld=Earth
|residence=Bellwood
|affiliations=test
|relationships=test
|equipment=test
|status=Alive
|first=test
|last=test
}}
placeholder!!
2dcf08e70dbd7ee541cee407f4dcfb4672bd977e
884
880
2020-06-03T03:02:43Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image={{tabs|{{tab2|OV|omniverserender1.png}}{{tab2|AF|PLACEHOLDER2.png}}{{tab2|OS|PLACEHOLDER2.png}}}}
|fullname=Benjamin Kirby Tennyson
|nickname=Ben
|species=Human
|homeworld=Earth
|residence=Bellwood
|affiliations=test
|relationships=test
|equipment=test
|status=Alive
|first=test
|last=test
}}
placeholder!!
0d896ca6cf6797e6b557846991f211f758d7cbd2
887
884
2020-06-03T03:18:34Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image={{tabs|{{tab2|OV|PLACEHOLDER2.png}}{{tab2|AF|PLACEHOLDER2.png}}{{tab2|OS|PLACEHOLDER2.png}}}}
|fullname=Benjamin Kirby Tennyson
|nickname=Ben
|species=Human
|homeworld=Earth
|residence=Bellwood
|affiliations=test
|relationships=test
|equipment=test
|status=Alive
|first=test
|last=test
}}
placeholder!!
01634509cbae05c9725e9259a7f2f5c6325b89e2
Template:Charbox
10
123
832
830
2020-06-03T00:28:32Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Home World'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{portrayed_by|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Portrayed by'''
{{!}} {{{portrayed_by}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_appearance|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Latest appearance'''
{{!}} {{{latest_appearance}}}
|}}
|- style="vertical-align: top"
{{#if:{{{latest_portrayal|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Latest portrayal'''
{{!}} {{{latest_portrayal}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliation|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliation(s)'''
{{!}} {{{affiliation}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|fullname=
|nickname=
|species=
|homeworld=
|portrayed_by=
|latest_appearance=
|latest_portrayal=
}}
</pre>
[[Category:Templates]]</noinclude>
e9e9a93dd900bdf2d496acce9323890c8c3de39f
847
832
2020-06-03T01:51:52Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Home World'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{residence|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Residence'''
{{!}} {{{residence}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliations|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliations'''
{{!}} {{{affiliations}}}
|}}
|- style="vertical-align: top"
{{#if:{{{relationships|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Relationships'''
{{!}} {{{relationships}}}
|}}
|- style="vertical-align: top"
{{#if:{{{equipment|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Equipment'''
{{!}} {{{equipment}}}
|}}
|- style="vertical-align: top"
{{#if:{{{status|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Status'''
{{!}} {{{status}}}
|}}
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Details'''
|- style="vertical-align: top"
{{#if:{{{first|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''First Appearance'''
{{!}} style="width:17em" {{!}} {{{first|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{last|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Last Appearance'''
{{!}} {{{last}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|fullname=
|nickname=
|species=
|homeworld=
|residence=
|affiliations=
|relationships=
|equipment=
|status=
|first=
|last=
}}
</pre>
[[Category:Templates]]</noinclude>
c6883979a4f0e2fee1f56c5d608b281cdaba72c1
849
847
2020-06-03T01:53:31Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Home World'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{residence|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Residence'''
{{!}} {{{residence}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliations|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliations'''
{{!}} {{{affiliations}}}
|}}
|- style="vertical-align: top"
{{#if:{{{relationships|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Relationships'''
{{!}} {{{relationships}}}
|}}
|- style="vertical-align: top"
{{#if:{{{equipment|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Equipment'''
{{!}} {{{equipment}}}
|}}
|- style="vertical-align: top"
{{#if:{{{status|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Status'''
{{!}} {{{status}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Details'''
|- style="vertical-align: top"
{{#if:{{{first|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''First Appearance'''
{{!}} style="width:17em" {{!}} {{{first|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{last|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Last Appearance'''
{{!}} {{{last}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|fullname=
|nickname=
|species=
|homeworld=
|residence=
|affiliations=
|relationships=
|equipment=
|status=
|first=
|last=
}}
</pre>
[[Category:Templates]]</noinclude>
2c57bcd6fefc3db7b7ab1e372428dde4c4d3eadb
856
849
2020-06-03T02:04:11Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:15px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Home World'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{residence|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Residence'''
{{!}} {{{residence}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliations|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliations'''
{{!}} {{{affiliations}}}
|}}
|- style="vertical-align: top"
{{#if:{{{relationships|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Relationships'''
{{!}} {{{relationships}}}
|}}
|- style="vertical-align: top"
{{#if:{{{equipment|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Equipment'''
{{!}} {{{equipment}}}
|}}
|- style="vertical-align: top"
{{#if:{{{status|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Status'''
{{!}} {{{status}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Details'''
|- style="vertical-align: top"
{{#if:{{{first|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''First Appearance'''
{{!}} style="width:17em" {{!}} {{{first|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{last|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Last Appearance'''
{{!}} {{{last}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|fullname=
|nickname=
|species=
|homeworld=
|residence=
|affiliations=
|relationships=
|equipment=
|status=
|first=
|last=
}}
</pre>
[[Category:Templates]]</noinclude>
59f3ffd9490c824757dac50b62028860d58dc14c
860
856
2020-06-03T02:06:25Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Home World'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{residence|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Residence'''
{{!}} {{{residence}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliations|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliations'''
{{!}} {{{affiliations}}}
|}}
|- style="vertical-align: top"
{{#if:{{{relationships|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Relationships'''
{{!}} {{{relationships}}}
|}}
|- style="vertical-align: top"
{{#if:{{{equipment|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Equipment'''
{{!}} {{{equipment}}}
|}}
|- style="vertical-align: top"
{{#if:{{{status|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Status'''
{{!}} {{{status}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Details'''
|- style="vertical-align: top"
{{#if:{{{first|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''First Appearance'''
{{!}} style="width:17em" {{!}} {{{first|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{last|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Last Appearance'''
{{!}} {{{last}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|fullname=
|nickname=
|species=
|homeworld=
|residence=
|affiliations=
|relationships=
|equipment=
|status=
|first=
|last=
}}
</pre>
[[Category:Templates]]</noinclude>
cbefef6c8d4ba4f2967dddd4b036541f4cc8fe1e
Template:Chartab/doc
10
233
839
2020-06-03T01:18:56Z
Jaswacker
30585766
Created page with "This template is to be used for design tabs inside of the [[Template:Charbox|Charbox]] template. Up to 6 tabs/images are able to be shown. <pre> {{chartab|IMAGE1.png|TAB1NAME..."
wikitext
text/x-wiki
This template is to be used for design tabs inside of the [[Template:Charbox|Charbox]] template. Up to 6 tabs/images are able to be shown.
<pre>
{{chartab|IMAGE1.png|TAB1NAME|IMAGE2.png|TAB2NAME}}
</pre>
{{chartab|PLACEHOLDER2.png|1|PLACEHOLDER2.png|2}}
<noinclude>[[Category:Templates]]</noinclude>
6280a075dea48b16bfb00f80366dd3b50574190c
842
839
2020-06-03T01:42:48Z
Jaswacker
30585766
wikitext
text/x-wiki
This template is to be used for design tabs inside of the [[Template:Charbox|Charbox]] template. Up to 6 tabs/images are able to be shown.
<pre>
{{chartab|IMAGE1.png|TAB1NAME|IMAGE2.png|TAB2NAME}}
</pre>
{{chartab|tab1|picture1.png|tab2|picture2.png}}
<noinclude>[[Category:Templates]]</noinclude>
4722e3660973b8ac3bd8542ba15ffa85381bf560
843
842
2020-06-03T01:43:27Z
Jaswacker
30585766
wikitext
text/x-wiki
This template is to be used for design tabs inside of the [[Template:Charbox|Charbox]] template. Up to 6 tabs/images are able to be shown.
<pre>
{{chartab|IMAGE1.png|TAB1NAME|IMAGE2.png|TAB2NAME}}
</pre>
{{chartab|tab1|picture1.png|tab2|PLACEHOLDER2.png}}
<noinclude>[[Category:Templates]]</noinclude>
2f7012fe2b9080170d1b2da1a409127168e40b25
844
843
2020-06-03T01:45:27Z
Jaswacker
30585766
wikitext
text/x-wiki
This template is to be used for design tabs inside of the [[Template:Charbox|Charbox]] template. Up to 6 tabs/images are able to be shown.
<pre>
{{chartab|IMAGE1.png|TAB1NAME|IMAGE2.png|TAB2NAME}}
</pre>
{{chartab|tab1|picture1.png|tab2|PLACEHOLDER2.png|tab3|PLACEHOLDER2.png}}
<noinclude>[[Category:Templates]]</noinclude>
5145883b38c1dc9ce5ed3bfb7e90c893222cec48
854
844
2020-06-03T02:01:41Z
Jaswacker
30585766
wikitext
text/x-wiki
This template is to be used for design tabs inside of the [[Template:Charbox|Charbox]] template. Up to 6 tabs/images are able to be shown.
<pre>
{{chartab|IMAGE1.png|TAB1NAME|IMAGE2.png|TAB2NAME}}
</pre>
{{chartab|tab1|PLACEHOLDER2.png|tab2|PLACEHOLDER2.png|tab3|PLACEHOLDER2.png}}
<noinclude>[[Category:Templates]]</noinclude>
c884af5c0745006f7cf295e48860098e68eafb14
855
854
2020-06-03T02:02:02Z
Jaswacker
30585766
wikitext
text/x-wiki
This template is to be used for design tabs inside of the [[Template:Charbox|Charbox]] template. Up to 6 tabs/images are able to be shown.
<pre>
{{chartab|IMAGE1.png|TAB1NAME|IMAGE2.png|TAB2NAME}}
</pre>
{{chartab|tab1|PLACEHOLDER2.png|tab2|benslosthand.png|tab3|PLACEHOLDER2.png}}
<noinclude>[[Category:Templates]]</noinclude>
37ad84f21a85e44ddcf61058025a7e713cb3f970
858
855
2020-06-03T02:05:29Z
Jaswacker
30585766
wikitext
text/x-wiki
This template is to be used for design tabs inside of the [[Template:Charbox|Charbox]] template. Up to 6 tabs/images are able to be shown.
<pre>
{{chartab
|tab1name
|image1.png
|tab2name
|image2.png
}}
</pre>
{{chartab|tab1|PLACEHOLDER2.png|tab2|benslosthand.png|tab3|PLACEHOLDER2.png}}
<noinclude>[[Category:Templates]]</noinclude>
d8dfbe2dac48d7bd42a271723f210e0832c9f713
862
858
2020-06-03T02:11:53Z
Jaswacker
30585766
wikitext
text/x-wiki
This template is to be used for design tabs inside of the [[Template:Charbox|Charbox]] template. Up to 6 tabs/images are able to be shown.
<pre>
{{chartab
|tab1name
|image1.png
|tab2name
|image2.png
}}
</pre>
{{chartab|tab1|PLACEHOLDER2.png|tab2|benslosthand.png|tab3|PLACEHOLDER2.png|tab4|benslosthand.png|tab5|PLACEHOLDER2.png|tab6|benslosthand.png}}
<noinclude>[[Category:Templates]]</noinclude>
f7d5f43da41173b20b3364b82074e006e58b6488
864
862
2020-06-03T02:23:14Z
Jaswacker
30585766
wikitext
text/x-wiki
This template is to be used for design tabs inside of the [[Template:Charbox|Charbox]] template. Up to 6 tabs/images are able to be shown.
<pre>
{{chartab
|tab1name
|image1.png
|tab2name
|image2.png
}}
</pre>
{{chartab
|tab1
|PLACEHOLDER2.png
|tab2
|benslosthand.png
|tab3
|PLACEHOLDER2.png
|tab4
|benslosthand.png
|tab5
|PLACEHOLDER2.png
|tab6
|benslosthand.png
}}
<noinclude>[[Category:Templates]]</noinclude>
ded255ec55cadabf20f1f14679352fa4380c4ece
866
864
2020-06-03T02:25:15Z
Jaswacker
30585766
wikitext
text/x-wiki
This template is to be used for design tabs inside of the [[Template:Charbox|Charbox]] template. Up to 6 tabs/images are able to be shown.
<pre>
{{chartab
|tab1name
|image1.png
|tab2name
|image2.png
}}
</pre>
{{chartab|tab1|PLACEHOLDER2.png|tab2|benslosthand.png|tab3|PLACEHOLDER2.png|tab4|benslosthand.png|tab5|PLACEHOLDER2.png|tab6|benslosthand.png}}
<noinclude>[[Category:Templates]]</noinclude>
f7d5f43da41173b20b3364b82074e006e58b6488
Upchuck
0
6
861
791
2020-06-03T02:10:50Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image=
{{chartab|OV (Perk)|PLACEHOLDER2.png|OV (Murk)|PLACEHOLDER2.png|AF|PLACEHOLDER2.png|OS|PLACEHOLDER2.png}}
|nickname=test
|species=[[Gourmand]]
|homeworld=[[Peptos XII]]
|affiliations=test
|equipment=[[Omnitrix]]
|first=test
|last=test
}}
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 2, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|''Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck, Battle Version''' (Wave 3, 2007)
: placeholder
: for new lines
: do this thing
{{quote|''Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave #, year)
: Release of Wave 2 Upchuck with the ''Ultimate Alien'' toyline.
{{quote|toybio}}
{{-}}
=== DNA Alien Heroes ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Rocks ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Benwolf and Upchuck''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Planetary Powder Sets ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck Planetary Powder Set''' (year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Alien Force'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Creation Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Murk Upchuck and Gorvan''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Alien Creation Transporter: Upchuck & Clear Heatblast''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Ultimate Alien'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Haywire''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Four Arms, Upchuck, & XLR8''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Four Arms/Stinkfly, Swampfire/Diamondhead, Goop/Wildmutt''' (Wave 4, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== 2" Mini Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
[[File:PLACEHOLDER2.png|thumb|250px|clear green variant]]
*'''Upchuck''', Blind Bag (Series 3, year)
: toyinfo
{{-}}
=== ''Omniverse'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Role Play ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Omnitrix Challenge (2012)
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Transformations]]</noinclude>
b9887f29c1c0798d5d828c6d6ef604288876cc30
886
861
2020-06-03T03:09:47Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image={{tabs|{{tab2|OV (Perk)|PLACEHOLDER2.png}}{{tab2|OV (Murk)|PLACEHOLDER2.png}}{{tab2|AF|PLACEHOLDER2.png}}{{tab2|OS|PLACEHOLDER2.png}}}}
|nickname=test
|species=[[Gourmand]]
|homeworld=[[Peptos XII]]
|affiliations=test
|equipment=[[Omnitrix]]
|first=test
|last=test
}}
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 2, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|''Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck, Battle Version''' (Wave 3, 2007)
: placeholder
: for new lines
: do this thing
{{quote|''Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave #, year)
: Release of Wave 2 Upchuck with the ''Ultimate Alien'' toyline.
{{quote|toybio}}
{{-}}
=== DNA Alien Heroes ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Rocks ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Benwolf and Upchuck''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Planetary Powder Sets ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck Planetary Powder Set''' (year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Alien Force'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Creation Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Murk Upchuck and Gorvan''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Alien Creation Transporter: Upchuck & Clear Heatblast''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Ultimate Alien'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Haywire''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Four Arms, Upchuck, & XLR8''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Four Arms/Stinkfly, Swampfire/Diamondhead, Goop/Wildmutt''' (Wave 4, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== 2" Mini Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
[[File:PLACEHOLDER2.png|thumb|250px|clear green variant]]
*'''Upchuck''', Blind Bag (Series 3, year)
: toyinfo
{{-}}
=== ''Omniverse'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Role Play ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Omnitrix Challenge (2012)
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Transformations]]</noinclude>
4c9ae03bd12e5fb18c37b44966f1af31928054ab
Template:Tabs
10
234
874
2020-06-03T02:50:31Z
Jaswacker
30585766
Created page with "<div class="tabcontainer"> {{{1}}} </div>"
wikitext
text/x-wiki
<div class="tabcontainer">
{{{1}}}
</div>
e1e112e4493a927dbe76cd1a5e511c543b3395ae
879
874
2020-06-03T02:54:50Z
Jaswacker
30585766
wikitext
text/x-wiki
<div class="tabcontainer" style="align:right; background: #fff; border:0px solid #02b70c; color:#000; border-radius:50px 10px">
{{{1}}}
</div>
9d57004272f8f90339068e7d72dcc4a854d6a9f2
888
879
2020-06-03T03:24:57Z
Jaswacker
30585766
wikitext
text/x-wiki
<div class="tabcontainer" style="align:right; background: #fff; border:0px solid #02b70c; color:#000; border-radius:50px 10px; margin:auto"">
{{{1}}}
</div>
a51a0d15458de540a738c0457afb9d79579226fb
889
888
2020-06-03T03:25:31Z
Jaswacker
30585766
wikitext
text/x-wiki
<div class="tabcontainer" style="align:right; background: #fff; border:0px solid #02b70c; color:#000; border-radius:50px 10px; margin:auto">
{{{1}}}
</div>
bdb30ee1348c888df971c9e12686aa227d3da589
890
889
2020-06-03T03:27:50Z
Jaswacker
30585766
wikitext
text/x-wiki
<div class="tabcontainer" style="background: #fff; border:0px solid #02b70c; color:#000; border-radius:50px 10px; margin:auto">
{{{1}}}
</div>
9e2568bdfb6d7fe20c2c0231f6c6fc2fc4015d59
891
890
2020-06-03T03:29:45Z
Jaswacker
30585766
wikitext
text/x-wiki
<div class="tabcontainer" style="align:right; background: #fff; border:0px solid #02b70c; color:#000; border-radius:50px 10px">
{{{1}}}
</div>
9d57004272f8f90339068e7d72dcc4a854d6a9f2
Template:Tab
10
235
875
2020-06-03T02:50:50Z
Jaswacker
30585766
Created page with "<div class="tabbox"> <div class="tab">{{{1}}}</div> {{#if: {{{2|}}}|[[Image:{{{2}}}|borderless|250px]]}} {{:{{PAGENAME}}/{{{3|{{{1}}}}}}}} </div>"
wikitext
text/x-wiki
<div class="tabbox">
<div class="tab">{{{1}}}</div>
{{#if: {{{2|}}}|[[Image:{{{2}}}|borderless|250px]]}}
{{:{{PAGENAME}}/{{{3|{{{1}}}}}}}}
</div>
d912d0d5b989f874c0fc3fe0064f439a1b7e94e4
Minor Transformations
0
4
881
679
2020-06-03T02:57:45Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__
{{tabs|{{tab|Unseen}}{{tab|Albedo}}{{tab|Ben 23}}{{tab|Bad Ben}}{{tab|Mad Ben}}{{tab|Nega Ben}}{{tab|Gwen 10}}{{tab|Ben 10K}}{{tab|Other}}}}
<noinclude>[[Category:Transformations]]</noinclude>
feec9779d79330fa1b36743ee0da15024ac95279
882
881
2020-06-03T02:57:59Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__
{{tabs|{{tab|Unseen}}{{tab|Albedo}}{{tab|Ben 23}}{{tab|Bad Ben}}{{tab|Mad Ben}}{{tab|Nega Ben}}{{tab|Gwen 10}}{{tab|Ben 10K}}{{tab|Other}}}}
<noinclude>[[Category:Transformations]]</noinclude>
52ddbb56b3a36bad8bc123bce6c75993b2b4d37a
Template:Tab2
10
236
883
2020-06-03T03:01:43Z
Jaswacker
30585766
Created page with "<div class="tabbox"> <div class="tab">{{{1}}}</div> {{#if: {{{2|}}}|[[Image:{{{2}}}|borderless|250px]]}} </div>"
wikitext
text/x-wiki
<div class="tabbox">
<div class="tab">{{{1}}}</div>
{{#if: {{{2|}}}|[[Image:{{{2}}}|borderless|250px]]}}
</div>
079928859f6bded3389bf3fb9dc7dd902d13d1f6
892
883
2020-06-03T03:30:01Z
Jaswacker
30585766
wikitext
text/x-wiki
<div class="tabbox" style="margin:auto">
<div class="tab">{{{1}}}</div>
{{#if: {{{2|}}}|[[Image:{{{2}}}|borderless|250px]]}}
</div>
617a75066445ece9f0b4a21d58535296bb25a088
893
892
2020-06-03T03:30:34Z
Jaswacker
30585766
wikitext
text/x-wiki
<div class="tabbox" style="align:center">
<div class="tab">{{{1}}}</div>
{{#if: {{{2|}}}|[[Image:{{{2}}}|borderless|250px]]}}
</div>
309d50c3ec7c3cca377aa4e488d732f7ab78b4c0
Ben 10: Protector of Earth
0
222
885
781
2020-06-03T03:06:36Z
Carth
30634784
wikitext
text/x-wiki
__NOTOC__
{{tabs|{{tab|Console}}{{tab|Handheld}}}}
e50c3026250445307bd3d13a6049044aa14c5e62
Template:Tab2
10
236
894
893
2020-06-03T03:31:09Z
Jaswacker
30585766
wikitext
text/x-wiki
<div class="tabbox" style="margin:auto">
<div class="tab">{{{1}}}</div>
{{#if: {{{2|}}}|[[Image:{{{2}}}|borderless|250px]]}}
</div>
617a75066445ece9f0b4a21d58535296bb25a088
Fandom
0
237
895
2020-06-03T08:33:28Z
Carth
30634784
Created page with "== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] == If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a..."
wikitext
text/x-wiki
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
2012c3c75f809cc16a3c5d047f84f7d39eb8d1b4
897
895
2020-06-04T04:04:29Z
Carth
30634784
wikitext
text/x-wiki
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Carth, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
ea4842da6d54f1d3c178d68745c0fb2fb17c204e
Continuity
0
122
896
747
2020-06-03T08:46:39Z
Carth
30634784
/* Level 02: Dubiously Canon */
wikitext
text/x-wiki
Continuity is the flow of events throughout a long running series... is what we would say. Due to different writers on different series, contradicting past events, retcons and the like, Ben 10's continuity is a confusing mess, but because we're crazy, let's try and make sense of it anyway. First, we need to talk about Canonicity Tiers.
== Canonicity Tiers ==
No, not the tears shed as we tried to make sense of everything, these are for the degree of separation between the series and the expanded universe.
=== Level 01: Absolute Canon ===
Without question, the actual cartoon series is the bulk of this tier. Sometimes due to later events, things can be taken out of this tier as if they never happened, this is what's known as a [[Continuity#Level_04:_Retroactive_Continuity|retcon]].
=== Level 02: Dubiously Canon ===
This refers to the expanded universe media related to a series, which may or may not be fully or partially true, if at all, in the context of the original story. Things such as the video games, comics, crew statements and the like. Until properly confirmed, these stay in this tier.
A good example of Dubious Canonicity comes from the Nintendo DS version of Vilgax Attacks, in which at the end of a fight with Albedo, he transforms into Negative Alien X, only to be trapped in the form for an entire year... which according to Paradox in the episode [[Ben 10,000 Returns]], happened in a separate timeline.
=== Level 03: Non Canon ===
Non-Canon involves things like most crossovers, like FusionFall, or Super Secret Crisis War, as well as random promotional videos that introduce new aliens, such as the Total Access adverts.
=== Level 04: Retroactive Continuity ===
Retcons. A good example of one was when Eon was made not to be a Chronian, but an alternate evil Ben Tennyson. Another good example would be when Kevin's father Devin turned out to be a false memory implanted into his mind by Proctor Servantis.
<noinclude>[[Category:Meta]]</noinclude>
e2358a56e877e14f63be9c73d2288d0fcd103e35
Transformations/Prime
0
95
898
788
2020-06-04T19:16:06Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
<gallery mode="slideshow">
Image:PLACEHOLDER2.png|410px|[[Heatblast]]
Image:PLACEHOLDER2.png|410px|[[Placeholder]]
Image:PLACEHOLDER2.png|410px|[[Placeholder]]
</gallery>
__TOC__
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck]] (Perk)
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]] <small>(Introduced in ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'')</small>
File:PLACEHOLDER2.png|[[Buzzshock]] <small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|[[Spitter]] <small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Arctiguana]] <small>(First used by Ben 10,000)</small>
</gallery></center>
== Introduced in [[Ben 10: Alien Force]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Upchuck]] (Murk)
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|[[Nanomech]] <small>(Introduced in ''[[Ben 10: Alien Swarm|Alien Swarm]]'')</small>
File:PLACEHOLDER2.png|[[Rocks]] <small>(Introduced in ''[[Power of the Omnitrix]]'' stage play)</small>
File:PLACEHOLDER2.png|[[Squidstrictor]] <small>(Introduced in ''Power of the Omnitrix'' stage play)</small>
</gallery></center>
== Introduced in [[Ben 10: Ultimate Alien]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Water Hazard]]
File:PLACEHOLDER2.png|[[AmpFibian]]
File:PLACEHOLDER2.png|[[Armodrillo]]
File:PLACEHOLDER2.png|[[Terraspin]]
File:PLACEHOLDER2.png|[[NRG]]
File:PLACEHOLDER2.png|[[Fasttrack]]
File:PLACEHOLDER2.png|[[Clockwork]]
File:PLACEHOLDER2.png|[[Chamalien]]
File:PLACEHOLDER2.png|[[Shocksquatch]] <small>(Introduced in ''[[Ben 10/Generator Rex: Heroes United|Heroes United]]'')</small>
File:PLACEHOLDER2.png|[[Eatle]]
File:PLACEHOLDER2.png|[[Juryrigg]]
</gallery></center>
== Introduced in [[Ben 10: Omniverse]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Feedback]]
File:PLACEHOLDER2.png|[[Bloxx]]
File:PLACEHOLDER2.png|[[Gravattack]]
File:PLACEHOLDER2.png|[[Crashhopper]]
File:PLACEHOLDER2.png|[[Ball Weevil]]
File:PLACEHOLDER2.png|[[Walkatrout]]
File:PLACEHOLDER2.png|[[Pesky Dust]]
File:PLACEHOLDER2.png|[[Mole-Stache]]
File:PLACEHOLDER2.png|[[The Worst]]
File:PLACEHOLDER2.png|[[Kickin Hawk]]
File:PLACEHOLDER2.png|[[Astrodactyl]]
File:PLACEHOLDER2.png|[[Bullfrag]]
File:PLACEHOLDER2.png|[[Atomix]]
File:PLACEHOLDER2.png|[[Gutrot]]
File:PLACEHOLDER2.png|[[Whampire]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
{{-}}
9defe2fc4307b21584ec8718634aeac4dd170457
899
898
2020-06-04T19:33:07Z
Jaswacker
30585766
/* Introduced in Ben 10 */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
<gallery mode="slideshow">
Image:PLACEHOLDER2.png|410px|[[Heatblast]]
Image:PLACEHOLDER2.png|410px|[[Placeholder]]
Image:PLACEHOLDER2.png|410px|[[Placeholder]]
</gallery>
__TOC__
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck]] (Perk)
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]] <br><small>(Introduced in ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'')</small>
File:PLACEHOLDER2.png|[[Buzzshock]] <br><small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|[[Spitter]] <br><small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Arctiguana]] <br><small>(First used by Ben 10,000)</small>
</gallery></center>
== Introduced in [[Ben 10: Alien Force]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Upchuck]] (Murk)
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|[[Nanomech]] <small>(Introduced in ''[[Ben 10: Alien Swarm|Alien Swarm]]'')</small>
File:PLACEHOLDER2.png|[[Rocks]] <small>(Introduced in ''[[Power of the Omnitrix]]'' stage play)</small>
File:PLACEHOLDER2.png|[[Squidstrictor]] <small>(Introduced in ''Power of the Omnitrix'' stage play)</small>
</gallery></center>
== Introduced in [[Ben 10: Ultimate Alien]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Water Hazard]]
File:PLACEHOLDER2.png|[[AmpFibian]]
File:PLACEHOLDER2.png|[[Armodrillo]]
File:PLACEHOLDER2.png|[[Terraspin]]
File:PLACEHOLDER2.png|[[NRG]]
File:PLACEHOLDER2.png|[[Fasttrack]]
File:PLACEHOLDER2.png|[[Clockwork]]
File:PLACEHOLDER2.png|[[Chamalien]]
File:PLACEHOLDER2.png|[[Shocksquatch]] <small>(Introduced in ''[[Ben 10/Generator Rex: Heroes United|Heroes United]]'')</small>
File:PLACEHOLDER2.png|[[Eatle]]
File:PLACEHOLDER2.png|[[Juryrigg]]
</gallery></center>
== Introduced in [[Ben 10: Omniverse]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Feedback]]
File:PLACEHOLDER2.png|[[Bloxx]]
File:PLACEHOLDER2.png|[[Gravattack]]
File:PLACEHOLDER2.png|[[Crashhopper]]
File:PLACEHOLDER2.png|[[Ball Weevil]]
File:PLACEHOLDER2.png|[[Walkatrout]]
File:PLACEHOLDER2.png|[[Pesky Dust]]
File:PLACEHOLDER2.png|[[Mole-Stache]]
File:PLACEHOLDER2.png|[[The Worst]]
File:PLACEHOLDER2.png|[[Kickin Hawk]]
File:PLACEHOLDER2.png|[[Astrodactyl]]
File:PLACEHOLDER2.png|[[Bullfrag]]
File:PLACEHOLDER2.png|[[Atomix]]
File:PLACEHOLDER2.png|[[Gutrot]]
File:PLACEHOLDER2.png|[[Whampire]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
{{-}}
0a2cdf49014a7da5bfc3a50f47132ecc4a6e8261
900
899
2020-06-04T19:33:25Z
Jaswacker
30585766
/* Introduced in Ben 10: Alien Force */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
<gallery mode="slideshow">
Image:PLACEHOLDER2.png|410px|[[Heatblast]]
Image:PLACEHOLDER2.png|410px|[[Placeholder]]
Image:PLACEHOLDER2.png|410px|[[Placeholder]]
</gallery>
__TOC__
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck]] (Perk)
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]] <br><small>(Introduced in ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'')</small>
File:PLACEHOLDER2.png|[[Buzzshock]] <br><small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|[[Spitter]] <br><small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Arctiguana]] <br><small>(First used by Ben 10,000)</small>
</gallery></center>
== Introduced in [[Ben 10: Alien Force]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Upchuck]] (Murk)
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|[[Nanomech]] <br><small>(Introduced in ''[[Ben 10: Alien Swarm|Alien Swarm]]'')</small>
File:PLACEHOLDER2.png|[[Rocks]] <br><small>(Introduced in ''[[Power of the Omnitrix]]'' stage play)</small>
File:PLACEHOLDER2.png|[[Squidstrictor]] <br><small>(Introduced in ''Power of the Omnitrix'' stage play)</small>
</gallery></center>
== Introduced in [[Ben 10: Ultimate Alien]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Water Hazard]]
File:PLACEHOLDER2.png|[[AmpFibian]]
File:PLACEHOLDER2.png|[[Armodrillo]]
File:PLACEHOLDER2.png|[[Terraspin]]
File:PLACEHOLDER2.png|[[NRG]]
File:PLACEHOLDER2.png|[[Fasttrack]]
File:PLACEHOLDER2.png|[[Clockwork]]
File:PLACEHOLDER2.png|[[Chamalien]]
File:PLACEHOLDER2.png|[[Shocksquatch]] <small>(Introduced in ''[[Ben 10/Generator Rex: Heroes United|Heroes United]]'')</small>
File:PLACEHOLDER2.png|[[Eatle]]
File:PLACEHOLDER2.png|[[Juryrigg]]
</gallery></center>
== Introduced in [[Ben 10: Omniverse]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Feedback]]
File:PLACEHOLDER2.png|[[Bloxx]]
File:PLACEHOLDER2.png|[[Gravattack]]
File:PLACEHOLDER2.png|[[Crashhopper]]
File:PLACEHOLDER2.png|[[Ball Weevil]]
File:PLACEHOLDER2.png|[[Walkatrout]]
File:PLACEHOLDER2.png|[[Pesky Dust]]
File:PLACEHOLDER2.png|[[Mole-Stache]]
File:PLACEHOLDER2.png|[[The Worst]]
File:PLACEHOLDER2.png|[[Kickin Hawk]]
File:PLACEHOLDER2.png|[[Astrodactyl]]
File:PLACEHOLDER2.png|[[Bullfrag]]
File:PLACEHOLDER2.png|[[Atomix]]
File:PLACEHOLDER2.png|[[Gutrot]]
File:PLACEHOLDER2.png|[[Whampire]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
{{-}}
c47b642ba2003a99935d0bcb134c38deaca3ea6a
901
900
2020-06-04T19:33:40Z
Jaswacker
30585766
/* Introduced in Ben 10: Ultimate Alien */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
<gallery mode="slideshow">
Image:PLACEHOLDER2.png|410px|[[Heatblast]]
Image:PLACEHOLDER2.png|410px|[[Placeholder]]
Image:PLACEHOLDER2.png|410px|[[Placeholder]]
</gallery>
__TOC__
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck]] (Perk)
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]] <br><small>(Introduced in ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'')</small>
File:PLACEHOLDER2.png|[[Buzzshock]] <br><small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|[[Spitter]] <br><small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Arctiguana]] <br><small>(First used by Ben 10,000)</small>
</gallery></center>
== Introduced in [[Ben 10: Alien Force]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Upchuck]] (Murk)
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|[[Nanomech]] <br><small>(Introduced in ''[[Ben 10: Alien Swarm|Alien Swarm]]'')</small>
File:PLACEHOLDER2.png|[[Rocks]] <br><small>(Introduced in ''[[Power of the Omnitrix]]'' stage play)</small>
File:PLACEHOLDER2.png|[[Squidstrictor]] <br><small>(Introduced in ''Power of the Omnitrix'' stage play)</small>
</gallery></center>
== Introduced in [[Ben 10: Ultimate Alien]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Water Hazard]]
File:PLACEHOLDER2.png|[[AmpFibian]]
File:PLACEHOLDER2.png|[[Armodrillo]]
File:PLACEHOLDER2.png|[[Terraspin]]
File:PLACEHOLDER2.png|[[NRG]]
File:PLACEHOLDER2.png|[[Fasttrack]]
File:PLACEHOLDER2.png|[[Clockwork]]
File:PLACEHOLDER2.png|[[Chamalien]]
File:PLACEHOLDER2.png|[[Shocksquatch]] <br><small>(Introduced in ''[[Ben 10/Generator Rex: Heroes United|Heroes United]]'')</small>
File:PLACEHOLDER2.png|[[Eatle]]
File:PLACEHOLDER2.png|[[Juryrigg]]
</gallery></center>
== Introduced in [[Ben 10: Omniverse]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Feedback]]
File:PLACEHOLDER2.png|[[Bloxx]]
File:PLACEHOLDER2.png|[[Gravattack]]
File:PLACEHOLDER2.png|[[Crashhopper]]
File:PLACEHOLDER2.png|[[Ball Weevil]]
File:PLACEHOLDER2.png|[[Walkatrout]]
File:PLACEHOLDER2.png|[[Pesky Dust]]
File:PLACEHOLDER2.png|[[Mole-Stache]]
File:PLACEHOLDER2.png|[[The Worst]]
File:PLACEHOLDER2.png|[[Kickin Hawk]]
File:PLACEHOLDER2.png|[[Astrodactyl]]
File:PLACEHOLDER2.png|[[Bullfrag]]
File:PLACEHOLDER2.png|[[Atomix]]
File:PLACEHOLDER2.png|[[Gutrot]]
File:PLACEHOLDER2.png|[[Whampire]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
{{-}}
4766c62d5a455fb6c4e525a863b5160d5b3d5942
902
901
2020-06-04T19:33:59Z
Jaswacker
30585766
/* Introduced in Ben 10 */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
<gallery mode="slideshow">
Image:PLACEHOLDER2.png|410px|[[Heatblast]]
Image:PLACEHOLDER2.png|410px|[[Placeholder]]
Image:PLACEHOLDER2.png|410px|[[Placeholder]]
</gallery>
__TOC__
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Perk)</small>
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]] <br><small>(Introduced in ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'')</small>
File:PLACEHOLDER2.png|[[Buzzshock]] <br><small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|[[Spitter]] <br><small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Arctiguana]] <br><small>(First used by Ben 10,000)</small>
</gallery></center>
== Introduced in [[Ben 10: Alien Force]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Upchuck]] (Murk)
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|[[Nanomech]] <br><small>(Introduced in ''[[Ben 10: Alien Swarm|Alien Swarm]]'')</small>
File:PLACEHOLDER2.png|[[Rocks]] <br><small>(Introduced in ''[[Power of the Omnitrix]]'' stage play)</small>
File:PLACEHOLDER2.png|[[Squidstrictor]] <br><small>(Introduced in ''Power of the Omnitrix'' stage play)</small>
</gallery></center>
== Introduced in [[Ben 10: Ultimate Alien]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Water Hazard]]
File:PLACEHOLDER2.png|[[AmpFibian]]
File:PLACEHOLDER2.png|[[Armodrillo]]
File:PLACEHOLDER2.png|[[Terraspin]]
File:PLACEHOLDER2.png|[[NRG]]
File:PLACEHOLDER2.png|[[Fasttrack]]
File:PLACEHOLDER2.png|[[Clockwork]]
File:PLACEHOLDER2.png|[[Chamalien]]
File:PLACEHOLDER2.png|[[Shocksquatch]] <br><small>(Introduced in ''[[Ben 10/Generator Rex: Heroes United|Heroes United]]'')</small>
File:PLACEHOLDER2.png|[[Eatle]]
File:PLACEHOLDER2.png|[[Juryrigg]]
</gallery></center>
== Introduced in [[Ben 10: Omniverse]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Feedback]]
File:PLACEHOLDER2.png|[[Bloxx]]
File:PLACEHOLDER2.png|[[Gravattack]]
File:PLACEHOLDER2.png|[[Crashhopper]]
File:PLACEHOLDER2.png|[[Ball Weevil]]
File:PLACEHOLDER2.png|[[Walkatrout]]
File:PLACEHOLDER2.png|[[Pesky Dust]]
File:PLACEHOLDER2.png|[[Mole-Stache]]
File:PLACEHOLDER2.png|[[The Worst]]
File:PLACEHOLDER2.png|[[Kickin Hawk]]
File:PLACEHOLDER2.png|[[Astrodactyl]]
File:PLACEHOLDER2.png|[[Bullfrag]]
File:PLACEHOLDER2.png|[[Atomix]]
File:PLACEHOLDER2.png|[[Gutrot]]
File:PLACEHOLDER2.png|[[Whampire]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
{{-}}
a3241c6ac08f2d40877057c454d130d094d3c89a
903
902
2020-06-04T19:34:12Z
Jaswacker
30585766
/* Introduced in Ben 10: Alien Force */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
<gallery mode="slideshow">
Image:PLACEHOLDER2.png|410px|[[Heatblast]]
Image:PLACEHOLDER2.png|410px|[[Placeholder]]
Image:PLACEHOLDER2.png|410px|[[Placeholder]]
</gallery>
__TOC__
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Perk)</small>
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]] <br><small>(Introduced in ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'')</small>
File:PLACEHOLDER2.png|[[Buzzshock]] <br><small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|[[Spitter]] <br><small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Arctiguana]] <br><small>(First used by Ben 10,000)</small>
</gallery></center>
== Introduced in [[Ben 10: Alien Force]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Murk)</small>
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|[[Nanomech]] <br><small>(Introduced in ''[[Ben 10: Alien Swarm|Alien Swarm]]'')</small>
File:PLACEHOLDER2.png|[[Rocks]] <br><small>(Introduced in ''[[Power of the Omnitrix]]'' stage play)</small>
File:PLACEHOLDER2.png|[[Squidstrictor]] <br><small>(Introduced in ''Power of the Omnitrix'' stage play)</small>
</gallery></center>
== Introduced in [[Ben 10: Ultimate Alien]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Water Hazard]]
File:PLACEHOLDER2.png|[[AmpFibian]]
File:PLACEHOLDER2.png|[[Armodrillo]]
File:PLACEHOLDER2.png|[[Terraspin]]
File:PLACEHOLDER2.png|[[NRG]]
File:PLACEHOLDER2.png|[[Fasttrack]]
File:PLACEHOLDER2.png|[[Clockwork]]
File:PLACEHOLDER2.png|[[Chamalien]]
File:PLACEHOLDER2.png|[[Shocksquatch]] <br><small>(Introduced in ''[[Ben 10/Generator Rex: Heroes United|Heroes United]]'')</small>
File:PLACEHOLDER2.png|[[Eatle]]
File:PLACEHOLDER2.png|[[Juryrigg]]
</gallery></center>
== Introduced in [[Ben 10: Omniverse]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Feedback]]
File:PLACEHOLDER2.png|[[Bloxx]]
File:PLACEHOLDER2.png|[[Gravattack]]
File:PLACEHOLDER2.png|[[Crashhopper]]
File:PLACEHOLDER2.png|[[Ball Weevil]]
File:PLACEHOLDER2.png|[[Walkatrout]]
File:PLACEHOLDER2.png|[[Pesky Dust]]
File:PLACEHOLDER2.png|[[Mole-Stache]]
File:PLACEHOLDER2.png|[[The Worst]]
File:PLACEHOLDER2.png|[[Kickin Hawk]]
File:PLACEHOLDER2.png|[[Astrodactyl]]
File:PLACEHOLDER2.png|[[Bullfrag]]
File:PLACEHOLDER2.png|[[Atomix]]
File:PLACEHOLDER2.png|[[Gutrot]]
File:PLACEHOLDER2.png|[[Whampire]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
{{-}}
e7305658f0a364f04424b9c05cab7fd102e5ea38
932
903
2020-06-04T21:01:58Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
{{:Transformations/Prime/slideshow}}
__TOC__
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Perk)</small>
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]] <br><small>(Introduced in ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'')</small>
File:PLACEHOLDER2.png|[[Buzzshock]] <br><small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|[[Spitter]] <br><small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Arctiguana]] <br><small>(First used by Ben 10,000)</small>
</gallery></center>
== Introduced in [[Ben 10: Alien Force]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Murk)</small>
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|[[Nanomech]] <br><small>(Introduced in ''[[Ben 10: Alien Swarm|Alien Swarm]]'')</small>
File:PLACEHOLDER2.png|[[Rocks]] <br><small>(Introduced in ''[[Power of the Omnitrix]]'' stage play)</small>
File:PLACEHOLDER2.png|[[Squidstrictor]] <br><small>(Introduced in ''Power of the Omnitrix'' stage play)</small>
</gallery></center>
== Introduced in [[Ben 10: Ultimate Alien]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Water Hazard]]
File:PLACEHOLDER2.png|[[AmpFibian]]
File:PLACEHOLDER2.png|[[Armodrillo]]
File:PLACEHOLDER2.png|[[Terraspin]]
File:PLACEHOLDER2.png|[[NRG]]
File:PLACEHOLDER2.png|[[Fasttrack]]
File:PLACEHOLDER2.png|[[Clockwork]]
File:PLACEHOLDER2.png|[[Chamalien]]
File:PLACEHOLDER2.png|[[Shocksquatch]] <br><small>(Introduced in ''[[Ben 10/Generator Rex: Heroes United|Heroes United]]'')</small>
File:PLACEHOLDER2.png|[[Eatle]]
File:PLACEHOLDER2.png|[[Juryrigg]]
</gallery></center>
== Introduced in [[Ben 10: Omniverse]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Feedback]]
File:PLACEHOLDER2.png|[[Bloxx]]
File:PLACEHOLDER2.png|[[Gravattack]]
File:PLACEHOLDER2.png|[[Crashhopper]]
File:PLACEHOLDER2.png|[[Ball Weevil]]
File:PLACEHOLDER2.png|[[Walkatrout]]
File:PLACEHOLDER2.png|[[Pesky Dust]]
File:PLACEHOLDER2.png|[[Mole-Stache]]
File:PLACEHOLDER2.png|[[The Worst]]
File:PLACEHOLDER2.png|[[Kickin Hawk]]
File:PLACEHOLDER2.png|[[Astrodactyl]]
File:PLACEHOLDER2.png|[[Bullfrag]]
File:PLACEHOLDER2.png|[[Atomix]]
File:PLACEHOLDER2.png|[[Gutrot]]
File:PLACEHOLDER2.png|[[Whampire]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
{{-}}
940b8c46117afcdb6dadd16d8009209047be10d9
File:Trixface.png
6
238
904
2020-06-04T20:09:18Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Greensquare.png
6
239
905
2020-06-04T20:09:33Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Sandbox
0
240
906
2020-06-04T20:14:40Z
Jaswacker
30585766
Created page with "<div style="align:center; width:914px; height:616px; overflow:visible"> <div style="align:center; z-index:1"> <gallery mode="slideshow"> Image:greensquare.png|200px|Heatblas..."
wikitext
text/x-wiki
<div style="align:center; width:914px; height:616px; overflow:visible">
<div style="align:center; z-index:1">
<gallery mode="slideshow">
Image:greensquare.png|200px|[[Heatblast]]
Image:PLACEHOLDER2.png|200px|[[Wildmutt]]
Image:greensquare.png|200px|[[Diamondhead]]
</gallery></div>
<div style="position:absolute; left:0px; top:0px; z-index:2">trixface.png</div>
</div>
9d272882d77ea95514f73e95a7be93d517168164
909
906
2020-06-04T20:23:18Z
Jaswacker
30585766
wikitext
text/x-wiki
<div style="align:center; width:500px; height:337px; overflow:visible">
<div style="align:center; z-index:2">
<gallery mode="slideshow">
Image:greensquaresmall.png|100px|[[Heatblast]]
Image:PLACEHOLDER2.png|100px|[[Wildmutt]]
Image:greensquaresmall.png|100px|[[Diamondhead]]
</gallery></div>
<div style="position:absolute; left:12px; top:210px; z-index:1">[[File:trixfacesmall.png]]</div>
</div>
5ad2091dc60d6e31ed8e6920bf132234f6addb19
910
909
2020-06-04T20:23:42Z
Jaswacker
30585766
wikitext
text/x-wiki
<div style="align:center; width:500px; height:337px; overflow:visible">
<div style="align:center; z-index:2">
<gallery mode="slideshow">
Image:greensquaresmall.png|100px|[[Heatblast]]
Image:greensquaresmall.png|100px|[[Wildmutt]]
Image:greensquaresmall.png|100px|[[Diamondhead]]
</gallery></div>
<div style="position:absolute; left:12px; top:190px; z-index:1">[[File:trixfacesmall.png]]</div>
</div>
f1ece16666904e2a64c8f81e4058055154b3fd5e
911
910
2020-06-04T20:23:49Z
Jaswacker
30585766
wikitext
text/x-wiki
<div style="align:center; width:500px; height:337px; overflow:visible">
<div style="align:center; z-index:2">
<gallery mode="slideshow">
Image:greensquaresmall.png|100px|[[Heatblast]]
Image:greensquaresmall.png|100px|[[Wildmutt]]
Image:greensquaresmall.png|100px|[[Diamondhead]]
</gallery></div>
<div style="position:absolute; left:12px; top:60px; z-index:1">[[File:trixfacesmall.png]]</div>
</div>
695b0eaa1c29767aa5d91eb615b348f55559fe7e
912
911
2020-06-04T20:23:56Z
Jaswacker
30585766
wikitext
text/x-wiki
<div style="align:center; width:500px; height:337px; overflow:visible">
<div style="align:center; z-index:2">
<gallery mode="slideshow">
Image:greensquaresmall.png|100px|[[Heatblast]]
Image:greensquaresmall.png|100px|[[Wildmutt]]
Image:greensquaresmall.png|100px|[[Diamondhead]]
</gallery></div>
<div style="position:absolute; left:12px; top:80px; z-index:1">[[File:trixfacesmall.png]]</div>
</div>
7e5e14d3ce88c27f3043ae595522a6782bd25cc9
914
912
2020-06-04T20:26:36Z
Jaswacker
30585766
wikitext
text/x-wiki
<div id="transformation-slideshow">
<gallery mode="slideshow">
Image:greensquaresmall.png|100px|[[Heatblast]]
Image:greensquaresmall.png|100px|[[Wildmutt]]
Image:greensquaresmall.png|100px|[[Diamondhead]]
</gallery></div>
25272add07b768298c37dc0c72f9ca914a8520fd
918
914
2020-06-04T20:46:36Z
Jaswacker
30585766
wikitext
text/x-wiki
<div id="transformation-slideshow">
<gallery mode="slideshow">
Image:faceicontemplate.png|100px|[[Heatblast]]
Image:faceicontemplate.png|100px|[[Wildmutt]]
Image:faceicontemplate.png|100px|[[Diamondhead]]
</gallery></div>
72421fc6e9676c56ccaff94328114282f9f2bc1b
922
918
2020-06-04T20:56:56Z
Jaswacker
30585766
wikitext
text/x-wiki
<div id="transformation-slideshow">
<gallery mode="slideshow">
Image:faceicontemplate.png|100px|link=[[Heatblast]]
Image:faceicontemplate.png|100px|link=[[Wildmutt]]
Image:faceicontemplate.png|100px|link=[[Diamondhead]]
</gallery></div>
978ca70de79c96081e4db23b4feb801cb4d4b673
923
922
2020-06-04T20:57:11Z
Jaswacker
30585766
wikitext
text/x-wiki
<div id="transformation-slideshow">
<gallery mode="slideshow">
Image:faceicontemplate.png|link=[[Heatblast]]
Image:faceicontemplate.png|link=[[Wildmutt]]
Image:faceicontemplate.png|link=[[Diamondhead]]
</gallery></div>
77a6b23aaa3de301b26a7d85a12f99ac9334a7e0
924
923
2020-06-04T20:57:37Z
Jaswacker
30585766
wikitext
text/x-wiki
<div id="transformation-slideshow">
<gallery mode="slideshow">
Image:faceicontemplate.png| |link=[[Heatblast]]
Image:faceicontemplate.png| |link=[[Wildmutt]]
Image:faceicontemplate.png| |link=[[Diamondhead]]
</gallery></div>
d0046b6f9eb2155d5ebe13e687a5b743e62fdf8f
925
924
2020-06-04T20:57:47Z
Jaswacker
30585766
wikitext
text/x-wiki
<div id="transformation-slideshow">
<gallery mode="slideshow">
Image:faceicontemplate.png|.|link=[[Heatblast]]
Image:faceicontemplate.png|.|link=[[Wildmutt]]
Image:faceicontemplate.png|.|link=[[Diamondhead]]
</gallery></div>
1fb2bcdebe08411d15f9add258e5ab0902d17be5
926
925
2020-06-04T20:58:07Z
Jaswacker
30585766
wikitext
text/x-wiki
<div id="transformation-slideshow">
<gallery mode="slideshow">
Image:faceicontemplate.png|'|link=[[Heatblast]]
Image:faceicontemplate.png|'|link=[[Wildmutt]]
Image:faceicontemplate.png|'|link=[[Diamondhead]]
</gallery></div>
c5255994c1ad77d82d2177ea833cfc872b823be1
927
926
2020-06-04T20:58:28Z
Jaswacker
30585766
wikitext
text/x-wiki
<div id="transformation-slideshow">
<gallery mode="slideshow">
Image:faceicontemplate.png|﹒|link=[[Heatblast]]
Image:faceicontemplate.png|﹒|link=[[Wildmutt]]
Image:faceicontemplate.png|﹒|link=[[Diamondhead]]
</gallery></div>
8ad57621c9b974ea1c6aaba090cc09c8b1b43d7e
929
927
2020-06-04T21:00:33Z
Jaswacker
30585766
wikitext
text/x-wiki
<div id="transformation-slideshow">
<gallery mode="slideshow">
Image:greensquaresmall.png|﹒|link=[[Heatblast]]
Image:faceicontemplate.png|﹒|link=[[Wildmutt]]
Image:faceicontemplate.png|﹒|link=[[Diamondhead]]
</gallery></div>
9ef6a1b3e9b388aa0e58d508c8a6e90acc89968e
931
929
2020-06-04T21:01:03Z
Jaswacker
30585766
wikitext
text/x-wiki
<div id="transformation-slideshow">
<gallery mode="slideshow">
Image:faceicontemplate.png|﹒|link=[[Heatblast]]
Image:faceicontemplate.png|﹒|link=[[Wildmutt]]
Image:faceicontemplate.png|﹒|link=[[Diamondhead]]
</gallery></div>
8ad57621c9b974ea1c6aaba090cc09c8b1b43d7e
File:Trixfacesmall.png
6
241
907
2020-06-04T20:19:17Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Greensquaresmall.png
6
242
908
2020-06-04T20:21:36Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
MediaWiki:Common.css
8
3
913
494
2020-06-04T20:26:33Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:0;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow-img-container {
background-image: url(http://images.shoutwiki.com/omnipedia/c/cf/Trixface.png);
background-position: center;
background-repeat: no-repeat;
}
#transformation-slideshow .mw-gallery-slideshow-img-container img {
position: relative;
z-index: -1;
}
7a4f222336445c4b9285c25a0c0fe04541486c39
915
913
2020-06-04T20:27:27Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:0;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow-img-container {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
}
#transformation-slideshow .mw-gallery-slideshow-img-container img {
position: relative;
z-index: -1;
}
5f062d8caf5a3ff640e6b229ddc49633d6589ca5
916
915
2020-06-04T20:36:08Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:0;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
84703312973e2b3d6980cb1a889370cda30459d2
919
916
2020-06-04T20:49:02Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:0;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
57bfeda9e6a2be1221c7439091fcebda769bd9c1
920
919
2020-06-04T20:51:58Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:0;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .mw-gallery-slideshow-caption {
display: none !important;
}
f9e7af80258a10788ca0efab93fb585359d36e56
921
920
2020-06-04T20:53:20Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:0;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
57bfeda9e6a2be1221c7439091fcebda769bd9c1
928
921
2020-06-04T20:59:52Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:0;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 5px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
71032e86c445a92b2cdd2c4885c3bd1732af95f6
930
928
2020-06-04T21:00:44Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:0;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
003b93a3c3720ff9f5a124ac58288d3eba895e12
File:Faceicontemplate.png
6
243
917
2020-06-04T20:46:24Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
934
917
2020-06-04T21:05:39Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:Faceicontemplate.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
935
934
2020-06-04T21:06:39Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:Faceicontemplate.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
936
935
2020-06-04T21:07:14Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:Faceicontemplate.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
937
936
2020-06-04T21:07:57Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:Faceicontemplate.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Transformations/Reboot
0
184
939
769
2020-06-04T21:09:01Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|rbt}}
{{:Transformations/Reboot/disambig}}
{{:Transformations/Reboot/slideshow}}
__TOC__
== Regular Forms ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Cannonbolt (Reboot|Cannonbolt]]
File:PLACEHOLDER2.png|[[Overflow]]
File:PLACEHOLDER2.png|[[Heatblast (Reboot)|Heatblast]]
File:PLACEHOLDER2.png|[[XLR8 (Reboot)|XLR8]]
File:PLACEHOLDER2.png|[[Four Arms (Reboot)|Four Arms]]
File:PLACEHOLDER2.png|[[Grey Matter (Reboot)|Grey Matter]]
File:PLACEHOLDER2.png|[[Diamondhead (Reboot)|Diamondhead]]
File:PLACEHOLDER2.png|[[Upgrade (Reboot)|Upgrade]]
File:PLACEHOLDER2.png|[[Stinkfly (Reboot)|Stinkfly]]
File:PLACEHOLDER2.png|[[Wildvine (Reboot)|Wildvine]]
File:PLACEHOLDER2.png|[[Gax]]
File:PLACEHOLDER2.png|[[Shock Rock]]
File:PLACEHOLDER2.png|[[Slapback]]
File:PLACEHOLDER2.png|[[Humungousaur (Reboot)|Humungousaur]]
File:PLACEHOLDER2.png|[[Rath (Reboot)|Rath]]
File:PLACEHOLDER2.png|[[Jetray (Reboot)|Jetray]]
</gallery></center>
== Omni-Enhanced ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Diamondhead (Reboot)|Diamondhead]]
File:PLACEHOLDER2.png|[[Grey Matter (Reboot)|Grey Matter]]
File:PLACEHOLDER2.png|[[Wildvine (Reboot)|Wildvine]]
File:PLACEHOLDER2.png|[[Heatblast (Reboot)|Heatblast]]
File:PLACEHOLDER2.png|[[Four Arms (Reboot)|Four Arms]]
File:PLACEHOLDER2.png|[[Cannonbolt (Reboot|Cannonbolt]]
File:PLACEHOLDER2.png|[[Stinkfly (Reboot)|Stinkfly]]
File:PLACEHOLDER2.png|[[Overflow]]
File:PLACEHOLDER2.png|[[XLR8 (Reboot)|XLR8]]
</gallery></center>
== Omni-Kix ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Four Arms (Reboot)|Four Arms]]
File:PLACEHOLDER2.png|[[Heatblast (Reboot)|Heatblast]]
File:PLACEHOLDER2.png|[[Humungousaur (Reboot)|Humungousaur]]
File:PLACEHOLDER2.png|[[Shock Rock]]
File:PLACEHOLDER2.png|[[XLR8 (Reboot)|XLR8]]
File:PLACEHOLDER2.png|[[Rath (Reboot)|Rath]]
File:PLACEHOLDER2.png|[[Cannonbolt (Reboot|Cannonbolt]]
File:PLACEHOLDER2.png|[[Diamondhead (Reboot)|Diamondhead]]
File:PLACEHOLDER2.png|[[Slapback]]
File:PLACEHOLDER2.png|[[Jetray (Reboot)|Jetray]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
097bf8a1c2cf4eea03d22a3fa2717fd1e6ce5f71
Transformations/Reboot/slideshow
0
245
940
2020-06-04T21:09:29Z
Jaswacker
30585766
Created page with "<div id="transformation-slideshow"> <gallery mode="slideshow"> Image:faceicontemplate.png|﹒|link=[[Heatblast (Reboot)]] Image:faceicontemplate.png|﹒|link=[[Wildmutt]] Imag..."
wikitext
text/x-wiki
<div id="transformation-slideshow">
<gallery mode="slideshow">
Image:faceicontemplate.png|﹒|link=[[Heatblast (Reboot)]]
Image:faceicontemplate.png|﹒|link=[[Wildmutt]]
Image:faceicontemplate.png|﹒|link=[[Diamondhead (Reboot)]]
</gallery></div>
d37a47fc6eb2d9fded90299c4e1e562f77327379
Template:Mediabox
10
246
941
2020-06-05T01:39:17Z
Carth
30634784
Created page with "{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px;..."
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{broadcast|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Broadcast Date'''
{{!}} style="width:17em" {{!}} {{{broadcast|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{release|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Release Date''
{{!}} {{{release}}}
|}}
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Home World'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{residence|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Residence'''
{{!}} {{{residence}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliations|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliations'''
{{!}} {{{affiliations}}}
|}}
|- style="vertical-align: top"
{{#if:{{{relationships|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Relationships'''
{{!}} {{{relationships}}}
|}}
|- style="vertical-align: top"
{{#if:{{{equipment|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Equipment'''
{{!}} {{{equipment}}}
|}}
|- style="vertical-align: top"
{{#if:{{{status|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Status'''
{{!}} {{{status}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Details'''
|- style="vertical-align: top"
{{#if:{{{first|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''First Appearance'''
{{!}} style="width:17em" {{!}} {{{first|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{last|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Last Appearance'''
{{!}} {{{last}}}
|}}
|}<noinclude>
<pre>
{{mediabox
|image=
|broadcast=
|release=
|species=
|homeworld=
|residence=
|affiliations=
|relationships=
|equipment=
|status=
|first=
|last=
}}
</pre>
[[Category:Templates]]</noinclude>
e9525e5101316c8d0ef83127805973fdb264166f
943
941
2020-06-05T01:42:20Z
Carth
30634784
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{broadcast|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Broadcast Date'''
{{!}} style="width:17em" {{!}} {{{broadcast|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{release|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Release Date''
{{!}} {{{release}}}
|}}
|- style="vertical-align: top"
{{#if:{{{series|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Series'''
{{!}} {{{series}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Home World'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{residence|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Residence'''
{{!}} {{{residence}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliations|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliations'''
{{!}} {{{affiliations}}}
|}}
|- style="vertical-align: top"
{{#if:{{{relationships|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Relationships'''
{{!}} {{{relationships}}}
|}}
|- style="vertical-align: top"
{{#if:{{{equipment|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Equipment'''
{{!}} {{{equipment}}}
|}}
|- style="vertical-align: top"
{{#if:{{{status|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Status'''
{{!}} {{{status}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Details'''
|- style="vertical-align: top"
{{#if:{{{first|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''First Appearance'''
{{!}} style="width:17em" {{!}} {{{first|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{last|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Last Appearance'''
{{!}} {{{last}}}
|}}
|}<noinclude>
<pre>
{{mediabox
|image=
|broadcast=
|release=
|series=
|homeworld=
|residence=
|affiliations=
|relationships=
|equipment=
|status=
|first=
|last=
}}
</pre>
[[Category:Templates]]</noinclude>
c34ae8d6fee1539a24827e5d735116ca9a721b7c
944
943
2020-06-05T02:07:41Z
Carth
30634784
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{broadcast|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Broadcast Date'''
{{!}} style="width:17em" {{!}} {{{broadcast|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{release|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Release Date''
{{!}} {{{release}}}
|}}
|- style="vertical-align: top"
{{#if:{{{series|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Series'''
{{!}} {{{series}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Details'''
|- style="vertical-align: top"
{{#if:{{{writer|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Writers'''
{{!}} style="width:17em" {{!}} {{{first|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{director|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Directors'''
{{!}} {{{director}}}
|}}
|- style="vertical-align: top"
{{#if:{{{prodcode|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Production Code''
{{!}} {{{prodcode}}}
|}}
|- style="vertical-align: top"
{{#if:{{{animstudio|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Animation Studio''
{{!}} {{{animstudio}}}
|}}
|}<noinclude>
<pre>
{{mediabox
|image=
|broadcast=
|release=
|series=
|writer=
|director=
|prodcode=
|animstudio=
}}
</pre>
[[Category:Templates]]</noinclude>
5db6f6a5ea576812b43433a2a738b663cd99005e
945
944
2020-06-05T02:12:01Z
Carth
30634784
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{broadcast|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Broadcast Date'''
{{!}} style="width:17em" {{!}} {{{broadcast|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{release|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Release Date''
{{!}} {{{release}}}
|}}
|- style="vertical-align: top"
{{#if:{{{series|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Series'''
{{!}} {{{series}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Details'''
|- style="vertical-align: top"
{{#if:{{{writer|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Writers'''
{{!}} style="width:17em" {{!}} {{{first|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{director|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Directors'''
{{!}} {{{director}}}
|}}
|- style="vertical-align: top"
{{#if:{{{prodcode|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Production Code'''
{{!}} {{{prodcode}}}
|}}
|- style="vertical-align: top"
{{#if:{{{animstudio|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Animation Studio'''
{{!}} {{{animstudio}}}
|}}
|}<noinclude>
<pre>
{{mediabox
|image=
|broadcast=
|release=
|series=
|writer=
|director=
|prodcode=
|animstudio=
}}
</pre>
[[Category:Templates]]</noinclude>
96febae1e8e7f6a449295f50ac12d39aee375647
And Then There Were 10
0
247
942
2020-06-05T01:42:14Z
Carth
30634784
Created page with "{{mediabox |image= |broadcast= December 27th, 2005 |release= |series= [[Ben 10 (2005)|Ben 10]] |homeworld= |residence= |affiliations= |relationships= |equipment= |status= |fir..."
wikitext
text/x-wiki
{{mediabox
|image=
|broadcast= December 27th, 2005
|release=
|series= [[Ben 10 (2005)|Ben 10]]
|homeworld=
|residence=
|affiliations=
|relationships=
|equipment=
|status=
|first=
|last=
}}
ca5eac9dc1341a2c969e090edc032e4d186d5c52
Template:Mediabox
10
246
946
945
2020-06-05T02:12:40Z
Carth
30634784
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{broadcast|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Broadcast Date'''
{{!}} style="width:17em" {{!}} {{{broadcast|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{release|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Release Date''
{{!}} {{{release}}}
|}}
|- style="vertical-align: top"
{{#if:{{{series|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Series'''
{{!}} {{{series}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Details'''
|- style="vertical-align: top"
{{#if:{{{writer|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Writers'''
{{!}} style="width:17em" {{!}} {{{writer|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{director|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Directors'''
{{!}} {{{director}}}
|}}
|- style="vertical-align: top"
{{#if:{{{prodcode|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Production Code'''
{{!}} {{{prodcode}}}
|}}
|- style="vertical-align: top"
{{#if:{{{animstudio|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Animation Studio'''
{{!}} {{{animstudio}}}
|}}
|}<noinclude>
<pre>
{{mediabox
|image=
|broadcast=
|release=
|series=
|writer=
|director=
|prodcode=
|animstudio=
}}
</pre>
[[Category:Templates]]</noinclude>
0a78a03a889500052159bf5e44dbcb7771460007
954
946
2020-06-05T02:38:28Z
Carth
30634784
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{broadcast|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Broadcast Date'''
{{!}} style="width:17em" {{!}} {{{broadcast|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{release|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Release Date''
{{!}} {{{release}}}
|}}
|- style="vertical-align: top"
{{#if:{{{series|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Series'''
{{!}} {{{series}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Details'''
|- style="vertical-align: top"
{{#if:{{{writer|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Writers'''
{{!}} style="width:17em" {{!}} {{{writer|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{director|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Directors'''
{{!}} {{{director}}}
|}}
|- style="vertical-align: top"
{{#if:{{{prodcode|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Production Code'''
{{!}} {{{prodcode}}}
|}}
|- style="vertical-align: top"
{{#if:{{{prodstudio|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Production Studio'''
{{!}} {{{prodstudio}}}
|}}
|- style="vertical-align: top"
{{#if:{{{animstudio|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Animation Studio'''
{{!}} {{{animstudio}}}
|}}
|}<noinclude>
<pre>
{{mediabox
|image=
|broadcast=
|release=
|series=
|writer=
|director=
|prodcode=
|prodstudio=
|animstudio=
}}
</pre>
[[Category:Templates]]</noinclude>
a133eee27bab392adaa9a1a24a0de32dc898891a
And Then There Were 10
0
247
947
942
2020-06-05T02:12:51Z
Carth
30634784
wikitext
text/x-wiki
{{mediabox
|image=
|broadcast= December 27th, 2005
|release=
|series= [[Ben 10 (2005)|Ben 10]]
|writer= Thomas Pugsley
|director= Scooter Tidwell
|prodcode= 101
|animstudio= Sunmin Image Pictures Co., Inc.
}}
29ae7e1197521e6137775067981ca52f19b9b434
949
947
2020-06-05T02:17:57Z
Carth
30634784
wikitext
text/x-wiki
{{mediabox
|image=And_Then_There_Were_10.png
|broadcast= December 27th, 2005
|release=
|series= [[Ben 10 (2005)|Ben 10]]
|writer= Thomas Pugsley
|director= Scooter Tidwell
|prodcode= 101
|animstudio= Sunmin Image Pictures Co., Inc.
}}
22826994e45dbe6f3ef1eade3c258e6c8b82829b
950
949
2020-06-05T02:18:26Z
Carth
30634784
wikitext
text/x-wiki
{{mediabox
|image= And_Then_There_Were_10.png
|broadcast= December 27th, 2005
|release=
|series= [[Ben 10 (2005)|Ben 10]]
|writer= Thomas Pugsley
|director= Scooter Tidwell
|prodcode= 101
|animstudio= Sunmin Image Pictures Co., Inc.
}}
05dc3ab0469bf2da86a9cac0f463712e4f2107a3
951
950
2020-06-05T02:21:05Z
Carth
30634784
wikitext
text/x-wiki
{{mediabox
|image= And Then There Were 10.png
|broadcast= December 27th, 2005
|release=
|series= [[Ben 10 (2005)|Ben 10]]
|writer= Thomas Pugsley
|director= Scooter Tidwell
|prodcode= 101
|animstudio= Sunmin Image Pictures Co., Inc.
}}
f1809f58e4b7f8513eacb3f884e8da7daeaeb2f9
952
951
2020-06-05T02:30:35Z
Carth
30634784
wikitext
text/x-wiki
{{mediabox
|image= And_Then_There_Were_10.png
|broadcast= December 27th, 2005
|release=
|series= [[Ben 10 (2005)|Ben 10]]
|writer= Thomas Pugsley
|director= Scooter Tidwell
|prodcode= 101
|animstudio= Sunmin Image Pictures Co., Inc.
}}
05dc3ab0469bf2da86a9cac0f463712e4f2107a3
953
952
2020-06-05T02:31:28Z
Carth
30634784
wikitext
text/x-wiki
{{mediabox
|image= PLACEHOLDER2.png
|broadcast= December 27th, 2005
|release=
|series= [[Ben 10 (2005)|Ben 10]]
|writer= Thomas Pugsley
|director= Scooter Tidwell
|prodcode= 101
|animstudio= Sunmin Image Pictures Co., Inc.
}}
b0b2f6f76ae3d2de8d5b542f2f30b920c56ede00
955
953
2020-06-05T02:39:24Z
Carth
30634784
wikitext
text/x-wiki
{{mediabox
|image= PLACEHOLDER2.png
|broadcast= December 27th, 2005
|release=
|series= [[Ben 10 (2005)|Ben 10]]
|writer= Thomas Pugsley
|director= Scooter Tidwell
|prodcode= 101
|prodstudio= Cartoon Network Studios
|animstudio= Sunmin Image Pictures Co., Inc.
}}
18bb6fea8a27280177669f253b88c105ba6e012f
956
955
2020-06-05T02:48:58Z
Carth
30634784
wikitext
text/x-wiki
{{mediabox
|image= [[File:And Then There Were 10.png|300px|It started when an alien device did what it did...]]
|broadcast= December 27th, 2005
|release=
|series= [[Ben 10 (2005)|Ben 10]]
|writer= Thomas Pugsley
|director= Scooter Tidwell
|prodcode= 101
|prodstudio= Cartoon Network Studios
|animstudio= Sunmin Image Pictures Co., Inc.
}}
ebfffa6c8f7ca0911b02d02011adff49031d9250
957
956
2020-06-05T03:03:41Z
Carth
30634784
wikitext
text/x-wiki
{{mediabox
|image= [[File:And Then There Were 10.png|300px]]
''It started when an alien device did what it did...''
|broadcast= December 27th, 2005
|release=
|series= [[Ben 10 (2005)|Ben 10]]
|writer= Thomas Pugsley
|director= Scooter Tidwell
|prodcode= 101
|prodstudio= Cartoon Network Studios
|animstudio= Sunmin Image Pictures Co., Inc.
}}
aff83e63383b75b7278260b9cdc8cb42d1e96ead
File:And Then There Were 10.png
6
248
948
2020-06-05T02:17:20Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Transformations/Prime
0
95
958
932
2020-06-05T14:37:53Z
Jaswacker
30585766
/* Introduced in Ben 10: Omniverse */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
{{:Transformations/Prime/slideshow}}
__TOC__
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Perk)</small>
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]] <br><small>(Introduced in ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'')</small>
File:PLACEHOLDER2.png|[[Buzzshock]] <br><small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|[[Spitter]] <br><small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Arctiguana]] <br><small>(First used by Ben 10,000)</small>
</gallery></center>
== Introduced in [[Ben 10: Alien Force]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Murk)</small>
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|[[Nanomech]] <br><small>(Introduced in ''[[Ben 10: Alien Swarm|Alien Swarm]]'')</small>
File:PLACEHOLDER2.png|[[Rocks]] <br><small>(Introduced in ''[[Power of the Omnitrix]]'' stage play)</small>
File:PLACEHOLDER2.png|[[Squidstrictor]] <br><small>(Introduced in ''Power of the Omnitrix'' stage play)</small>
</gallery></center>
== Introduced in [[Ben 10: Ultimate Alien]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Water Hazard]]
File:PLACEHOLDER2.png|[[AmpFibian]]
File:PLACEHOLDER2.png|[[Armodrillo]]
File:PLACEHOLDER2.png|[[Terraspin]]
File:PLACEHOLDER2.png|[[NRG]]
File:PLACEHOLDER2.png|[[Fasttrack]]
File:PLACEHOLDER2.png|[[Clockwork]]
File:PLACEHOLDER2.png|[[Chamalien]]
File:PLACEHOLDER2.png|[[Shocksquatch]] <br><small>(Introduced in ''[[Ben 10/Generator Rex: Heroes United|Heroes United]]'')</small>
File:PLACEHOLDER2.png|[[Eatle]]
File:PLACEHOLDER2.png|[[Juryrigg]]
</gallery></center>
== Introduced in [[Ben 10: Omniverse]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Feedback]]
File:PLACEHOLDER2.png|[[Bloxx]]
File:PLACEHOLDER2.png|[[Gravattack]]
File:PLACEHOLDER2.png|[[Crashhopper]]
File:PLACEHOLDER2.png|[[Ball Weevil]]
File:PLACEHOLDER2.png|[[Walkatrout]]
File:PLACEHOLDER2.png|[[Pesky Dust]]
File:PLACEHOLDER2.png|[[Mole-Stache]]
File:PLACEHOLDER2.png|[[The Worst]]
File:PLACEHOLDER2.png|[[Kickin Hawk]]
File:PLACEHOLDER2.png|[[Astrodactyl]]
File:PLACEHOLDER2.png|[[Toepick]]
File:PLACEHOLDER2.png|[[Bullfrag]]
File:PLACEHOLDER2.png|[[Atomix]]
File:PLACEHOLDER2.png|[[Gutrot]]
File:PLACEHOLDER2.png|[[Whampire]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
{{-}}
cd8f0b28f8de7f16ecdcd7a9ead8be50bf129b79
972
958
2020-06-05T16:24:21Z
Jaswacker
30585766
wikitext
text/x-wiki
<div id="transformation-slideshow">
<gallery mode="slideshow">
Image:heatblast_silh.png|﹒|link=[[Heatblast (Prime)]]
Image:wildmutt_silh.png|﹒|link=[[Wildmutt]]
Image:diamondhead_silh.png|﹒|link=[[Diamondhead (Prime)]]
Image:xlr8_silh.png|﹒|link=[[XLR8 (Prime)]]
Image:greymatter_silh.png|﹒|link=[[Grey Matter (Prime)]]
Image:fourarms_silh.png|﹒|link=[[Four Arms (Prime)]]
Image:stinkfly_silh.png|﹒|link=[[Stinkfly (Prime)]]
Image:ripjaws_silh.png|﹒|link=[[Ripjaws]]
Image:upgrade_silh.png|﹒|link=[[Upgrade (Prime)]]
Image:ghostfreak_silh.png|﹒|link=[[Ghostfreak]]
Image:cannonbolt_silh.png|﹒|link=[[Canonbolt (Prime)]]
Image:wildvine_silh.png|﹒|link=[[Wildvine (Prime)]]
Image:blitzwolfer_silh.png|﹒|link=[[Blitzwolfer]]
Image:snareoh_silh.png|﹒|link=[[Snare-oh]]
Image:frankenstrike_silh.png|﹒|link=[[Frankenstrike]]
Image:upchuck_silh.png|﹒|link=[[Upchuck]]
Image:ditto_silh.png|﹒|link=[[Ditto]]
Image:eyeguy_silh.png|﹒|link=[[Eye Guy]]
Image:waybig_silh.png|﹒|link=[[Way Big]]
Image:buzzshock_silh.png|﹒|link=[[Buzzshock]]
Image:spitter_silh.png|﹒|link=[[Spitter]]
Image:arctiguana_silh.png|﹒|link=[[Arctiguana]]
Image:faceicontemplate.png|﹒|link=[[Swampfire]]
Image:faceicontemplate.png|﹒|link=[[Echo Echo]]
Image:faceicontemplate.png|﹒|link=[[Humungousaur (Prime)]]
Image:faceicontemplate.png|﹒|link=[[Jetray (Prime)]]
Image:faceicontemplate.png|﹒|link=[[Big Chill]]
Image:faceicontemplate.png|﹒|link=[[Chromastone]]
Image:faceicontemplate.png|﹒|link=[[Brainstorm]]
Image:faceicontemplate.png|﹒|link=[[Spidermonkey]]
Image:faceicontemplate.png|﹒|link=[[Goop]]
Image:faceicontemplate.png|﹒|link=[[Alien X]]
Image:faceicontemplate.png|﹒|link=[[Lodestar]]
Image:faceicontemplate.png|﹒|link=[[Rath (Prime)]]
Image:faceicontemplate.png|﹒|link=[[Nanomech]]
Image:faceicontemplate.png|﹒|link=[[Rocks]]
Image:faceicontemplate.png|﹒|link=[[Squidstrictor]]
Image:faceicontemplate.png|﹒|link=[[Water Hazard]]
Image:faceicontemplate.png|﹒|link=[[AmpFibian]]
Image:faceicontemplate.png|﹒|link=[[Armodrillo]]
Image:faceicontemplate.png|﹒|link=[[Terraspin]]
Image:faceicontemplate.png|﹒|link=[[NRG]]
Image:faceicontemplate.png|﹒|link=[[Fasttrack]]
Image:faceicontemplate.png|﹒|link=[[Clockwork]]
Image:faceicontemplate.png|﹒|link=[[Chamalien]]
Image:faceicontemplate.png|﹒|link=[[Shocksquatch]]
Image:faceicontemplate.png|﹒|link=[[Eatle]]
Image:faceicontemplate.png|﹒|link=[[Juryrigg]]
Image:faceicontemplate.png|﹒|link=[[Feedback]]
Image:faceicontemplate.png|﹒|link=[[Bloxx]]
Image:faceicontemplate.png|﹒|link=[[Gravattack]]
Image:faceicontemplate.png|﹒|link=[[Crashhopper]]
Image:faceicontemplate.png|﹒|link=[[Ball Weevil]]
Image:faceicontemplate.png|﹒|link=[[Walkatrout]]
Image:faceicontemplate.png|﹒|link=[[Pesky Dust]]
Image:faceicontemplate.png|﹒|link=[[Mole-Stache]]
Image:faceicontemplate.png|﹒|link=[[The Worst]]
Image:faceicontemplate.png|﹒|link=[[Kickin Hawk]]
Image:faceicontemplate.png|﹒|link=[[Toepick]]
Image:faceicontemplate.png|﹒|link=[[Astrodactyl]]
Image:faceicontemplate.png|﹒|link=[[Bullfrag]]
Image:faceicontemplate.png|﹒|link=[[Atomix]]
Image:faceicontemplate.png|﹒|link=[[Gutrot]]
Image:faceicontemplate.png|﹒|link=[[Whampire]]
</gallery></div>
001b691649d938e78c26744aa980a66ca3651120
985
972
2020-06-05T16:48:05Z
Jaswacker
30585766
Undo revision 972 by [[Special:Contributions/Jaswacker|Jaswacker]] ([[User talk:Jaswacker|talk]])
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
{{:Transformations/Prime/slideshow}}
__TOC__
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Perk)</small>
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]] <br><small>(Introduced in ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'')</small>
File:PLACEHOLDER2.png|[[Buzzshock]] <br><small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|[[Spitter]] <br><small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Arctiguana]] <br><small>(First used by Ben 10,000)</small>
</gallery></center>
== Introduced in [[Ben 10: Alien Force]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Murk)</small>
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|[[Nanomech]] <br><small>(Introduced in ''[[Ben 10: Alien Swarm|Alien Swarm]]'')</small>
File:PLACEHOLDER2.png|[[Rocks]] <br><small>(Introduced in ''[[Power of the Omnitrix]]'' stage play)</small>
File:PLACEHOLDER2.png|[[Squidstrictor]] <br><small>(Introduced in ''Power of the Omnitrix'' stage play)</small>
</gallery></center>
== Introduced in [[Ben 10: Ultimate Alien]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Water Hazard]]
File:PLACEHOLDER2.png|[[AmpFibian]]
File:PLACEHOLDER2.png|[[Armodrillo]]
File:PLACEHOLDER2.png|[[Terraspin]]
File:PLACEHOLDER2.png|[[NRG]]
File:PLACEHOLDER2.png|[[Fasttrack]]
File:PLACEHOLDER2.png|[[Clockwork]]
File:PLACEHOLDER2.png|[[Chamalien]]
File:PLACEHOLDER2.png|[[Shocksquatch]] <br><small>(Introduced in ''[[Ben 10/Generator Rex: Heroes United|Heroes United]]'')</small>
File:PLACEHOLDER2.png|[[Eatle]]
File:PLACEHOLDER2.png|[[Juryrigg]]
</gallery></center>
== Introduced in [[Ben 10: Omniverse]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Feedback]]
File:PLACEHOLDER2.png|[[Bloxx]]
File:PLACEHOLDER2.png|[[Gravattack]]
File:PLACEHOLDER2.png|[[Crashhopper]]
File:PLACEHOLDER2.png|[[Ball Weevil]]
File:PLACEHOLDER2.png|[[Walkatrout]]
File:PLACEHOLDER2.png|[[Pesky Dust]]
File:PLACEHOLDER2.png|[[Mole-Stache]]
File:PLACEHOLDER2.png|[[The Worst]]
File:PLACEHOLDER2.png|[[Kickin Hawk]]
File:PLACEHOLDER2.png|[[Astrodactyl]]
File:PLACEHOLDER2.png|[[Toepick]]
File:PLACEHOLDER2.png|[[Bullfrag]]
File:PLACEHOLDER2.png|[[Atomix]]
File:PLACEHOLDER2.png|[[Gutrot]]
File:PLACEHOLDER2.png|[[Whampire]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
{{-}}
cd8f0b28f8de7f16ecdcd7a9ead8be50bf129b79
Transformations/Reboot/slideshow
0
245
960
940
2020-06-05T14:41:49Z
Jaswacker
30585766
wikitext
text/x-wiki
<div id="transformation-slideshow">
<gallery mode="slideshow">
Image:faceicontemplate.png|﹒|link=[[Cannonbolt (Reboot)]]
Image:faceicontemplate.png|﹒|link=[[Overflow]]
Image:faceicontemplate.png|﹒|link=[[Heatblast (Reboot)]]
Image:faceicontemplate.png|﹒|link=[[XLR8 (Reboot)]]
Image:faceicontemplate.png|﹒|link=[[Four Arms (Reboot)]]
Image:faceicontemplate.png|﹒|link=[[Grey Matter (Reboot)]]
Image:faceicontemplate.png|﹒|link=[[Diamondhead (Reboot)]]
Image:faceicontemplate.png|﹒|link=[[Upgrade (Reboot)]]
Image:faceicontemplate.png|﹒|link=[[Stinkfly (Reboot)]]
Image:faceicontemplate.png|﹒|link=[[Wildvine (Reboot)]]
Image:faceicontemplate.png|﹒|link=[[Gax]]
Image:faceicontemplate.png|﹒|link=[[Shock Rock]]
Image:faceicontemplate.png|﹒|link=[[Slapback]]
Image:faceicontemplate.png|﹒|link=[[Humungousaur (Reboot)]]
Image:faceicontemplate.png|﹒|link=[[Jetray (Reboot)]]
</gallery></div>
70a3c61e0d00967590c210b22dff84827b8f826e
File:Cannonbolt silh.png
6
249
961
2020-06-05T15:11:34Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Diamondhead silh.png
6
250
962
2020-06-05T15:11:35Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
973
962
2020-06-05T16:46:51Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:Diamondhead silh.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Fourarms silh.png
6
251
963
2020-06-05T15:11:35Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Ghostfreak silh.png
6
252
964
2020-06-05T15:11:36Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Greymatter silh.png
6
253
965
2020-06-05T15:11:36Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Heatblast silh.png
6
254
966
2020-06-05T15:11:36Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
996
966
2020-06-05T18:25:13Z
Carth
30634784
Carth uploaded a new version of [[File:Heatblast silh.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
997
996
2020-06-05T18:26:06Z
Carth
30634784
Carth uploaded a new version of [[File:Heatblast silh.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Ripjaws silh.png
6
255
967
2020-06-05T15:11:36Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Stinkfly silh.png
6
256
968
2020-06-05T15:11:37Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Upgrade silh.png
6
257
969
2020-06-05T15:11:37Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Wildmutt silh.png
6
258
970
2020-06-05T15:11:37Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Xlr8 silh.png
6
259
971
2020-06-05T15:11:38Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Arctiguana silh.png
6
260
974
2020-06-05T16:46:55Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Blitzwolfer silh.png
6
261
975
2020-06-05T16:46:56Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Ditto silh.png
6
262
976
2020-06-05T16:46:57Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Eyeguy silh.png
6
263
977
2020-06-05T16:46:58Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Frankenstrike silh.png
6
264
978
2020-06-05T16:46:58Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Snareoh silh.png
6
265
979
2020-06-05T16:46:59Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Spitter silh.png
6
266
980
2020-06-05T16:47:00Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Upchuck silh.png
6
267
981
2020-06-05T16:47:00Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Waybig silh.png
6
268
982
2020-06-05T16:47:01Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Buzzshock silh.png
6
269
983
2020-06-05T16:47:02Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Wildvine silh.png
6
270
984
2020-06-05T16:47:03Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
MediaWiki:Common.css
8
3
987
930
2020-06-05T17:26:37Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:0;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
44bd7a8e43eaa8a36041f293357d7f74ec5e6cbf
988
987
2020-06-05T17:34:49Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:0;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
position: relative;
z-index: 2;
}
59882590e1b4adada09fa6d71735304cb07c3850
990
988
2020-06-05T17:38:00Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:0;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow ul.mw-gallery-slideshow li.gallerycarousel {
z-index: 1;
}
f1f75cf836cb9ab70f666efbb0188f78bac9caf0
991
990
2020-06-05T17:38:12Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:0;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow .mw-gallery-slideshow li.gallerycarousel {
z-index: 1;
}
72f95eb57533d021d205b26e968627902eb87e06
992
991
2020-06-05T17:39:32Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:0;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
z-index: 2 !important;
}
c4cec26c357f19edc2cd88a9cd6ecf2c4dbdfcbd
993
992
2020-06-05T18:05:18Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:0;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
0011ad26ae788e8861c257225481f22c3a1bfe07
Sandbox
0
240
989
931
2020-06-05T17:36:34Z
Jaswacker
30585766
wikitext
text/x-wiki
<div id="transformation-slideshow">
<gallery mode="slideshow">
Image:faceicontemplate.png|﹒|link=[[Heatblast]]
Image:faceicontemplate.png|﹒|link=[[Wildmutt]]
Image:faceicontemplate.png|﹒|link=[[Diamondhead]]
</gallery></div>
<gallery mode="slideshow">
Image:faceicontemplate.png|﹒|link=[[Heatblast]]
Image:faceicontemplate.png|﹒|link=[[Wildmutt]]
Image:faceicontemplate.png|﹒|link=[[Diamondhead]]
</gallery></div>
0bc91e2d2005b3a105b8a96f9316c77855ebf539
Heatblast (Prime)
0
149
994
620
2020-06-05T18:17:38Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image={{tabs|{{tab2|OV|PLACEHOLDER2.png}}{{tab2|UA|PLACEHOLDER2.png}}{{tab2|OS|PLACEHOLDER2.png}}}}
|nickname=test
|species=[[Pyronite]]
|homeworld=[[Pyros]]
|affiliations=test
|equipment=[[Omnitrix]]
|first=test
|last=test
}}
Placeholder, general bio/description of Heatblast.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Steve Blum]] (English)|[[Taketora]] (Japanese)}}
Entire history of Heatblast in the Original Series. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Liron Lev]] (Hebrew)}}
Entire history of Heatblast in UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[David Kaye]] (English)|[[Liron Lev]] (Hebrew)}}
Entire history of Heatblast in OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== TOYLINE ===
[[File:PLACEHOLDER2.png|thumb|250px|CAPTION]]
*'''TOYNAME''' (WAVE, YEAR)
: TOY DESC
{{quote|''TOYBIO''}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Transformations]]</noinclude>
c1359bd7fee8c3e62d3100e65e32553d8fbc76be
Wildmutt
0
131
995
626
2020-06-05T18:22:44Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image={{tabs|{{tab2|OV|PLACEHOLDER2.png}}{{tab2|UA|PLACEHOLDER2.png}}{{tab2|OS|PLACEHOLDER2.png}}}}
|nickname=test
|species=[[Vulpimancer]]
|homeworld=[[Vulpin]]
|affiliations=test
|equipment=[[Omnitrix]]
|first=test
|last=test
}}
Placeholder, general bio/description of Wildmutt.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dee Bradley Baker]] (English)}}
Entire history of Wildmutt in the Original Series. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)}}
Entire history of Wildmutt in UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)}}
Entire history of Wildmutt in OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== TOYLINE ===
[[File:PLACEHOLDER2.png|thumb|250px|CAPTION]]
*'''TOYNAME''' (WAVE, YEAR)
: TOY DESC
{{quote|''TOYBIO''}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Transformations]]</noinclude>
0c934199346926ab6835fd46811e215b9395859d
Diamondhead (Prime)
0
171
998
629
2020-06-05T18:27:29Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image={{tabs|{{tab2|OV|PLACEHOLDER2.png}}{{tab2|UA|PLACEHOLDER2.png}}{{tab2|OS|PLACEHOLDER2.png}}}}
|nickname=test
|species=[[Petrosapien (Prime)|Petrosapien]]
|homeworld=[[Petropia]]
|affiliations=test
|equipment=[[Omnitrix]]
|first=test
|last=test
}}
Placeholder, general bio/description of Diamondhead.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Jim War]] (English)|[[Taketora]] (English)|[[Yoram Yosephsberg]] (Hebrew)}}
Entire history of Diamondhead in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Yoram Yosephsberg]] (Hebrew)}}
Entire history of Diamondhead in AF. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Yoram Yosephsberg]] (Hebrew)}}
Entire history of Diamondhead in OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== TOYLINE ===
[[File:PLACEHOLDER2.png|thumb|250px|CAPTION]]
*'''TOYNAME''' (WAVE, YEAR)
: TOY DESC
{{quote|''TOYBIO''}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Transformations]]</noinclude>
610e4f4a5280f9d895e0333c831d457e6f3b3a3e
999
998
2020-06-05T18:27:44Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image={{tabs|{{tab2|OV|PLACEHOLDER2.png}}{{tab2|AF|PLACEHOLDER2.png}}{{tab2|OS|PLACEHOLDER2.png}}}}
|nickname=test
|species=[[Petrosapien (Prime)|Petrosapien]]
|homeworld=[[Petropia]]
|affiliations=test
|equipment=[[Omnitrix]]
|first=test
|last=test
}}
Placeholder, general bio/description of Diamondhead.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Jim War]] (English)|[[Taketora]] (English)|[[Yoram Yosephsberg]] (Hebrew)}}
Entire history of Diamondhead in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Yoram Yosephsberg]] (Hebrew)}}
Entire history of Diamondhead in AF. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Yoram Yosephsberg]] (Hebrew)}}
Entire history of Diamondhead in OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== TOYLINE ===
[[File:PLACEHOLDER2.png|thumb|250px|CAPTION]]
*'''TOYNAME''' (WAVE, YEAR)
: TOY DESC
{{quote|''TOYBIO''}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Transformations]]</noinclude>
328ab34003e04d799e0971d265a90c0424768e04
1000
999
2020-06-05T18:28:16Z
Jaswacker
30585766
/* History */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image={{tabs|{{tab2|OV|PLACEHOLDER2.png}}{{tab2|AF|PLACEHOLDER2.png}}{{tab2|OS|PLACEHOLDER2.png}}}}
|nickname=test
|species=[[Petrosapien (Prime)|Petrosapien]]
|homeworld=[[Petropia]]
|affiliations=test
|equipment=[[Omnitrix]]
|first=test
|last=test
}}
Placeholder, general bio/description of Diamondhead.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Jim War]] (English)|[[Taketora]] (English), [[Yoram Yosephsberg]] (Hebrew)}}
Entire history of Diamondhead in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Yoram Yosephsberg]] (Hebrew)}}
Entire history of Diamondhead in AF. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Yoram Yosephsberg]] (Hebrew)}}
Entire history of Diamondhead in OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== TOYLINE ===
[[File:PLACEHOLDER2.png|thumb|250px|CAPTION]]
*'''TOYNAME''' (WAVE, YEAR)
: TOY DESC
{{quote|''TOYBIO''}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Transformations]]</noinclude>
85c19b5055ca1cb1980ebaa36b5dfe6bd8cfded5
1002
1000
2020-06-05T18:30:02Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image={{tabs|{{tab2|OV|PLACEHOLDER2.png}}{{tab2|AF|PLACEHOLDER2.png}}{{tab2|OS|PLACEHOLDER2.png}}}}
|nickname=test
|species=[[Petrosapien (Prime)|Petrosapien]]
|homeworld=[[Petropia (Prime)|Petropia]]
|affiliations=test
|equipment=[[Omnitrix]]
|first=test
|last=test
}}
Placeholder, general bio/description of Diamondhead.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Jim War]] (English)|[[Taketora]] (English), [[Yoram Yosephsberg]] (Hebrew)}}
Entire history of Diamondhead in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Yoram Yosephsberg]] (Hebrew)}}
Entire history of Diamondhead in AF. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Yoram Yosephsberg]] (Hebrew)}}
Entire history of Diamondhead in OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== TOYLINE ===
[[File:PLACEHOLDER2.png|thumb|250px|CAPTION]]
*'''TOYNAME''' (WAVE, YEAR)
: TOY DESC
{{quote|''TOYBIO''}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Transformations]]</noinclude>
2eb373584c00df5df823429a9ed4c80937a07379
1003
1002
2020-06-05T18:30:45Z
Jaswacker
30585766
/* History */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image={{tabs|{{tab2|OV|PLACEHOLDER2.png}}{{tab2|AF|PLACEHOLDER2.png}}{{tab2|OS|PLACEHOLDER2.png}}}}
|nickname=test
|species=[[Petrosapien (Prime)|Petrosapien]]
|homeworld=[[Petropia (Prime)|Petropia]]
|affiliations=test
|equipment=[[Omnitrix]]
|first=test
|last=test
}}
Placeholder, general bio/description of Diamondhead.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Jim War]] (English)|[[Taketora]] (Japanese), [[Yoram Yosephsberg]] (Hebrew)}}
Entire history of Diamondhead in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Yoram Yosephsberg]] (Hebrew)}}
Entire history of Diamondhead in AF. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Yoram Yosephsberg]] (Hebrew)}}
Entire history of Diamondhead in OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== TOYLINE ===
[[File:PLACEHOLDER2.png|thumb|250px|CAPTION]]
*'''TOYNAME''' (WAVE, YEAR)
: TOY DESC
{{quote|''TOYBIO''}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Transformations]]</noinclude>
aaace7bacedbc4b86b9a69282225e8e120141654
1011
1003
2020-06-06T01:19:32Z
Carth
30634784
/* Original Series */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image={{tabs|{{tab2|OV|PLACEHOLDER2.png}}{{tab2|AF|PLACEHOLDER2.png}}{{tab2|OS|PLACEHOLDER2.png}}}}
|nickname=test
|species=[[Petrosapien (Prime)|Petrosapien]]
|homeworld=[[Petropia (Prime)|Petropia]]
|affiliations=test
|equipment=[[Omnitrix]]
|first=test
|last=test
}}
Placeholder, general bio/description of Diamondhead.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Jim Ward]] (English)|[[Taketora]] (Japanese), [[Yoram Yosephsberg]] (Hebrew)}}
Entire history of Diamondhead in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Yoram Yosephsberg]] (Hebrew)}}
Entire history of Diamondhead in AF. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Yoram Yosephsberg]] (Hebrew)}}
Entire history of Diamondhead in OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== TOYLINE ===
[[File:PLACEHOLDER2.png|thumb|250px|CAPTION]]
*'''TOYNAME''' (WAVE, YEAR)
: TOY DESC
{{quote|''TOYBIO''}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Transformations]]</noinclude>
f699f94eb9eb57f74187574acb31083ef13b9caa
Heatblast (Prime)
0
149
1001
994
2020-06-05T18:29:39Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image={{tabs|{{tab2|OV|PLACEHOLDER2.png}}{{tab2|UA|PLACEHOLDER2.png}}{{tab2|OS|PLACEHOLDER2.png}}}}
|nickname=test
|species=[[Pyronite (Prime)|Pyronite]]
|homeworld=[[Pyros (Prime)|Pyros]]
|affiliations=test
|equipment=[[Omnitrix]]
|first=test
|last=test
}}
Placeholder, general bio/description of Heatblast.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Steve Blum]] (English)|[[Taketora]] (Japanese)}}
Entire history of Heatblast in the Original Series. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Liron Lev]] (Hebrew)}}
Entire history of Heatblast in UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[David Kaye]] (English)|[[Liron Lev]] (Hebrew)}}
Entire history of Heatblast in OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== TOYLINE ===
[[File:PLACEHOLDER2.png|thumb|250px|CAPTION]]
*'''TOYNAME''' (WAVE, YEAR)
: TOY DESC
{{quote|''TOYBIO''}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Transformations]]</noinclude>
aaae27588a21ff4d1cab6df349bdcd9bbab853cc
File:Wildmutt silh.png
6
258
1004
970
2020-06-05T18:33:10Z
Carth
30634784
Carth uploaded a new version of [[File:Wildmutt silh.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
1005
1004
2020-06-05T18:35:36Z
Carth
30634784
Carth uploaded a new version of [[File:Wildmutt silh.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
1006
1005
2020-06-05T18:38:13Z
Carth
30634784
Carth uploaded a new version of [[File:Wildmutt silh.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Heatblast silh.png
6
254
1007
997
2020-06-05T18:38:33Z
Carth
30634784
Carth uploaded a new version of [[File:Heatblast silh.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Wildvine silh.png
6
270
1008
984
2020-06-05T19:43:58Z
Carth
30634784
Carth uploaded a new version of [[File:Wildvine silh.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Upchuck silh.png
6
267
1009
981
2020-06-05T19:44:16Z
Carth
30634784
Carth uploaded a new version of [[File:Upchuck silh.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Spitter silh.png
6
266
1010
980
2020-06-05T19:44:36Z
Carth
30634784
Carth uploaded a new version of [[File:Spitter silh.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Ditto silh.png
6
262
1012
976
2020-06-06T01:35:57Z
Carth
30634784
Carth uploaded a new version of [[File:Ditto silh.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Waybig silh.png
6
268
1013
982
2020-06-06T01:38:38Z
Carth
30634784
Carth uploaded a new version of [[File:Waybig silh.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Trixuaf.png
6
271
1014
2020-06-06T04:54:41Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
1040
1014
2020-06-06T05:35:22Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:Trixuaf.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
MediaWiki:Common.css
8
3
1015
993
2020-06-06T04:55:22Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:0;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows ALIEN FORCE */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/b/bd/Trixuaf.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
922c55457e7421ff03452877e8e7c5c21114f87e
1021
1015
2020-06-06T05:08:12Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:0;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows ALIEN FORCE */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/b/bd/Trixuaf.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
22126b5e07aefc09c7a7ef504345e1236da0ce2f
1047
1021
2020-06-06T17:04:40Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:0;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
b9a27847ae280f9183fbb79fd9f4c1ee44cb38b0
Sandbox
0
240
1016
989
2020-06-06T05:04:25Z
Jaswacker
30585766
wikitext
text/x-wiki
<div id="transformation-slideshow">
<gallery mode="slideshow">
Image:faceicontemplate.png|﹒|link=[[Heatblast]]
Image:faceicontemplate.png|﹒|link=[[Wildmutt]]
Image:faceicontemplate.png|﹒|link=[[Diamondhead]]
</gallery></div>
<div id="transformation2-slideshow">
<gallery mode="slideshow">
Image:swampfire_hol.png|﹒|link=[[Swampfire]]
Image:echoecho_hol.png|﹒|link=[[Echo Echo]]
Image:humungousaur_hol.png|﹒|link=[[Humungousaur (Prime)]]
</gallery></div>
5e20c4bd2fcbeb56a13b5f6f6b4290dcdde4819e
1017
1016
2020-06-06T05:04:40Z
Jaswacker
30585766
wikitext
text/x-wiki
<div id="transformation2-slideshow">
<gallery mode="slideshow">
Image:swampfire_hol.png|﹒|link=[[Swampfire]]
Image:echoecho_hol.png|﹒|link=[[Echo Echo]]
Image:humungousaur_hol.png|﹒|link=[[Humungousaur (Prime)]]
</gallery></div>
c5e005d5fb59fe55b41333e4128782eea765efc5
1041
1017
2020-06-06T05:36:11Z
Jaswacker
30585766
wikitext
text/x-wiki
<div id="transformation2-slideshow">
<gallery mode="slideshow">
Image:swampfire_holo.png|﹒|link=[[Swampfire]]
Image:echoecho_holo.png|﹒|link=[[Echo Echo]]
Image:humungousaur_holo.png|﹒|link=[[Humungousaur (Prime)]]
</gallery></div>
286858e4e0422870e9efa2ecde096632e5b83d67
File:Swampfire hol.png
6
272
1018
2020-06-06T05:06:46Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Echoecho hol.png
6
273
1019
2020-06-06T05:06:46Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Humungousaur hol.png
6
274
1020
2020-06-06T05:06:47Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Transformations/Prime
0
95
1027
985
2020-06-06T05:15:08Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
__TOC__
{{:Transformations/Prime/slideshow}}
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Perk)</small>
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]] <br><small>(Introduced in ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'')</small>
File:PLACEHOLDER2.png|[[Buzzshock]] <br><small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|[[Spitter]] <br><small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Arctiguana]] <br><small>(First used by Ben 10,000)</small>
</gallery></center>
== Introduced in [[Ben 10: Alien Force]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Murk)</small>
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|[[Nanomech]] <br><small>(Introduced in ''[[Ben 10: Alien Swarm|Alien Swarm]]'')</small>
File:PLACEHOLDER2.png|[[Rocks]] <br><small>(Introduced in ''[[Power of the Omnitrix]]'' stage play)</small>
File:PLACEHOLDER2.png|[[Squidstrictor]] <br><small>(Introduced in ''Power of the Omnitrix'' stage play)</small>
</gallery></center>
== Introduced in [[Ben 10: Ultimate Alien]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Water Hazard]]
File:PLACEHOLDER2.png|[[AmpFibian]]
File:PLACEHOLDER2.png|[[Armodrillo]]
File:PLACEHOLDER2.png|[[Terraspin]]
File:PLACEHOLDER2.png|[[NRG]]
File:PLACEHOLDER2.png|[[Fasttrack]]
File:PLACEHOLDER2.png|[[Clockwork]]
File:PLACEHOLDER2.png|[[Chamalien]]
File:PLACEHOLDER2.png|[[Shocksquatch]] <br><small>(Introduced in ''[[Ben 10/Generator Rex: Heroes United|Heroes United]]'')</small>
File:PLACEHOLDER2.png|[[Eatle]]
File:PLACEHOLDER2.png|[[Juryrigg]]
</gallery></center>
== Introduced in [[Ben 10: Omniverse]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Feedback]]
File:PLACEHOLDER2.png|[[Bloxx]]
File:PLACEHOLDER2.png|[[Gravattack]]
File:PLACEHOLDER2.png|[[Crashhopper]]
File:PLACEHOLDER2.png|[[Ball Weevil]]
File:PLACEHOLDER2.png|[[Walkatrout]]
File:PLACEHOLDER2.png|[[Pesky Dust]]
File:PLACEHOLDER2.png|[[Mole-Stache]]
File:PLACEHOLDER2.png|[[The Worst]]
File:PLACEHOLDER2.png|[[Kickin Hawk]]
File:PLACEHOLDER2.png|[[Astrodactyl]]
File:PLACEHOLDER2.png|[[Toepick]]
File:PLACEHOLDER2.png|[[Bullfrag]]
File:PLACEHOLDER2.png|[[Atomix]]
File:PLACEHOLDER2.png|[[Gutrot]]
File:PLACEHOLDER2.png|[[Whampire]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
{{-}}
4140f56b3f0890e8997eab15d80efc6e8e78b86a
1028
1027
2020-06-06T05:15:29Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
{{:Transformations/Prime/slideshow}}
__TOC__
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Perk)</small>
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]] <br><small>(Introduced in ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'')</small>
File:PLACEHOLDER2.png|[[Buzzshock]] <br><small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|[[Spitter]] <br><small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Arctiguana]] <br><small>(First used by Ben 10,000)</small>
</gallery></center>
== Introduced in [[Ben 10: Alien Force]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Murk)</small>
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|[[Nanomech]] <br><small>(Introduced in ''[[Ben 10: Alien Swarm|Alien Swarm]]'')</small>
File:PLACEHOLDER2.png|[[Rocks]] <br><small>(Introduced in ''[[Power of the Omnitrix]]'' stage play)</small>
File:PLACEHOLDER2.png|[[Squidstrictor]] <br><small>(Introduced in ''Power of the Omnitrix'' stage play)</small>
</gallery></center>
== Introduced in [[Ben 10: Ultimate Alien]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Water Hazard]]
File:PLACEHOLDER2.png|[[AmpFibian]]
File:PLACEHOLDER2.png|[[Armodrillo]]
File:PLACEHOLDER2.png|[[Terraspin]]
File:PLACEHOLDER2.png|[[NRG]]
File:PLACEHOLDER2.png|[[Fasttrack]]
File:PLACEHOLDER2.png|[[Clockwork]]
File:PLACEHOLDER2.png|[[Chamalien]]
File:PLACEHOLDER2.png|[[Shocksquatch]] <br><small>(Introduced in ''[[Ben 10/Generator Rex: Heroes United|Heroes United]]'')</small>
File:PLACEHOLDER2.png|[[Eatle]]
File:PLACEHOLDER2.png|[[Juryrigg]]
</gallery></center>
== Introduced in [[Ben 10: Omniverse]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Feedback]]
File:PLACEHOLDER2.png|[[Bloxx]]
File:PLACEHOLDER2.png|[[Gravattack]]
File:PLACEHOLDER2.png|[[Crashhopper]]
File:PLACEHOLDER2.png|[[Ball Weevil]]
File:PLACEHOLDER2.png|[[Walkatrout]]
File:PLACEHOLDER2.png|[[Pesky Dust]]
File:PLACEHOLDER2.png|[[Mole-Stache]]
File:PLACEHOLDER2.png|[[The Worst]]
File:PLACEHOLDER2.png|[[Kickin Hawk]]
File:PLACEHOLDER2.png|[[Astrodactyl]]
File:PLACEHOLDER2.png|[[Toepick]]
File:PLACEHOLDER2.png|[[Bullfrag]]
File:PLACEHOLDER2.png|[[Atomix]]
File:PLACEHOLDER2.png|[[Gutrot]]
File:PLACEHOLDER2.png|[[Whampire]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
{{-}}
6cb7d8317370c786f9ae74cc9858c1bbc80924a9
1030
1028
2020-06-06T05:16:48Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
{{:Transformations/Prime/slideshow}}
__TOC__
<div id="transformation-slideshow">
<gallery mode="slideshow">
Image:heatblast_silh.png|﹒|link=[[Heatblast (Prime)]]
Image:wildmutt_silh.png|﹒|link=[[Wildmutt]]
Image:diamondhead_silh.png|﹒|link=[[Diamondhead (Prime)]]
Image:xlr8_silh.png|﹒|link=[[XLR8 (Prime)]]
Image:greymatter_silh.png|﹒|link=[[Grey Matter (Prime)]]
Image:fourarms_silh.png|﹒|link=[[Four Arms (Prime)]]
Image:stinkfly_silh.png|﹒|link=[[Stinkfly (Prime)]]
Image:ripjaws_silh.png|﹒|link=[[Ripjaws]]
Image:upgrade_silh.png|﹒|link=[[Upgrade (Prime)]]
Image:ghostfreak_silh.png|﹒|link=[[Ghostfreak]]
Image:cannonbolt_silh.png|﹒|link=[[Canonbolt (Prime)]]
Image:wildvine_silh.png|﹒|link=[[Wildvine (Prime)]]
Image:blitzwolfer_silh.png|﹒|link=[[Blitzwolfer]]
Image:snareoh_silh.png|﹒|link=[[Snare-oh]]
Image:frankenstrike_silh.png|﹒|link=[[Frankenstrike]]
Image:upchuck_silh.png|﹒|link=[[Upchuck]]
Image:ditto_silh.png|﹒|link=[[Ditto]]
Image:eyeguy_silh.png|﹒|link=[[Eye Guy]]
Image:waybig_silh.png|﹒|link=[[Way Big]]
Image:buzzshock_silh.png|﹒|link=[[Buzzshock]]
Image:spitter_silh.png|﹒|link=[[Spitter]]
Image:arctiguana_silh.png|﹒|link=[[Arctiguana]]
</gallery></div>
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Perk)</small>
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]] <br><small>(Introduced in ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'')</small>
File:PLACEHOLDER2.png|[[Buzzshock]] <br><small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|[[Spitter]] <br><small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Arctiguana]] <br><small>(First used by Ben 10,000)</small>
</gallery></center>
== Introduced in [[Ben 10: Alien Force]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Murk)</small>
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|[[Nanomech]] <br><small>(Introduced in ''[[Ben 10: Alien Swarm|Alien Swarm]]'')</small>
File:PLACEHOLDER2.png|[[Rocks]] <br><small>(Introduced in ''[[Power of the Omnitrix]]'' stage play)</small>
File:PLACEHOLDER2.png|[[Squidstrictor]] <br><small>(Introduced in ''Power of the Omnitrix'' stage play)</small>
</gallery></center>
== Introduced in [[Ben 10: Ultimate Alien]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Water Hazard]]
File:PLACEHOLDER2.png|[[AmpFibian]]
File:PLACEHOLDER2.png|[[Armodrillo]]
File:PLACEHOLDER2.png|[[Terraspin]]
File:PLACEHOLDER2.png|[[NRG]]
File:PLACEHOLDER2.png|[[Fasttrack]]
File:PLACEHOLDER2.png|[[Clockwork]]
File:PLACEHOLDER2.png|[[Chamalien]]
File:PLACEHOLDER2.png|[[Shocksquatch]] <br><small>(Introduced in ''[[Ben 10/Generator Rex: Heroes United|Heroes United]]'')</small>
File:PLACEHOLDER2.png|[[Eatle]]
File:PLACEHOLDER2.png|[[Juryrigg]]
</gallery></center>
== Introduced in [[Ben 10: Omniverse]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Feedback]]
File:PLACEHOLDER2.png|[[Bloxx]]
File:PLACEHOLDER2.png|[[Gravattack]]
File:PLACEHOLDER2.png|[[Crashhopper]]
File:PLACEHOLDER2.png|[[Ball Weevil]]
File:PLACEHOLDER2.png|[[Walkatrout]]
File:PLACEHOLDER2.png|[[Pesky Dust]]
File:PLACEHOLDER2.png|[[Mole-Stache]]
File:PLACEHOLDER2.png|[[The Worst]]
File:PLACEHOLDER2.png|[[Kickin Hawk]]
File:PLACEHOLDER2.png|[[Astrodactyl]]
File:PLACEHOLDER2.png|[[Toepick]]
File:PLACEHOLDER2.png|[[Bullfrag]]
File:PLACEHOLDER2.png|[[Atomix]]
File:PLACEHOLDER2.png|[[Gutrot]]
File:PLACEHOLDER2.png|[[Whampire]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
{{-}}
bce113246b08a7db421f92801c274714baad72bf
1031
1030
2020-06-06T05:18:21Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
__TOC__
{{-}}
{{:Transformations/Prime/trixos}}
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Perk)</small>
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]] <br><small>(Introduced in ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'')</small>
File:PLACEHOLDER2.png|[[Buzzshock]] <br><small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|[[Spitter]] <br><small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Arctiguana]] <br><small>(First used by Ben 10,000)</small>
</gallery></center>
{{-}}
{{:Transformations/Prime/trixuaf}}
== Introduced in [[Ben 10: Alien Force]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Murk)</small>
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|[[Nanomech]] <br><small>(Introduced in ''[[Ben 10: Alien Swarm|Alien Swarm]]'')</small>
File:PLACEHOLDER2.png|[[Rocks]] <br><small>(Introduced in ''[[Power of the Omnitrix]]'' stage play)</small>
File:PLACEHOLDER2.png|[[Squidstrictor]] <br><small>(Introduced in ''Power of the Omnitrix'' stage play)</small>
</gallery></center>
== Introduced in [[Ben 10: Ultimate Alien]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Water Hazard]]
File:PLACEHOLDER2.png|[[AmpFibian]]
File:PLACEHOLDER2.png|[[Armodrillo]]
File:PLACEHOLDER2.png|[[Terraspin]]
File:PLACEHOLDER2.png|[[NRG]]
File:PLACEHOLDER2.png|[[Fasttrack]]
File:PLACEHOLDER2.png|[[Clockwork]]
File:PLACEHOLDER2.png|[[Chamalien]]
File:PLACEHOLDER2.png|[[Shocksquatch]] <br><small>(Introduced in ''[[Ben 10/Generator Rex: Heroes United|Heroes United]]'')</small>
File:PLACEHOLDER2.png|[[Eatle]]
File:PLACEHOLDER2.png|[[Juryrigg]]
</gallery></center>
{{-}}
{{:Transformations/Prime/trixov}}
== Introduced in [[Ben 10: Omniverse]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Feedback]]
File:PLACEHOLDER2.png|[[Bloxx]]
File:PLACEHOLDER2.png|[[Gravattack]]
File:PLACEHOLDER2.png|[[Crashhopper]]
File:PLACEHOLDER2.png|[[Ball Weevil]]
File:PLACEHOLDER2.png|[[Walkatrout]]
File:PLACEHOLDER2.png|[[Pesky Dust]]
File:PLACEHOLDER2.png|[[Mole-Stache]]
File:PLACEHOLDER2.png|[[The Worst]]
File:PLACEHOLDER2.png|[[Kickin Hawk]]
File:PLACEHOLDER2.png|[[Astrodactyl]]
File:PLACEHOLDER2.png|[[Toepick]]
File:PLACEHOLDER2.png|[[Bullfrag]]
File:PLACEHOLDER2.png|[[Atomix]]
File:PLACEHOLDER2.png|[[Gutrot]]
File:PLACEHOLDER2.png|[[Whampire]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
{{-}}
d7cbfcea43930ffeab5a5d343d97aef6f9371755
1035
1031
2020-06-06T05:20:16Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
__TOC__
{{-}}
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
{{:Transformations/Prime/trixos}}
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Perk)</small>
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]] <br><small>(Introduced in ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'')</small>
File:PLACEHOLDER2.png|[[Buzzshock]] <br><small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|[[Spitter]] <br><small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Arctiguana]] <br><small>(First used by Ben 10,000)</small>
</gallery></center>
{{-}}
== Introduced in [[Ben 10: Alien Force]] ==
{{:Transformations/Prime/trixuaf}}
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Murk)</small>
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|[[Nanomech]] <br><small>(Introduced in ''[[Ben 10: Alien Swarm|Alien Swarm]]'')</small>
File:PLACEHOLDER2.png|[[Rocks]] <br><small>(Introduced in ''[[Power of the Omnitrix]]'' stage play)</small>
File:PLACEHOLDER2.png|[[Squidstrictor]] <br><small>(Introduced in ''Power of the Omnitrix'' stage play)</small>
</gallery></center>
{{-}}
== Introduced in [[Ben 10: Ultimate Alien]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Water Hazard]]
File:PLACEHOLDER2.png|[[AmpFibian]]
File:PLACEHOLDER2.png|[[Armodrillo]]
File:PLACEHOLDER2.png|[[Terraspin]]
File:PLACEHOLDER2.png|[[NRG]]
File:PLACEHOLDER2.png|[[Fasttrack]]
File:PLACEHOLDER2.png|[[Clockwork]]
File:PLACEHOLDER2.png|[[Chamalien]]
File:PLACEHOLDER2.png|[[Shocksquatch]] <br><small>(Introduced in ''[[Ben 10/Generator Rex: Heroes United|Heroes United]]'')</small>
File:PLACEHOLDER2.png|[[Eatle]]
File:PLACEHOLDER2.png|[[Juryrigg]]
</gallery></center>
{{-}}
== Introduced in [[Ben 10: Omniverse]] ==
{{:Transformations/Prime/trixov}}
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Feedback]]
File:PLACEHOLDER2.png|[[Bloxx]]
File:PLACEHOLDER2.png|[[Gravattack]]
File:PLACEHOLDER2.png|[[Crashhopper]]
File:PLACEHOLDER2.png|[[Ball Weevil]]
File:PLACEHOLDER2.png|[[Walkatrout]]
File:PLACEHOLDER2.png|[[Pesky Dust]]
File:PLACEHOLDER2.png|[[Mole-Stache]]
File:PLACEHOLDER2.png|[[The Worst]]
File:PLACEHOLDER2.png|[[Kickin Hawk]]
File:PLACEHOLDER2.png|[[Astrodactyl]]
File:PLACEHOLDER2.png|[[Toepick]]
File:PLACEHOLDER2.png|[[Bullfrag]]
File:PLACEHOLDER2.png|[[Atomix]]
File:PLACEHOLDER2.png|[[Gutrot]]
File:PLACEHOLDER2.png|[[Whampire]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
{{-}}
e48dccd46a722c67f52f27e95bf506b559771656
1042
1035
2020-06-06T08:40:09Z
Carth
30634784
/* Introduced in Ben 10: Alien Force */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
__TOC__
{{-}}
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
{{:Transformations/Prime/trixos}}
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Perk)</small>
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]] <br><small>(Introduced in ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'')</small>
File:PLACEHOLDER2.png|[[Buzzshock]] <br><small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|[[Spitter]] <br><small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Arctiguana]] <br><small>(First used by Ben 10,000)</small>
</gallery></center>
{{-}}
== Introduced in [[Ben 10: Alien Force]] ==
{{:Transformations/Prime/trixuaf}}
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Murk)</small>
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|[[Nanomech]] <br><small>(Introduced in ''[[Ben 10: Alien Swarm|Alien Swarm]]'')</small>
</gallery></center>
{{-}}
== Introduced in [[Ben 10: Ultimate Alien]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Water Hazard]]
File:PLACEHOLDER2.png|[[AmpFibian]]
File:PLACEHOLDER2.png|[[Armodrillo]]
File:PLACEHOLDER2.png|[[Terraspin]]
File:PLACEHOLDER2.png|[[NRG]]
File:PLACEHOLDER2.png|[[Fasttrack]]
File:PLACEHOLDER2.png|[[Clockwork]]
File:PLACEHOLDER2.png|[[Chamalien]]
File:PLACEHOLDER2.png|[[Shocksquatch]] <br><small>(Introduced in ''[[Ben 10/Generator Rex: Heroes United|Heroes United]]'')</small>
File:PLACEHOLDER2.png|[[Eatle]]
File:PLACEHOLDER2.png|[[Juryrigg]]
</gallery></center>
{{-}}
== Introduced in [[Ben 10: Omniverse]] ==
{{:Transformations/Prime/trixov}}
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Feedback]]
File:PLACEHOLDER2.png|[[Bloxx]]
File:PLACEHOLDER2.png|[[Gravattack]]
File:PLACEHOLDER2.png|[[Crashhopper]]
File:PLACEHOLDER2.png|[[Ball Weevil]]
File:PLACEHOLDER2.png|[[Walkatrout]]
File:PLACEHOLDER2.png|[[Pesky Dust]]
File:PLACEHOLDER2.png|[[Mole-Stache]]
File:PLACEHOLDER2.png|[[The Worst]]
File:PLACEHOLDER2.png|[[Kickin Hawk]]
File:PLACEHOLDER2.png|[[Astrodactyl]]
File:PLACEHOLDER2.png|[[Toepick]]
File:PLACEHOLDER2.png|[[Bullfrag]]
File:PLACEHOLDER2.png|[[Atomix]]
File:PLACEHOLDER2.png|[[Gutrot]]
File:PLACEHOLDER2.png|[[Whampire]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
{{-}}
3c9cf1eb16ac296ce49446c8229952b11f6c7172
1044
1042
2020-06-06T15:10:30Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
{{tabs|{{tab|trixos}}{{tab|trixuaf}}{{tab|trixov}}}}
__TOC__
{{-}}
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
{{:Transformations/Prime/trixos}}
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Perk)</small>
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]] <br><small>(Introduced in ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'')</small>
File:PLACEHOLDER2.png|[[Buzzshock]] <br><small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|[[Spitter]] <br><small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Arctiguana]] <br><small>(First used by Ben 10,000)</small>
</gallery></center>
{{-}}
== Introduced in [[Ben 10: Alien Force]] ==
{{:Transformations/Prime/trixuaf}}
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Murk)</small>
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|[[Nanomech]] <br><small>(Introduced in ''[[Ben 10: Alien Swarm|Alien Swarm]]'')</small>
</gallery></center>
{{-}}
== Introduced in [[Ben 10: Ultimate Alien]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Water Hazard]]
File:PLACEHOLDER2.png|[[AmpFibian]]
File:PLACEHOLDER2.png|[[Armodrillo]]
File:PLACEHOLDER2.png|[[Terraspin]]
File:PLACEHOLDER2.png|[[NRG]]
File:PLACEHOLDER2.png|[[Fasttrack]]
File:PLACEHOLDER2.png|[[Clockwork]]
File:PLACEHOLDER2.png|[[Chamalien]]
File:PLACEHOLDER2.png|[[Shocksquatch]] <br><small>(Introduced in ''[[Ben 10/Generator Rex: Heroes United|Heroes United]]'')</small>
File:PLACEHOLDER2.png|[[Eatle]]
File:PLACEHOLDER2.png|[[Juryrigg]]
</gallery></center>
{{-}}
== Introduced in [[Ben 10: Omniverse]] ==
{{:Transformations/Prime/trixov}}
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Feedback]]
File:PLACEHOLDER2.png|[[Bloxx]]
File:PLACEHOLDER2.png|[[Gravattack]]
File:PLACEHOLDER2.png|[[Crashhopper]]
File:PLACEHOLDER2.png|[[Ball Weevil]]
File:PLACEHOLDER2.png|[[Walkatrout]]
File:PLACEHOLDER2.png|[[Pesky Dust]]
File:PLACEHOLDER2.png|[[Mole-Stache]]
File:PLACEHOLDER2.png|[[The Worst]]
File:PLACEHOLDER2.png|[[Kickin Hawk]]
File:PLACEHOLDER2.png|[[Astrodactyl]]
File:PLACEHOLDER2.png|[[Toepick]]
File:PLACEHOLDER2.png|[[Bullfrag]]
File:PLACEHOLDER2.png|[[Atomix]]
File:PLACEHOLDER2.png|[[Gutrot]]
File:PLACEHOLDER2.png|[[Whampire]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
{{-}}
740ed59a37421706c5e98c5fbf784550273ccfea
1045
1044
2020-06-06T15:10:58Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
__TOC__
{{-}}
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
{{:Transformations/Prime/trixos}}
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Perk)</small>
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]] <br><small>(Introduced in ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'')</small>
File:PLACEHOLDER2.png|[[Buzzshock]] <br><small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|[[Spitter]] <br><small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Arctiguana]] <br><small>(First used by Ben 10,000)</small>
</gallery></center>
{{-}}
== Introduced in [[Ben 10: Alien Force]] ==
{{:Transformations/Prime/trixuaf}}
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Murk)</small>
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|[[Nanomech]] <br><small>(Introduced in ''[[Ben 10: Alien Swarm|Alien Swarm]]'')</small>
</gallery></center>
{{-}}
== Introduced in [[Ben 10: Ultimate Alien]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Water Hazard]]
File:PLACEHOLDER2.png|[[AmpFibian]]
File:PLACEHOLDER2.png|[[Armodrillo]]
File:PLACEHOLDER2.png|[[Terraspin]]
File:PLACEHOLDER2.png|[[NRG]]
File:PLACEHOLDER2.png|[[Fasttrack]]
File:PLACEHOLDER2.png|[[Clockwork]]
File:PLACEHOLDER2.png|[[Chamalien]]
File:PLACEHOLDER2.png|[[Shocksquatch]] <br><small>(Introduced in ''[[Ben 10/Generator Rex: Heroes United|Heroes United]]'')</small>
File:PLACEHOLDER2.png|[[Eatle]]
File:PLACEHOLDER2.png|[[Juryrigg]]
</gallery></center>
{{-}}
== Introduced in [[Ben 10: Omniverse]] ==
{{:Transformations/Prime/trixov}}
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Feedback]]
File:PLACEHOLDER2.png|[[Bloxx]]
File:PLACEHOLDER2.png|[[Gravattack]]
File:PLACEHOLDER2.png|[[Crashhopper]]
File:PLACEHOLDER2.png|[[Ball Weevil]]
File:PLACEHOLDER2.png|[[Walkatrout]]
File:PLACEHOLDER2.png|[[Pesky Dust]]
File:PLACEHOLDER2.png|[[Mole-Stache]]
File:PLACEHOLDER2.png|[[The Worst]]
File:PLACEHOLDER2.png|[[Kickin Hawk]]
File:PLACEHOLDER2.png|[[Astrodactyl]]
File:PLACEHOLDER2.png|[[Toepick]]
File:PLACEHOLDER2.png|[[Bullfrag]]
File:PLACEHOLDER2.png|[[Atomix]]
File:PLACEHOLDER2.png|[[Gutrot]]
File:PLACEHOLDER2.png|[[Whampire]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
{{-}}
5ab5c30964017085aa7b261623a08ed9e471630f
Transformations/Prime/trixos
0
278
1032
2020-06-06T05:18:41Z
Jaswacker
30585766
Created page with "<div id="transformation-slideshow"> <gallery mode="slideshow"> Image:heatblast_silh.png|﹒|link=[[Heatblast (Prime)]] Image:wildmutt_silh.png|﹒|link=[[Wildmutt]] Image:diam..."
wikitext
text/x-wiki
<div id="transformation-slideshow">
<gallery mode="slideshow">
Image:heatblast_silh.png|﹒|link=[[Heatblast (Prime)]]
Image:wildmutt_silh.png|﹒|link=[[Wildmutt]]
Image:diamondhead_silh.png|﹒|link=[[Diamondhead (Prime)]]
Image:xlr8_silh.png|﹒|link=[[XLR8 (Prime)]]
Image:greymatter_silh.png|﹒|link=[[Grey Matter (Prime)]]
Image:fourarms_silh.png|﹒|link=[[Four Arms (Prime)]]
Image:stinkfly_silh.png|﹒|link=[[Stinkfly (Prime)]]
Image:ripjaws_silh.png|﹒|link=[[Ripjaws]]
Image:upgrade_silh.png|﹒|link=[[Upgrade (Prime)]]
Image:ghostfreak_silh.png|﹒|link=[[Ghostfreak]]
Image:cannonbolt_silh.png|﹒|link=[[Canonbolt (Prime)]]
Image:wildvine_silh.png|﹒|link=[[Wildvine (Prime)]]
Image:blitzwolfer_silh.png|﹒|link=[[Blitzwolfer]]
Image:snareoh_silh.png|﹒|link=[[Snare-oh]]
Image:frankenstrike_silh.png|﹒|link=[[Frankenstrike]]
Image:upchuck_silh.png|﹒|link=[[Upchuck]]
Image:ditto_silh.png|﹒|link=[[Ditto]]
Image:eyeguy_silh.png|﹒|link=[[Eye Guy]]
Image:waybig_silh.png|﹒|link=[[Way Big]]
Image:buzzshock_silh.png|﹒|link=[[Buzzshock]]
Image:spitter_silh.png|﹒|link=[[Spitter]]
Image:arctiguana_silh.png|﹒|link=[[Arctiguana]]
</gallery></div>
968952c201181d24d8b717f0270d264e6af315fc
Transformations/Prime/trixuaf
0
279
1033
2020-06-06T05:18:56Z
Jaswacker
30585766
Created page with "<div id="transformation2-slideshow"> <gallery mode="slideshow"> Image:swampfire_hol.png|﹒|link=[[Swampfire]] Image:echoecho_hol.png|﹒|link=[[Echo Echo]] Image:humungousaur..."
wikitext
text/x-wiki
<div id="transformation2-slideshow">
<gallery mode="slideshow">
Image:swampfire_hol.png|﹒|link=[[Swampfire]]
Image:echoecho_hol.png|﹒|link=[[Echo Echo]]
Image:humungousaur_hol.png|﹒|link=[[Humungousaur (Prime)]]
</gallery></div>
c5e005d5fb59fe55b41333e4128782eea765efc5
1036
1033
2020-06-06T05:31:51Z
Jaswacker
30585766
wikitext
text/x-wiki
<div id="transformation2-slideshow">
<gallery mode="slideshow">
Image:swampfire_holo.png|﹒|link=[[Swampfire]]
Image:echoecho_holo.png|﹒|link=[[Echo Echo]]
Image:humungousaur_holo.png|﹒|link=[[Humungousaur (Prime)]]
Image:jetray_holo.png|﹒|link=[[Jetray (Prime)]]
Image:bigchill_holo.png|﹒|link=[[Big Chill]]
Image:chromastone_holo.png|﹒|link=[[Chromastone]]
Image:brainstorm_holo.png|﹒|link=[[Brainstorm]]
Image:spidermonkey_holo.png|﹒|link=[[Spidermonkey]]
Image:goop_holo.png|﹒|link=[[Goop]]
Image:alienx_holo.png|﹒|link=[[Alien X]]
Image:lodestar_holo.png|﹒|link=[[Lodestar]]
Image:rath_holo.png|﹒|link=[[Rath]]
Image:nanomech_holo.png|﹒|link=[[Nanomech]]
Image:rocks_holo.png|﹒|link=[[Rocks]]
Image:squidstrictor_holo.png|﹒|link=[[Squidstrictor]]
</gallery></div>
244b6766256462a2a6805e5980c3c98ca7f8bcc0
1043
1036
2020-06-06T08:40:41Z
Carth
30634784
wikitext
text/x-wiki
<div id="transformation2-slideshow">
<gallery mode="slideshow">
Image:swampfire_holo.png|﹒|link=[[Swampfire]]
Image:echoecho_holo.png|﹒|link=[[Echo Echo]]
Image:humungousaur_holo.png|﹒|link=[[Humungousaur (Prime)]]
Image:jetray_holo.png|﹒|link=[[Jetray (Prime)]]
Image:bigchill_holo.png|﹒|link=[[Big Chill]]
Image:chromastone_holo.png|﹒|link=[[Chromastone]]
Image:brainstorm_holo.png|﹒|link=[[Brainstorm]]
Image:spidermonkey_holo.png|﹒|link=[[Spidermonkey]]
Image:goop_holo.png|﹒|link=[[Goop]]
Image:alienx_holo.png|﹒|link=[[Alien X]]
Image:lodestar_holo.png|﹒|link=[[Lodestar]]
Image:rath_holo.png|﹒|link=[[Rath]]
Image:nanomech_holo.png|﹒|link=[[Nanomech]]
</gallery></div>
6c63a028bf7ca8d8fe02bf55dda5e3fe1ab27850
Transformations/Prime/trixov
0
280
1034
2020-06-06T05:19:21Z
Jaswacker
30585766
Created page with "<div id="transformation3-slideshow"> <gallery mode="slideshow"> Image:bloxx_fac.png|﹒|link=[[Bloxx]] </gallery></div>"
wikitext
text/x-wiki
<div id="transformation3-slideshow">
<gallery mode="slideshow">
Image:bloxx_fac.png|﹒|link=[[Bloxx]]
</gallery></div>
2bd2b9182c680a88ad388cdb68b81dbb5a00c559
File:Humungousaur holo.png
6
281
1037
2020-06-06T05:34:16Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Swampfire holo.png
6
282
1038
2020-06-06T05:34:16Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Echoecho holo.png
6
283
1039
2020-06-06T05:34:16Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Trixuafsmall.png
6
284
1046
2020-06-06T17:04:24Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Ben 10 (2005)/Episodes
0
120
1048
471
2020-06-07T06:20:29Z
Carth
30634784
wikitext
text/x-wiki
== Season 1 ==
== Season 2 ==
== Season 3 ==
== Season 4 ==
== Movies ==
== Shorts ==
8546ead658e67d9ed6a2bbbda63d05411f2fea75
1049
1048
2020-06-07T06:31:33Z
Carth
30634784
/* Season 1 */
wikitext
text/x-wiki
== Season 1 ==
'''Season 1''' began with the episode,[[And Then There Were 10]], on December 27th 2005, during an event called '''Sneak Peek Week'''. Between December 26th and 29th, [[Cartoon Network]] debuted four shows that would be coming to the channel the following year. These included '''My Gym Partner's A Monkey''', '''Robotboy''', '''Zixx''', and of course, [[Ben 10 (2005)|Ben 10]].
The series went on to have a regular slot for new episodes on Saturday mornings, sometimes also being reran during the Cartoon Cartoon Fridays block in 2006. Season 1 concluded on March 25th, 2006 with the episode [[Secrets]].
== Season 2 ==
== Season 3 ==
== Season 4 ==
== Movies ==
== Shorts ==
dd4b484f0b7234bdfadf0559c7351ca9673a360a
1050
1049
2020-06-07T06:33:20Z
Carth
30634784
/* Season 1 */
wikitext
text/x-wiki
== Season 1 ==
'''Season 1''' began with the episode, [[And Then There Were 10]], on December 27th 2005, during an event called '''Sneak Peek Week'''. Between December 26th and 29th, [[Cartoon Network]] debuted four shows that would be coming to the channel the following year. These included '''My Gym Partner's A Monkey''', '''Robotboy''', '''Zixx''', and of course, [[Ben 10 (2005)|Ben 10]].
The series went on to have a regular slot for new episodes on Saturday mornings, sometimes also being reran during the Cartoon Cartoon Fridays block in 2006. Season 1 concluded on March 25th, 2006 with the episode [[Secrets]].
== Season 2 ==
== Season 3 ==
== Season 4 ==
== Movies ==
== Shorts ==
baf654038ba5c18bf9aa367043ddaa426fb345f7
1051
1050
2020-06-07T09:23:06Z
Carth
30634784
/* Season 4 */
wikitext
text/x-wiki
== Season 1 ==
'''Season 1''' began with the episode, [[And Then There Were 10]], on December 27th 2005, during an event called '''Sneak Peek Week'''. Between December 26th and 29th, [[Cartoon Network]] debuted four shows that would be coming to the channel the following year. These included '''My Gym Partner's A Monkey''', '''Robotboy''', '''Zixx''', and of course, [[Ben 10 (2005)|Ben 10]].
The series went on to have a regular slot for new episodes on Saturday mornings, sometimes also being reran during the Cartoon Cartoon Fridays block in 2006. Season 1 concluded on March 25th, 2006 with the episode [[Secrets]].
== Season 2 ==
== Season 3 ==
== Season 4 ==
While [[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]] comes first in production order, the fourth and final season of the original series started with the episode [[Perfect Day]], on July 14th 2007. Season 4's 10 singular episodes were then aired once a week, up until a several month hiatus between [[Ken 10]] and [[Ben 10 vs. the Negative 10: Part 1]] and [[Ben 10 vs. the Negative 10: Part 2|Part 2]]
The season's true ending came during the second week of April. [[Ben 10 Week (2008)|Ben 10 Week]], an event hosted in honor of the series, featuring special trivia popup versions of every past episode and both movies, [[I-10: The Ben 10 User Generated Experience|a special dedicated to the fans]], as well as the final episode of the series, [[Goodbye and Good Riddance]], which aired on April 15th, 2008.
With this event, we also saw little sneak peeks of [[Ben 10: Alien Force| what was to come for the franchise next...]]
== Movies ==
== Shorts ==
07c16715aa8092c986c231518a71e82d181265af
1052
1051
2020-06-07T09:24:26Z
Carth
30634784
/* Season 4 */
wikitext
text/x-wiki
== Season 1 ==
'''Season 1''' began with the episode, [[And Then There Were 10]], on December 27th 2005, during an event called '''Sneak Peek Week'''. Between December 26th and 29th, [[Cartoon Network]] debuted four shows that would be coming to the channel the following year. These included '''My Gym Partner's A Monkey''', '''Robotboy''', '''Zixx''', and of course, [[Ben 10 (2005)|Ben 10]].
The series went on to have a regular slot for new episodes on Saturday mornings, sometimes also being reran during the Cartoon Cartoon Fridays block in 2006. Season 1 concluded on March 25th, 2006 with the episode [[Secrets]].
== Season 2 ==
== Season 3 ==
== Season 4 ==
While [[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]] comes first in production order, the fourth and final season of the original series started with the episode [[Perfect Day]], on July 14th 2007. Season 4's 10 singular episodes were then aired once a week, up until a several month hiatus between [[Ken 10]] and [[Ben 10 vs. the Negative 10: Part 1]] and [[Ben 10 vs. the Negative 10: Part 2|Part 2]]. Two alternate versions of Secret of the Omnitrix were also being advertised to fill in some of the time.
The season's true ending came during the second week of April. [[Ben 10 Week (2008)|Ben 10 Week]], an event hosted in honor of the series, featuring special trivia popup versions of every past episode and both movies, [[I-10: The Ben 10 User Generated Experience|a special dedicated to the fans]], as well as the final episode of the series, [[Goodbye and Good Riddance]], which aired on April 15th, 2008.
With this event, we also saw little sneak peeks of [[Ben 10: Alien Force| what was to come for the franchise next...]]
== Movies ==
== Shorts ==
7f224da99426144a01bd668524426fa8afbc24f8
1053
1052
2020-06-07T09:45:19Z
Carth
30634784
/* Season 4 */
wikitext
text/x-wiki
== Season 1 ==
'''Season 1''' began with the episode, [[And Then There Were 10]], on December 27th 2005, during an event called '''Sneak Peek Week'''. Between December 26th and 29th, [[Cartoon Network]] debuted four shows that would be coming to the channel the following year. These included '''My Gym Partner's A Monkey''', '''Robotboy''', '''Zixx''', and of course, [[Ben 10 (2005)|Ben 10]].
The series went on to have a regular slot for new episodes on Saturday mornings, sometimes also being reran during the Cartoon Cartoon Fridays block in 2006. Season 1 concluded on March 25th, 2006 with the episode [[Secrets]].
== Season 2 ==
== Season 3 ==
== Season 4 ==
While [[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]] comes first in production order, the fourth and final season of the original series started with the episode [[Perfect Day]], on July 14th 2007. Season 4's 10 singular episodes were then aired once a week, up until a several month hiatus between [[Ken 10]] and [[Ben 10 vs. the Negative 10: Part 1]] and [[Ben 10 vs. the Negative 10: Part 2|Part 2]].
On August 10th, 2007, '''Secret of the Omnitrix''' aired on Cartoon Network for the first time. Two alternate versions of Secret of the Omnitrix were aired in sometime later. The live action movie [[Ben 10: Race Against Time]] premiered on November 21st 2007 during the hiatus.
The season's true ending came during the second week of April, 2008. [[Ben 10 Week (2008)|Ben 10 Week]], an event hosted in honor of the series, featuring special trivia popup versions of every past episode and both movies, [[I-10: The Ben 10 User Generated Experience|a special dedicated to the fans]], as well as the final episode of the series, [[Goodbye and Good Riddance]], which aired on April 15th, 2008.
With this event, we also saw little sneak peeks of [[Ben 10: Alien Force| what was to come for the franchise next...]]
== Movies ==
== Shorts ==
4c67a18385dcdd6c3a754ddccc1fefd2ed76b57d
Ben 10 (2005)/Episodes
0
120
1054
1053
2020-06-07T09:46:09Z
Carth
30634784
/* Season 4 */
wikitext
text/x-wiki
== Season 1 ==
'''Season 1''' began with the episode, [[And Then There Were 10]], on December 27th 2005, during an event called '''Sneak Peek Week'''. Between December 26th and 29th, [[Cartoon Network]] debuted four shows that would be coming to the channel the following year. These included '''My Gym Partner's A Monkey''', '''Robotboy''', '''Zixx''', and of course, [[Ben 10 (2005)|Ben 10]].
The series went on to have a regular slot for new episodes on Saturday mornings, sometimes also being reran during the Cartoon Cartoon Fridays block in 2006. Season 1 concluded on March 25th, 2006 with the episode [[Secrets]].
== Season 2 ==
== Season 3 ==
== Season 4 ==
While [[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]] comes first in production order, the fourth and final season of the original series started with the episode [[Perfect Day]], on July 14th 2007. Season 4's 10 singular episodes were then aired once a week, up until a several month hiatus between [[Ken 10]] and [[Ben 10 vs. the Negative 10: Part 1]] and [[Ben 10 vs. the Negative 10: Part 2|Part 2]].
On August 10th, 2007, '''Secret of the Omnitrix''' aired on Cartoon Network for the first time, and two alternate versions of the movie were aired in sometime later. The live action movie [[Ben 10: Race Against Time]] premiered on November 21st 2007 during the hiatus.
The season's true ending came during the second week of April, 2008. [[Ben 10 Week (2008)|Ben 10 Week]], an event hosted in honor of the series, featuring special trivia popup versions of every past episode and both movies, [[I-10: The Ben 10 User Generated Experience|a special dedicated to the fans]], as well as the final episode of the series, [[Goodbye and Good Riddance]], which aired on April 15th, 2008.
With this event, we also saw little sneak peeks of [[Ben 10: Alien Force| what was to come for the franchise next...]]
== Movies ==
== Shorts ==
e7179e939b428747cdc8a99a44708063e7f2fc7a
1055
1054
2020-06-07T09:52:14Z
Carth
30634784
/* Season 4 */
wikitext
text/x-wiki
== Season 1 ==
'''Season 1''' began with the episode, [[And Then There Were 10]], on December 27th 2005, during an event called '''Sneak Peek Week'''. Between December 26th and 29th, [[Cartoon Network]] debuted four shows that would be coming to the channel the following year. These included '''My Gym Partner's A Monkey''', '''Robotboy''', '''Zixx''', and of course, [[Ben 10 (2005)|Ben 10]].
The series went on to have a regular slot for new episodes on Saturday mornings, sometimes also being reran during the Cartoon Cartoon Fridays block in 2006. Season 1 concluded on March 25th, 2006 with the episode [[Secrets]].
== Season 2 ==
== Season 3 ==
== Season 4 ==
While [[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]] comes first in production order, the fourth and final season of the original series started with the episode [[Perfect Day]], on July 14th 2007. Season 4's 10 singular episodes were then aired once a week, up until a several month hiatus between [[Ken 10]] and [[Ben 10 vs. the Negative 10: Part 1]] and [[Ben 10 vs. the Negative 10: Part 2|Part 2]].
On August 10th, 2007, '''Secret of the Omnitrix''' aired on Cartoon Network for the first time, and two alternate versions of the movie were aired in sometime later. Ben 10's first multiplatform video game, [[Ben 10: Protector of Earth|Protector of Earth]] released on October 30th, and the live action movie [[Ben 10: Race Against Time]] premiered on November 21st 2007 during the hiatus.
The season's true ending came during the second week of April, 2008. [[Ben 10 Week (2008)|Ben 10 Week]], an event hosted in honor of the series, featuring special trivia popup versions of every past episode and both movies, [[I-10: The Ben 10 User Generated Experience|a special dedicated to the fans]], as well as the final episode of the series, [[Goodbye and Good Riddance]], which aired on April 15th, 2008.
With this event, we also saw little sneak peeks of [[Ben 10: Alien Force| what was to come for the franchise next...]]
== Movies ==
== Shorts ==
d9537e81dac6421c3ee0a2065ce99018e02d094e
1056
1055
2020-06-07T10:19:33Z
Carth
30634784
/* Season 4 */
wikitext
text/x-wiki
== Season 1 ==
'''Season 1''' began with the episode, [[And Then There Were 10]], on December 27th 2005, during an event called '''Sneak Peek Week'''. Between December 26th and 29th, [[Cartoon Network]] debuted four shows that would be coming to the channel the following year. These included '''My Gym Partner's A Monkey''', '''Robotboy''', '''Zixx''', and of course, [[Ben 10 (2005)|Ben 10]].
The series went on to have a regular slot for new episodes on Saturday mornings, sometimes also being reran during the Cartoon Cartoon Fridays block in 2006. Season 1 concluded on March 25th, 2006 with the episode [[Secrets]].
== Season 2 ==
== Season 3 ==
== Season 4 ==
While [[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]] comes first in production order, the fourth and final season of the original series started with the episode [[Perfect Day]], on July 14th 2007. Season 4's 10 singular episodes were then aired once a week, up until a several month hiatus between [[Ken 10]] and [[Ben 10 vs. the Negative 10: Part 1]] and [[Ben 10 vs. the Negative 10: Part 2|Part 2]].
On August 10th, 2007, '''Secret of the Omnitrix''' aired on Cartoon Network for the first time, and two alternate versions of the movie were aired the following September 1st (Gold Version) and October 20th (Blue Version). Ben 10's first multiplatform video game, [[Ben 10: Protector of Earth|Protector of Earth]] released on October 30th, and the live action movie [[Ben 10: Race Against Time]] premiered on November 21st 2007 during the hiatus.
The season's true ending came during the second week of April, 2008. [[Ben 10 Week (2008)|Ben 10 Week]], an event hosted in honor of the series, featuring special trivia popup versions of every past episode and both movies, [[I-10: The Ben 10 User Generated Experience|a special dedicated to the fans]], as well as the final episode of the series, [[Goodbye and Good Riddance]], which aired on April 15th, 2008.
With this event, we also saw little sneak peeks of [[Ben 10: Alien Force| what was to come for the franchise next...]]
== Movies ==
== Shorts ==
19205e937b476495fa391c15998acbb0b5160ab3
1057
1056
2020-06-07T10:20:07Z
Carth
30634784
/* Season 4 */
wikitext
text/x-wiki
== Season 1 ==
'''Season 1''' began with the episode, [[And Then There Were 10]], on December 27th 2005, during an event called '''Sneak Peek Week'''. Between December 26th and 29th, [[Cartoon Network]] debuted four shows that would be coming to the channel the following year. These included '''My Gym Partner's A Monkey''', '''Robotboy''', '''Zixx''', and of course, [[Ben 10 (2005)|Ben 10]].
The series went on to have a regular slot for new episodes on Saturday mornings, sometimes also being reran during the Cartoon Cartoon Fridays block in 2006. Season 1 concluded on March 25th, 2006 with the episode [[Secrets]].
== Season 2 ==
== Season 3 ==
== Season 4 ==
While [[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]] comes first in production order, the fourth and final season of the original series started with the episode [[Perfect Day]], on July 14th 2007. Season 4's 10 singular episodes were then aired once a week, up until a several month hiatus between [[Ken 10]] and [[Ben 10 vs. the Negative 10: Part 1]] and [[Ben 10 vs. the Negative 10: Part 2|Part 2]].
On August 10th, 2007, '''Secret of the Omnitrix''' aired on Cartoon Network for the first time, and two alternate versions of the movie were aired the following September 1st ''(Gold Version)'' and October 20th ''(Blue Version)''. Ben 10's first multiplatform video game, [[Ben 10: Protector of Earth|Protector of Earth]] released on October 30th, and the live action movie [[Ben 10: Race Against Time]] premiered on November 21st 2007 during the hiatus.
The season's true ending came during the second week of April, 2008. [[Ben 10 Week (2008)|Ben 10 Week]], an event hosted in honor of the series, featuring special trivia popup versions of every past episode and both movies, [[I-10: The Ben 10 User Generated Experience|a special dedicated to the fans]], as well as the final episode of the series, [[Goodbye and Good Riddance]], which aired on April 15th, 2008.
With this event, we also saw little sneak peeks of [[Ben 10: Alien Force| what was to come for the franchise next...]]
== Movies ==
== Shorts ==
1a094d6895d145bd87ef6c8df18682d9d0868164
Template:Charbox
10
123
1058
860
2020-06-11T16:51:01Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Name'''
|- style="vertical-align: top"
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{alias|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Aliases'''
{{!}} {{{alias}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Details'''
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Home World'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{residence|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Residence'''
{{!}} {{{residence}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliations|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliations'''
{{!}} {{{affiliations}}}
|}}
|- style="vertical-align: top"
{{#if:{{{relationships|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Relationships'''
{{!}} {{{relationships}}}
|}}
|- style="vertical-align: top"
{{#if:{{{equipment|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Equipment'''
{{!}} {{{equipment}}}
|}}
|- style="vertical-align: top"
{{#if:{{{status|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Status'''
{{!}} {{{status}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Production Information'''
|- style="vertical-align: top"
{{#if:{{{first|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''First Appearance'''
{{!}} style="width:17em" {{!}} {{{first|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{last|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Last Appearance'''
{{!}} {{{last}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|fullname=
|nickname=
|alias=
|species=
|homeworld=
|residence=
|affiliations=
|relationships=
|equipment=
|status=
|first=
|last=
}}
</pre>
[[Category:Templates]]</noinclude>
9ba57110ead6d8f4e8f18e52672cb32fbfaeca6c
Ben Tennyson (Prime)
0
93
1059
887
2020-06-11T16:51:23Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image={{tabs|{{tab2|OV|PLACEHOLDER2.png}}{{tab2|AF|PLACEHOLDER2.png}}{{tab2|OS|PLACEHOLDER2.png}}}}
|fullname=Benjamin Kirby Tennyson
|nickname=Ben
|alias=test
|species=Human
|homeworld=Earth
|residence=Bellwood
|affiliations=test
|relationships=test
|equipment=test
|status=Alive
|first=test
|last=test
}}
placeholder!!
3bb40c033f7beb5dbf871331fcb68e79c0f00eca
Template:Mediabox
10
246
1060
954
2020-06-11T17:13:15Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{broadcast|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Broadcast date'''
{{!}} style="width:17em" {{!}} {{{broadcast|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{release|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Release date''
{{!}} {{{release}}}
|}}
|- style="vertical-align: top"
{{#if:{{{series|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Series'''
{{!}} {{{series}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Credits'''
|- style="vertical-align: top"
{{#if:{{{writer|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Writer'''
{{!}} style="width:17em" {{!}} {{{writer|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{writers|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Writers'''
{{!}} {{{writers}}}
|}}
|- style="vertical-align: top"
{{#if:{{{writtenby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Written by'''
{{!}} {{{writtenby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{storyby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Story by'''
{{!}} {{{storyby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{scriptby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Script by'''
{{!}} {{{scriptby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{director|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Director'''
{{!}} {{{director}}}
|}}
|- style="vertical-align: top"
{{#if:{{{directors|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Directors'''
{{!}} {{{directors}}}
|}}
|- style="vertical-align: top"
{{#if:{{{directedby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Directed by'''
{{!}} {{{directedby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{producer|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Producer'''
{{!}} {{{producer}}}
|}}
|- style="vertical-align: top"
{{#if:{{{producers|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Producers'''
{{!}} {{{producers}}}
|}}
|- style="vertical-align: top"
{{#if:{{{execproducer|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Executive producer'''
{{!}} {{{execproducer}}}
|}}
|- style="vertical-align: top"
{{#if:{{{assocproducer|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Associate producer'''
{{!}} {{{assocproducer}}}
|}}
|- style="vertical-align: top"
{{#if:{{{illustratedby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Illustrated by'''
{{!}} {{{illustratedby}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Production Information'''
|- style="vertical-align: top"
{{#if:{{{prodcode|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Production code'''
{{!}} style="width:17em" {{!}} {{{prodcode|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{animstudio|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Animation studio'''
{{!}} {{{animstudio}}}
|}}
|- style="vertical-align: top"
{{#if:{{{postprod|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Post-production services'''
{{!}} {{{animstudio}}}
|}}
|- style="vertical-align: top"
{{#if:{{{publisher|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Publisher'''
{{!}} {{{publisher}}}
|}}
|}<noinclude>
<pre>
{{mediabox
|image=
|broadcast=
|release=
|series=
|writer= [Writer]
|writers= [Writers]
|writtenby= [Written by]
|storyby= [Story by]
|scriptby= [Script by]
|director= [Director]
|directors= [Directors]
|directedby= [Directed by]
|producer= [Producer]
|producers= [Producers]
|execproducer= [Executive producer]
|assocproducer= [Associate producer]
|illustratedby= [Illustrated by]
|prodcode= [Production code]
|animstudio= [Animation studio]
|postprod= [Post-production services]
|publisher= [Publisher]
}}
</pre>
[[Category:Templates]]</noinclude>
c19a646cc59a884c89b56f557e121161d809244b
1062
1060
2020-06-11T17:17:48Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px"
|align="center" colspan="2" | {{{image|}}}
|- style="vertical-align: top"
{{#if:{{{caption|}}}|{{!}}- style="vertical-align: top;"
{{!}} {{{caption}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{broadcast|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Broadcast date'''
{{!}} style="width:17em" {{!}} {{{broadcast|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{release|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Release date''
{{!}} {{{release}}}
|}}
|- style="vertical-align: top"
{{#if:{{{series|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Series'''
{{!}} {{{series}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Credits'''
|- style="vertical-align: top"
{{#if:{{{writer|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Writer'''
{{!}} style="width:17em" {{!}} {{{writer|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{writers|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Writers'''
{{!}} {{{writers}}}
|}}
|- style="vertical-align: top"
{{#if:{{{writtenby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Written by'''
{{!}} {{{writtenby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{storyby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Story by'''
{{!}} {{{storyby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{scriptby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Script by'''
{{!}} {{{scriptby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{director|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Director'''
{{!}} {{{director}}}
|}}
|- style="vertical-align: top"
{{#if:{{{directors|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Directors'''
{{!}} {{{directors}}}
|}}
|- style="vertical-align: top"
{{#if:{{{directedby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Directed by'''
{{!}} {{{directedby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{producer|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Producer'''
{{!}} {{{producer}}}
|}}
|- style="vertical-align: top"
{{#if:{{{producers|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Producers'''
{{!}} {{{producers}}}
|}}
|- style="vertical-align: top"
{{#if:{{{execproducer|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Executive producer'''
{{!}} {{{execproducer}}}
|}}
|- style="vertical-align: top"
{{#if:{{{assocproducer|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Associate producer'''
{{!}} {{{assocproducer}}}
|}}
|- style="vertical-align: top"
{{#if:{{{illustratedby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Illustrated by'''
{{!}} {{{illustratedby}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Production Information'''
|- style="vertical-align: top"
{{#if:{{{prodcode|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Production code'''
{{!}} style="width:17em" {{!}} {{{prodcode|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{animstudio|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Animation studio'''
{{!}} {{{animstudio}}}
|}}
|- style="vertical-align: top"
{{#if:{{{postprod|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Post-production services'''
{{!}} {{{animstudio}}}
|}}
|- style="vertical-align: top"
{{#if:{{{publisher|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Publisher'''
{{!}} {{{publisher}}}
|}}
|}<noinclude>
<pre>
{{mediabox
|image=
|caption=
|broadcast=
|release=
|series=
|writer= [Writer]
|writers= [Writers]
|writtenby= [Written by]
|storyby= [Story by]
|scriptby= [Script by]
|director= [Director]
|directors= [Directors]
|directedby= [Directed by]
|producer= [Producer]
|producers= [Producers]
|execproducer= [Executive producer]
|assocproducer= [Associate producer]
|illustratedby= [Illustrated by]
|prodcode= [Production code]
|animstudio= [Animation studio]
|postprod= [Post-production services]
|publisher= [Publisher]
}}
</pre>
[[Category:Templates]]</noinclude>
b9654f15a13697adb8ce03e331a0ed14a8c10595
1063
1062
2020-06-11T17:21:54Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px"
|align="center" colspan="2" | {{{image|}}}
|- style="vertical-align: top"
{{#if:{{{caption|}}}|{{!}}- style="margin: auto;"
{{!}} {{{caption}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{broadcast|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Broadcast date'''
{{!}} style="width:17em" {{!}} {{{broadcast|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{release|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Release date''
{{!}} {{{release}}}
|}}
|- style="vertical-align: top"
{{#if:{{{series|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Series'''
{{!}} {{{series}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Credits'''
|- style="vertical-align: top"
{{#if:{{{writer|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Writer'''
{{!}} style="width:17em" {{!}} {{{writer|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{writers|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Writers'''
{{!}} {{{writers}}}
|}}
|- style="vertical-align: top"
{{#if:{{{writtenby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Written by'''
{{!}} {{{writtenby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{storyby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Story by'''
{{!}} {{{storyby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{scriptby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Script by'''
{{!}} {{{scriptby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{director|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Director'''
{{!}} {{{director}}}
|}}
|- style="vertical-align: top"
{{#if:{{{directors|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Directors'''
{{!}} {{{directors}}}
|}}
|- style="vertical-align: top"
{{#if:{{{directedby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Directed by'''
{{!}} {{{directedby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{producer|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Producer'''
{{!}} {{{producer}}}
|}}
|- style="vertical-align: top"
{{#if:{{{producers|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Producers'''
{{!}} {{{producers}}}
|}}
|- style="vertical-align: top"
{{#if:{{{execproducer|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Executive producer'''
{{!}} {{{execproducer}}}
|}}
|- style="vertical-align: top"
{{#if:{{{assocproducer|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Associate producer'''
{{!}} {{{assocproducer}}}
|}}
|- style="vertical-align: top"
{{#if:{{{illustratedby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Illustrated by'''
{{!}} {{{illustratedby}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Production Information'''
|- style="vertical-align: top"
{{#if:{{{prodcode|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Production code'''
{{!}} style="width:17em" {{!}} {{{prodcode|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{animstudio|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Animation studio'''
{{!}} {{{animstudio}}}
|}}
|- style="vertical-align: top"
{{#if:{{{postprod|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Post-production services'''
{{!}} {{{animstudio}}}
|}}
|- style="vertical-align: top"
{{#if:{{{publisher|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Publisher'''
{{!}} {{{publisher}}}
|}}
|}<noinclude>
<pre>
{{mediabox
|image=
|caption=
|broadcast=
|release=
|series=
|writer= [Writer]
|writers= [Writers]
|writtenby= [Written by]
|storyby= [Story by]
|scriptby= [Script by]
|director= [Director]
|directors= [Directors]
|directedby= [Directed by]
|producer= [Producer]
|producers= [Producers]
|execproducer= [Executive producer]
|assocproducer= [Associate producer]
|illustratedby= [Illustrated by]
|prodcode= [Production code]
|animstudio= [Animation studio]
|postprod= [Post-production services]
|publisher= [Publisher]
}}
</pre>
[[Category:Templates]]</noinclude>
2f35542a322ebf27da0093fcfab8279f3d2eacff
1064
1063
2020-06-11T17:24:56Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px"
|align="center" colspan="2" | {{{image|}}}
|- style="vertical-align: top"
{{#if:{{{caption|}}}|{{!}}- style="vertical-align:top;" align="center;"
{{!}} {{{caption}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{broadcast|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Broadcast date'''
{{!}} style="width:17em" {{!}} {{{broadcast|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{release|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Release date''
{{!}} {{{release}}}
|}}
|- style="vertical-align: top"
{{#if:{{{series|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Series'''
{{!}} {{{series}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Credits'''
|- style="vertical-align: top"
{{#if:{{{writer|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Writer'''
{{!}} style="width:17em" {{!}} {{{writer|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{writers|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Writers'''
{{!}} {{{writers}}}
|}}
|- style="vertical-align: top"
{{#if:{{{writtenby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Written by'''
{{!}} {{{writtenby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{storyby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Story by'''
{{!}} {{{storyby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{scriptby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Script by'''
{{!}} {{{scriptby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{director|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Director'''
{{!}} {{{director}}}
|}}
|- style="vertical-align: top"
{{#if:{{{directors|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Directors'''
{{!}} {{{directors}}}
|}}
|- style="vertical-align: top"
{{#if:{{{directedby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Directed by'''
{{!}} {{{directedby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{producer|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Producer'''
{{!}} {{{producer}}}
|}}
|- style="vertical-align: top"
{{#if:{{{producers|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Producers'''
{{!}} {{{producers}}}
|}}
|- style="vertical-align: top"
{{#if:{{{execproducer|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Executive producer'''
{{!}} {{{execproducer}}}
|}}
|- style="vertical-align: top"
{{#if:{{{assocproducer|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Associate producer'''
{{!}} {{{assocproducer}}}
|}}
|- style="vertical-align: top"
{{#if:{{{illustratedby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Illustrated by'''
{{!}} {{{illustratedby}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Production Information'''
|- style="vertical-align: top"
{{#if:{{{prodcode|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Production code'''
{{!}} style="width:17em" {{!}} {{{prodcode|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{animstudio|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Animation studio'''
{{!}} {{{animstudio}}}
|}}
|- style="vertical-align: top"
{{#if:{{{postprod|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Post-production services'''
{{!}} {{{animstudio}}}
|}}
|- style="vertical-align: top"
{{#if:{{{publisher|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Publisher'''
{{!}} {{{publisher}}}
|}}
|}<noinclude>
<pre>
{{mediabox
|image=
|caption=
|broadcast=
|release=
|series=
|writer= [Writer]
|writers= [Writers]
|writtenby= [Written by]
|storyby= [Story by]
|scriptby= [Script by]
|director= [Director]
|directors= [Directors]
|directedby= [Directed by]
|producer= [Producer]
|producers= [Producers]
|execproducer= [Executive producer]
|assocproducer= [Associate producer]
|illustratedby= [Illustrated by]
|prodcode= [Production code]
|animstudio= [Animation studio]
|postprod= [Post-production services]
|publisher= [Publisher]
}}
</pre>
[[Category:Templates]]</noinclude>
19678dfbc69a3ccd55fb2d473890a6d5f8b1b1b1
1065
1064
2020-06-11T17:27:10Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px"
|align="center" colspan="2" | [[Image:{{{image|}}}|300px]]{{#if: {{{caption|}}} |<br>{{{caption|}}}}}}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{broadcast|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Broadcast date'''
{{!}} style="width:17em" {{!}} {{{broadcast|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{release|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Release date''
{{!}} {{{release}}}
|}}
|- style="vertical-align: top"
{{#if:{{{series|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Series'''
{{!}} {{{series}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Credits'''
|- style="vertical-align: top"
{{#if:{{{writer|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Writer'''
{{!}} style="width:17em" {{!}} {{{writer|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{writers|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Writers'''
{{!}} {{{writers}}}
|}}
|- style="vertical-align: top"
{{#if:{{{writtenby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Written by'''
{{!}} {{{writtenby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{storyby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Story by'''
{{!}} {{{storyby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{scriptby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Script by'''
{{!}} {{{scriptby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{director|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Director'''
{{!}} {{{director}}}
|}}
|- style="vertical-align: top"
{{#if:{{{directors|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Directors'''
{{!}} {{{directors}}}
|}}
|- style="vertical-align: top"
{{#if:{{{directedby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Directed by'''
{{!}} {{{directedby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{producer|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Producer'''
{{!}} {{{producer}}}
|}}
|- style="vertical-align: top"
{{#if:{{{producers|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Producers'''
{{!}} {{{producers}}}
|}}
|- style="vertical-align: top"
{{#if:{{{execproducer|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Executive producer'''
{{!}} {{{execproducer}}}
|}}
|- style="vertical-align: top"
{{#if:{{{assocproducer|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Associate producer'''
{{!}} {{{assocproducer}}}
|}}
|- style="vertical-align: top"
{{#if:{{{illustratedby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Illustrated by'''
{{!}} {{{illustratedby}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Production Information'''
|- style="vertical-align: top"
{{#if:{{{prodcode|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Production code'''
{{!}} style="width:17em" {{!}} {{{prodcode|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{animstudio|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Animation studio'''
{{!}} {{{animstudio}}}
|}}
|- style="vertical-align: top"
{{#if:{{{postprod|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Post-production services'''
{{!}} {{{animstudio}}}
|}}
|- style="vertical-align: top"
{{#if:{{{publisher|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Publisher'''
{{!}} {{{publisher}}}
|}}
|}<noinclude>
<pre>
{{mediabox
|image=
|caption=
|broadcast=
|release=
|series=
|writer= [Writer]
|writers= [Writers]
|writtenby= [Written by]
|storyby= [Story by]
|scriptby= [Script by]
|director= [Director]
|directors= [Directors]
|directedby= [Directed by]
|producer= [Producer]
|producers= [Producers]
|execproducer= [Executive producer]
|assocproducer= [Associate producer]
|illustratedby= [Illustrated by]
|prodcode= [Production code]
|animstudio= [Animation studio]
|postprod= [Post-production services]
|publisher= [Publisher]
}}
</pre>
[[Category:Templates]]</noinclude>
6b0431a1b8f8efd4731818fa788862b310d97432
1067
1065
2020-06-11T17:30:41Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px"
|align="center" colspan="2" | [[Image:{{{image|}}}|300px]]{{#if: {{{caption|}}} |<br>{{{caption|}}}}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{broadcast|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Broadcast date'''
{{!}} style="width:17em" {{!}} {{{broadcast|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{release|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Release date''
{{!}} {{{release}}}
|}}
|- style="vertical-align: top"
{{#if:{{{series|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Series'''
{{!}} {{{series}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Credits'''
|- style="vertical-align: top"
{{#if:{{{writer|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Writer'''
{{!}} style="width:17em" {{!}} {{{writer|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{writers|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Writers'''
{{!}} {{{writers}}}
|}}
|- style="vertical-align: top"
{{#if:{{{writtenby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Written by'''
{{!}} {{{writtenby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{storyby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Story by'''
{{!}} {{{storyby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{scriptby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Script by'''
{{!}} {{{scriptby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{director|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Director'''
{{!}} {{{director}}}
|}}
|- style="vertical-align: top"
{{#if:{{{directors|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Directors'''
{{!}} {{{directors}}}
|}}
|- style="vertical-align: top"
{{#if:{{{directedby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Directed by'''
{{!}} {{{directedby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{producer|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Producer'''
{{!}} {{{producer}}}
|}}
|- style="vertical-align: top"
{{#if:{{{producers|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Producers'''
{{!}} {{{producers}}}
|}}
|- style="vertical-align: top"
{{#if:{{{execproducer|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Executive producer'''
{{!}} {{{execproducer}}}
|}}
|- style="vertical-align: top"
{{#if:{{{assocproducer|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Associate producer'''
{{!}} {{{assocproducer}}}
|}}
|- style="vertical-align: top"
{{#if:{{{illustratedby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Illustrated by'''
{{!}} {{{illustratedby}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Production Information'''
|- style="vertical-align: top"
{{#if:{{{prodcode|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Production code'''
{{!}} style="width:17em" {{!}} {{{prodcode|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{animstudio|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Animation studio'''
{{!}} {{{animstudio}}}
|}}
|- style="vertical-align: top"
{{#if:{{{postprod|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Post-production services'''
{{!}} {{{animstudio}}}
|}}
|- style="vertical-align: top"
{{#if:{{{publisher|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Publisher'''
{{!}} {{{publisher}}}
|}}
|}<noinclude>
<pre>
{{mediabox
|image=
|caption=
|broadcast=
|release=
|series=
|writer= [Writer]
|writers= [Writers]
|writtenby= [Written by]
|storyby= [Story by]
|scriptby= [Script by]
|director= [Director]
|directors= [Directors]
|directedby= [Directed by]
|producer= [Producer]
|producers= [Producers]
|execproducer= [Executive producer]
|assocproducer= [Associate producer]
|illustratedby= [Illustrated by]
|prodcode= [Production code]
|animstudio= [Animation studio]
|postprod= [Post-production services]
|publisher= [Publisher]
}}
</pre>
[[Category:Templates]]</noinclude>
da321e184cd189f410eea3faa95a890cdf344501
1068
1067
2020-06-11T17:34:26Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px"
|align="center" colspan="2" | [[Image:{{{image|}}}|300px]]{{#if: {{{caption|}}} |<br>{{{caption|}}}}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{broadcast|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Broadcast date'''
{{!}} style="width:17em" {{!}} {{{broadcast|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{release|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Release date''
{{!}} {{{release}}}
|}}
|- style="vertical-align: top"
{{#if:{{{series|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Series'''
{{!}} {{{series}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Credits'''
|- style="vertical-align: top"
{{#if:{{{writer|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Writer'''
{{!}} style="width:17em" {{!}} {{{writer|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{writers|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Writers'''
{{!}} {{{writers}}}
|}}
|- style="vertical-align: top"
{{#if:{{{writtenby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Written by'''
{{!}} {{{writtenby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{storyby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Story by'''
{{!}} {{{storyby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{scriptby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Script by'''
{{!}} {{{scriptby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{director|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Director'''
{{!}} {{{director}}}
|}}
|- style="vertical-align: top"
{{#if:{{{directors|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Directors'''
{{!}} {{{directors}}}
|}}
|- style="vertical-align: top"
{{#if:{{{directedby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Directed by'''
{{!}} {{{directedby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{producer|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Producer'''
{{!}} {{{producer}}}
|}}
|- style="vertical-align: top"
{{#if:{{{producers|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Producers'''
{{!}} {{{producers}}}
|}}
|- style="vertical-align: top"
{{#if:{{{execproducer|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Executive producer'''
{{!}} {{{execproducer}}}
|}}
|- style="vertical-align: top"
{{#if:{{{assocproducer|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Associate producer'''
{{!}} {{{assocproducer}}}
|}}
|- style="vertical-align: top"
{{#if:{{{illustratedby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Illustrated by'''
{{!}} {{{illustratedby}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Production Information'''
|- style="vertical-align: top"
{{#if:{{{prodcode|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Production code'''
{{!}} style="width:17em" {{!}} {{{prodcode|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{prodstudio|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Production studio'''
{{!}} {{{prodstudio}}}
|}}
|- style="vertical-align: top"
{{#if:{{{animstudio|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Animation studio'''
{{!}} {{{animstudio}}}
|}}
|- style="vertical-align: top"
{{#if:{{{postprod|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Post-production services'''
{{!}} {{{animstudio}}}
|}}
|- style="vertical-align: top"
{{#if:{{{publisher|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Publisher'''
{{!}} {{{publisher}}}
|}}
|}<noinclude>
<pre>
{{mediabox
|image=
|caption=
|broadcast=
|release=
|series=
|writer= [Writer]
|writers= [Writers]
|writtenby= [Written by]
|storyby= [Story by]
|scriptby= [Script by]
|director= [Director]
|directors= [Directors]
|directedby= [Directed by]
|producer= [Producer]
|producers= [Producers]
|execproducer= [Executive producer]
|assocproducer= [Associate producer]
|illustratedby= [Illustrated by]
|prodcode= [Production code]
|prodstudio= [Production studio]
|animstudio= [Animation studio]
|postprod= [Post-production services]
|publisher= [Publisher]
}}
</pre>
[[Category:Templates]]</noinclude>
78b391b4c1d7c96ec2aca503d30244cbf4111c80
1070
1068
2020-06-11T17:37:23Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px"
|align="center" colspan="2" | [[Image:{{{image|}}}|300px]]{{#if: {{{caption|}}} |<br>{{{caption|}}}}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{broadcast|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Broadcast date'''
{{!}} style="width:17em" {{!}} {{{broadcast|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{release|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Release date''
{{!}} {{{release}}}
|}}
|- style="vertical-align: top"
{{#if:{{{series|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Series'''
{{!}} {{{series}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Credits'''
|- style="vertical-align: top"
{{#if:{{{writer|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Writer'''
{{!}} style="width:17em" {{!}} {{{writer|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{writers|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Writers'''
{{!}} {{{writers}}}
|}}
|- style="vertical-align: top"
{{#if:{{{writtenby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Written by'''
{{!}} {{{writtenby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{storyby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Story by'''
{{!}} {{{storyby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{scriptby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Script by'''
{{!}} {{{scriptby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{director|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Director'''
{{!}} {{{director}}}
|}}
|- style="vertical-align: top"
{{#if:{{{directors|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Directors'''
{{!}} {{{directors}}}
|}}
|- style="vertical-align: top"
{{#if:{{{directedby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Directed by'''
{{!}} {{{directedby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{producer|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Producer'''
{{!}} {{{producer}}}
|}}
|- style="vertical-align: top"
{{#if:{{{producers|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Producers'''
{{!}} {{{producers}}}
|}}
|- style="vertical-align: top"
{{#if:{{{execproducer|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Executive producer'''
{{!}} {{{execproducer}}}
|}}
|- style="vertical-align: top"
{{#if:{{{assocproducer|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Associate producer'''
{{!}} {{{assocproducer}}}
|}}
|- style="vertical-align: top"
{{#if:{{{illustratedby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Illustrated by'''
{{!}} {{{illustratedby}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Production Information'''
|- style="vertical-align: top"
{{#if:{{{prodcode|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Production code'''
{{!}} style="width:17em" {{!}} {{{prodcode|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{prodstudio|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Production studio'''
{{!}} {{{prodstudio}}}
|}}
|- style="vertical-align: top"
{{#if:{{{animstudio|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Animation studio'''
{{!}} {{{animstudio}}}
|}}
|- style="vertical-align: top"
{{#if:{{{postprod|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Post-production services'''
{{!}} {{{postprod}}}
|}}
|- style="vertical-align: top"
{{#if:{{{publisher|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Publisher'''
{{!}} {{{publisher}}}
|}}
|}<noinclude>
<pre>
{{mediabox
|image=
|caption=
|broadcast=
|release=
|series=
|writer= [Writer]
|writers= [Writers]
|writtenby= [Written by]
|storyby= [Story by]
|scriptby= [Script by]
|director= [Director]
|directors= [Directors]
|directedby= [Directed by]
|producer= [Producer]
|producers= [Producers]
|execproducer= [Executive producer]
|assocproducer= [Associate producer]
|illustratedby= [Illustrated by]
|prodcode= [Production code]
|prodstudio= [Production studio]
|animstudio= [Animation studio]
|postprod= [Post-production services]
|publisher= [Publisher]
}}
</pre>
[[Category:Templates]]</noinclude>
2a21c365d488da3b22516b939e63fa2451ec7ac1
And Then There Were 10
0
247
1061
957
2020-06-11T17:17:40Z
Jaswacker
30585766
wikitext
text/x-wiki
{{mediabox
|image= [[File:And Then There Were 10.png|300px]]
|caption=''It started when an alien device did what it did...''
|broadcast= December 27th, 2005
|series= [[Ben 10 (2005)|Ben 10]]
|writer= Thomas Pugsley
|director= Scooter Tidwell
|prodcode= 101
|prodstudio= Cartoon Network Studios
|animstudio= Sunmin Image Pictures Co., Inc.
}}
4791a46f7193c42ac8bc3371d467038f1c762da8
1066
1061
2020-06-11T17:30:25Z
Jaswacker
30585766
wikitext
text/x-wiki
{{mediabox
|image=And Then There Were 10.png
|caption=''It started when an alien device did what it did...''
|broadcast= December 27th, 2005
|series= [[Ben 10 (2005)|Ben 10]]
|writer= Thomas Pugsley
|director= Scooter Tidwell
|prodcode= 101
|prodstudio= Cartoon Network Studios
|animstudio= Sunmin Image Pictures Co., Inc.
}}
c401fca3fcafa8ddba0b4b89058b6623a798c1b8
1069
1066
2020-06-11T17:36:41Z
Jaswacker
30585766
wikitext
text/x-wiki
{{mediabox
|image=And Then There Were 10.png
|caption=''It started when an alien device did what it did...''
|broadcast=December 27, 2005
|series=[[Ben 10 (2005)|Ben 10]]
|writer=Thomas Pugsley
|director=Scooter Tidwell
|producer=test
|prodcode=101
|prodstudio= Cartoon Network Studios
|animstudio= Sunmin Image Pictures Co., Inc.
|postprod=test
}}
83823ea996a91838f1769c5a3c51b023b095cc03
Template:Guide
10
285
1071
2020-06-11T18:45:10Z
Jaswacker
30585766
Created page with "{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c..."
wikitext
text/x-wiki
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Episode'''
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Overall'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:350px; text-align:center;" | '''Title'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:250px; text-align:center;" | '''Original airdate'''
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Prod. code'''
{{{1}}}
|}
f59e25e414845f5a5f07a5c4c04736916cdb2a8f
1072
1071
2020-06-11T18:45:58Z
Jaswacker
30585766
Jaswacker moved page [[Template:Mediaguide]] to [[Template:Guide]]
wikitext
text/x-wiki
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Episode'''
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Overall'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:350px; text-align:center;" | '''Title'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:250px; text-align:center;" | '''Original airdate'''
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Prod. code'''
{{{1}}}
|}
f59e25e414845f5a5f07a5c4c04736916cdb2a8f
1075
1072
2020-06-11T18:47:32Z
Jaswacker
30585766
wikitext
text/x-wiki
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Episode'''
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Overall'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:350px; text-align:center;" | '''Title'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:250px; text-align:center;" | '''Original airdate'''
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Prod. code'''
{{{1}}}
|}
<noinclude>[[Category:Templates]]</noinclude>
c39b01be5b7b0fdf7366413859a8aad5da8bc1fb
1077
1075
2020-06-11T18:51:36Z
Jaswacker
30585766
wikitext
text/x-wiki
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Episode'''
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Overall'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:350px; text-align:center;" | '''Title'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:250px; text-align:center;" | '''Original airdate'''
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Prod. code'''
{{{1}}}
{{{2}}}
|}
<noinclude>[[Category:Templates]]</noinclude>
6f4f06dc8a28688488abbf10049f2cb8c0fd5ea6
1081
1077
2020-06-11T18:55:30Z
Jaswacker
30585766
wikitext
text/x-wiki
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Episode'''
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Overall'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:350px; text-align:center;" | '''Title'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:250px; text-align:center;" | '''Original airdate'''
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Prod. code'''
{{{1}}}
|}
<noinclude>[[Category:Templates]]</noinclude>
c39b01be5b7b0fdf7366413859a8aad5da8bc1fb
Template:Mediaguide
10
286
1073
2020-06-11T18:45:58Z
Jaswacker
30585766
Jaswacker moved page [[Template:Mediaguide]] to [[Template:Guide]]
wikitext
text/x-wiki
#REDIRECT [[Template:Guide]]
1850337263977ef4f9c1c2600d7a9700c38d8f26
Template:Guide2
10
287
1074
2020-06-11T18:47:23Z
Jaswacker
30585766
Created page with "|- |align="left" rowspan="2" colspan="1" style="width:5px; text-align:center;" | {{{episode|}}} |align="left" rowspan="2" colspan="1" style="width:5px; text-align:center;" | {..."
wikitext
text/x-wiki
|-
|align="left" rowspan="2" colspan="1" style="width:5px; text-align:center;" | {{{episode|}}}
|align="left" rowspan="2" colspan="1" style="width:5px; text-align:center;" | {{{overall|}}}
|align="left" rowspan="2" colspan="2" style="width:350px; text-align:center;" | [[File:{{{titleimage|}}}|300px]]
|align="left" rowspan="2" colspan="2" style="width:250px; text-align:center;" | {{{airdate|}}}
|align="left" rowspan="2" colspan="1" style="width:5px; text-align:center;" | {{{prodcode|}}}
<noinclude>
<pre>
{{guide2
|episode=
|overall=
|titleimage=
|airdate=
|prodcode=
}}
</pre>
[[Category:Templates]]</noinclude>
037b31bb5035e433cc5fbb0f9aa467d4d44665eb
1076
1074
2020-06-11T18:49:00Z
Jaswacker
30585766
wikitext
text/x-wiki
|-
|align="left" rowspan="2" colspan="1" style="width:5px; text-align:center;" | {{{1}}}
|align="left" rowspan="2" colspan="1" style="width:5px; text-align:center;" | {{{2}}}
|align="left" rowspan="2" colspan="2" style="width:350px; text-align:center;" | [[File:{{{3}}}|300px]]
|align="left" rowspan="2" colspan="2" style="width:250px; text-align:center;" | {{{4}}}
|align="left" rowspan="2" colspan="1" style="width:5px; text-align:center;" | {{{5}}}
<noinclude>
<pre>
{{guide2|1|2|3|4|5}}
1 = episode number
2 = overall number
3 = title image
4 = original airdate
5 = production code
</pre>
[[Category:Templates]]</noinclude>
893c19cac43dbae9ac7ce4f6685bbb7b6bee75aa
1079
1076
2020-06-11T18:54:11Z
Jaswacker
30585766
wikitext
text/x-wiki
|-
|align="left" colspan="1" style="width:5px; text-align:center;" | {{{2}}}
|align="left" colspan="1" style="width:5px; text-align:center;" | {{{3}}}
|align="left" colspan="2" style="width:350px; text-align:center;" | [[File:{{{4}}}|300px]]
|align="left" colspan="2" style="width:250px; text-align:center;" | {{{5}}}
|align="left" colspan="1" style="width:5px; text-align:center;" | {{{6}}}
<noinclude>
<pre>
{{guide2|2|3|4|5|6}}
1 = ROW NUMBER
2 = episode number
3 = overall number
4 = title image
5 = original airdate
6 = production code
</pre>
[[Category:Templates]]</noinclude>
347d80dcca3d017ed9643f70cf0c3332965bc534
1080
1079
2020-06-11T18:54:59Z
Jaswacker
30585766
wikitext
text/x-wiki
|-
|align="left" colspan="1" style="width:5px; text-align:center;" | {{{1}}}
|align="left" colspan="1" style="width:5px; text-align:center;" | {{{2}}}
|align="left" colspan="2" style="width:350px; text-align:center;" | [[File:{{{3}}}|300px]]
|align="left" colspan="2" style="width:250px; text-align:center;" | {{{4}}}
|align="left" colspan="1" style="width:5px; text-align:center;" | {{{5}}}
<noinclude>
<pre>
{{guide2|1|2|3|4|5}}
1 = episode number
2 = overall number
3 = title image
4 = original airdate
5 = production code
</pre>
[[Category:Templates]]</noinclude>
00d655a0707928f2b0015f0e5203347181f261c9
1082
1080
2020-06-11T18:59:12Z
Jaswacker
30585766
wikitext
text/x-wiki
|-
|colspan="1" style="width:5px; text-align:center;" | {{{1}}}
|colspan="1" style="width:5px; text-align:center;" | {{{2}}}
|colspan="2" style="width:350px; text-align:center;" | [[File:{{{3}}}|300px]]
|colspan="2" style="width:250px; text-align:center;" | {{{4}}}
|colspan="1" style="width:5px; text-align:center;" | {{{5}}}
<noinclude>
<pre>
{{guide2|1|2|3|4|5}}
1 = episode number
2 = overall number
3 = title image
4 = original airdate
5 = production code
</pre>
[[Category:Templates]]</noinclude>
8a0de9c832246de093fc00ce133956a0846143dc
1084
1082
2020-06-11T19:01:02Z
Jaswacker
30585766
wikitext
text/x-wiki
|- style="border:1px solid #02b70c; color:#000; border-radius:20px 0px;"
|colspan="1" style="width:5px; text-align:center;" | {{{1}}}
|colspan="1" style="width:5px; text-align:center;" | {{{2}}}
|colspan="2" style="width:350px; text-align:center;" | [[File:{{{3}}}|300px]]
|colspan="2" style="width:250px; text-align:center;" | {{{4}}}
|colspan="1" style="width:5px; text-align:center;" | {{{5}}}
<noinclude>
<pre>
{{guide2|1|2|3|4|5}}
1 = episode number
2 = overall number
3 = title image
4 = original airdate
5 = production code
</pre>
[[Category:Templates]]</noinclude>
71be539e8dd3e55e9a480ce75bcffbdbb31e113b
1085
1084
2020-06-11T19:03:17Z
Jaswacker
30585766
wikitext
text/x-wiki
|- style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|colspan="1" style="width:5px; text-align:center;" | {{{1}}}
|colspan="1" style="width:5px; text-align:center;" | {{{2}}}
|colspan="2" style="width:350px; text-align:center;" | [[File:{{{3}}}|300px]]
|colspan="2" style="width:250px; text-align:center;" | {{{4}}}
|colspan="1" style="width:5px; text-align:center;" | {{{5}}}
<noinclude>
<pre>
{{guide2|1|2|3|4|5}}
1 = episode number
2 = overall number
3 = title image
4 = original airdate
5 = production code
</pre>
[[Category:Templates]]</noinclude>
8260e0b05f80a3af7b7387ffcb2e39932f52f695
1086
1085
2020-06-11T19:06:25Z
Jaswacker
30585766
wikitext
text/x-wiki
|-
|colspan="1" style="width:5px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;" | {{{1}}}
|colspan="1" style="width:5px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;" | {{{2}}}
|colspan="2" style="width:350px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;" | [[File:{{{3}}}|300px]]
|colspan="2" style="width:250px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;" | {{{4}}}
|colspan="1" style="width:5px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;" | {{{5}}}
<noinclude>
<pre>
{{guide2|1|2|3|4|5}}
1 = episode number
2 = overall number
3 = title image
4 = original airdate
5 = production code
</pre>
[[Category:Templates]]</noinclude>
1d091b93f86aef3cfece7c3b48bf24b85c4171ab
1087
1086
2020-06-11T19:07:08Z
Jaswacker
30585766
wikitext
text/x-wiki
|-
|colspan="1" style="width:5px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;" | {{{1}}}
|colspan="1" style="width:5px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:0px 20px; margin:auto;" | {{{2}}}
|colspan="2" style="width:350px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:0px 20px; margin:auto;" | [[File:{{{3}}}|300px]]
|colspan="2" style="width:250px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:0px 20px; margin:auto;" | {{{4}}}
|colspan="1" style="width:5px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:0px 20px; margin:auto;" | {{{5}}}
<noinclude>
<pre>
{{guide2|1|2|3|4|5}}
1 = episode number
2 = overall number
3 = title image
4 = original airdate
5 = production code
</pre>
[[Category:Templates]]</noinclude>
d19123c872c3695eb47344451eb4537997682486
1088
1087
2020-06-11T19:08:03Z
Jaswacker
30585766
wikitext
text/x-wiki
|-
|colspan="1" style="width:5px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10; margin:auto;" | {{{1}}}
|colspan="1" style="width:5px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{2}}}
|colspan="2" style="width:350px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | [[File:{{{3}}}|300px]]
|colspan="2" style="width:250px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{4}}}
|colspan="1" style="width:5px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{5}}}
<noinclude>
<pre>
{{guide2|1|2|3|4|5}}
1 = episode number
2 = overall number
3 = title image
4 = original airdate
5 = production code
</pre>
[[Category:Templates]]</noinclude>
19bd95389889f0f0429f339eb5b6cb144525a4f5
1089
1088
2020-06-11T19:08:37Z
Jaswacker
30585766
wikitext
text/x-wiki
|-
|colspan="1" style="width:5px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{1}}}
|colspan="1" style="width:5px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{2}}}
|colspan="2" style="width:350px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | [[File:{{{3}}}|300px]]
|colspan="2" style="width:250px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{4}}}
|colspan="1" style="width:5px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{5}}}
<noinclude>
<pre>
{{guide2|1|2|3|4|5}}
1 = episode number
2 = overall number
3 = title image
4 = original airdate
5 = production code
</pre>
[[Category:Templates]]</noinclude>
003c37b063bee5bdbe2bd85b03a49d39386a16e9
1090
1089
2020-06-11T19:10:56Z
Jaswacker
30585766
wikitext
text/x-wiki
|-
|colspan="1" style="width:5px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{1}}}
|colspan="1" style="width:5px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{2}}}
|colspan="2" style="width:350px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | [[File:{{{3}}}|300px|link=[[{{{4}}}]]]]
|colspan="2" style="width:250px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{5}}}
|colspan="1" style="width:5px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{6}}}
<noinclude>
<pre>
{{guide2|1|2|3|4|5|4}}
1 = episode number
2 = overall number
3 = title image
4 = page link
5 = original airdate
6 = production code
</pre>
[[Category:Templates]]</noinclude>
ebc9602176935f48fd0267026f1cdfdd56b27499
1094
1090
2020-06-11T19:13:10Z
Jaswacker
30585766
wikitext
text/x-wiki
|-
|colspan="1" style="width:5px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{1}}}
|colspan="1" style="width:5px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{2}}}
|colspan="2" style="width:350px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | [[File:{{{3}}}|350px|link=[[{{{4}}}]]]]
|colspan="2" style="width:250px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{5}}}
|colspan="1" style="width:5px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{6}}}
<noinclude>
<pre>
{{guide2|1|2|3|4|5|4}}
1 = episode number
2 = overall number
3 = title image
4 = page link
5 = original airdate
6 = production code
</pre>
[[Category:Templates]]</noinclude>
907a87b3477bbd4d6350cb24517128eecdd11d28
1095
1094
2020-06-11T19:14:07Z
Jaswacker
30585766
wikitext
text/x-wiki
|-
|colspan="1" style="width:5px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{1}}}
|colspan="1" style="width:5px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{2}}}
|colspan="2" style="width:350px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | Image:{{{3}}}|350px|link=[[{{{4}}}]]
|colspan="2" style="width:250px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{5}}}
|colspan="1" style="width:5px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{6}}}
<noinclude>
<pre>
{{guide2|1|2|3|4|5|4}}
1 = episode number
2 = overall number
3 = title image
4 = page link
5 = original airdate
6 = production code
</pre>
[[Category:Templates]]</noinclude>
c2c88972ddd5f8f102447b21b1f0f5d296ecc818
1097
1095
2020-06-11T19:15:21Z
Jaswacker
30585766
wikitext
text/x-wiki
|-
|colspan="1" style="width:5px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{1}}}
|colspan="1" style="width:5px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{2}}}
|colspan="2" style="width:350px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | [[File:{{{3}}}|350px|link=[[{{{4}}}]]]]
|colspan="2" style="width:250px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{5}}}
|colspan="1" style="width:5px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{6}}}
<noinclude>
<pre>
{{guide2|1|2|3|4|5|4}}
1 = episode number
2 = overall number
3 = title image
4 = page link
5 = original airdate
6 = production code
</pre>
[[Category:Templates]]</noinclude>
907a87b3477bbd4d6350cb24517128eecdd11d28
1099
1097
2020-06-11T19:16:31Z
Jaswacker
30585766
wikitext
text/x-wiki
|-
|colspan="1" style="width:5px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{1}}}
|colspan="1" style="width:5px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{2}}}
|colspan="2" style="width:350px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | [[:File:{{{3}}}|350px|{{{4}}}]]
|colspan="2" style="width:250px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{5}}}
|colspan="1" style="width:5px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{6}}}
<noinclude>
<pre>
{{guide2|1|2|3|4|5|4}}
1 = episode number
2 = overall number
3 = title image
4 = page link
5 = original airdate
6 = production code
</pre>
[[Category:Templates]]</noinclude>
96bdc28e4cec2cf0f8510978a0ef22c89ed9cf2b
1100
1099
2020-06-11T19:18:09Z
Jaswacker
30585766
wikitext
text/x-wiki
|-
|colspan="1" style="width:5px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{1}}}
|colspan="1" style="width:5px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{2}}}
|colspan="2" style="width:350px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | [[Image:{{{3}}}|350px|link={{{4}}}]]
|colspan="2" style="width:250px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{5}}}
|colspan="1" style="width:5px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{6}}}
<noinclude>
<pre>
{{guide2|1|2|3|4|5|4}}
1 = episode number
2 = overall number
3 = title image
4 = page link
5 = original airdate
6 = production code
</pre>
[[Category:Templates]]</noinclude>
05670089123f1c5199bbf1f2b329884c962e5630
1101
1100
2020-06-11T19:18:39Z
Jaswacker
30585766
wikitext
text/x-wiki
|-
|colspan="1" style="width:5px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{1}}}
|colspan="1" style="width:5px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{2}}}
|colspan="2" style="width:350px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | [[Image:{{{3}}}|350px|link={{{4}}}]]
|colspan="2" style="width:250px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{5}}}
|colspan="2" style="width:5px; text-align:center; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{6}}}
<noinclude>
<pre>
{{guide2|1|2|3|4|5|4}}
1 = episode number
2 = overall number
3 = title image
4 = page link
5 = original airdate
6 = production code
</pre>
[[Category:Templates]]</noinclude>
ec1bf95621d36c941c3ba4142253c045a058f1f6
1102
1101
2020-06-11T19:19:52Z
Jaswacker
30585766
wikitext
text/x-wiki
|-
|colspan="1" style="width:5px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{1}}}
|colspan="1" style="width:5px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{2}}}
|colspan="2" style="width:350px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | [[Image:{{{3}}}|350px|link={{{4}}}]]
|colspan="2" style="width:250px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{5}}}
|colspan="1" style="width:5px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" | {{{6}}}
<noinclude>
<pre>
{{guide2|1|2|3|4|5|4}}
1 = episode number
2 = overall number
3 = title image
4 = page link
5 = original airdate
6 = production code
</pre>
[[Category:Templates]]</noinclude>
80eadf7697f958803279c01852b830315a1dd128
1103
1102
2020-06-11T19:20:47Z
Jaswacker
30585766
wikitext
text/x-wiki
|-
|colspan="1" style="width:5px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" |{{{1}}}
|colspan="1" style="width:5px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" |{{{2}}}
|colspan="2" style="width:350px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" |[[Image:{{{3}}}|350px|link={{{4}}}]]
|colspan="2" style="width:250px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" |{{{5}}}
|colspan="1" style="width:5px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" |{{{6}}}
<noinclude>
<pre>
{{guide2|1|2|3|4|5|4}}
1 = episode number
2 = overall number
3 = title image
4 = page link
5 = original airdate
6 = production code
</pre>
[[Category:Templates]]</noinclude>
9cb3227b4371ebe06598a15b8c399f3592915244
Ben 10 (2005)
0
80
1078
486
2020-06-11T18:52:18Z
Jaswacker
30585766
wikitext
text/x-wiki
'''Ben 10''' ''(also known as '''Ben 10 Classic''')'' is an American animated television series created by Man of Action (a group consisting of Joe Casey, Joe Kelly, Duncan Rouleau, and Steven T. Seagle), and is the first installment of the Ben 10 franchise.
{{guide
|{{guide2|1|1|PLACEHOLDER2.png|December 27, 2005|101}}
|{{guide2|1|1|PLACEHOLDER2.png|December 27, 2005|101}}
}}
6b8472c3f4891d0f3bccbdd6615fd69f3ccb98f7
1083
1078
2020-06-11T18:59:17Z
Jaswacker
30585766
wikitext
text/x-wiki
'''Ben 10''' ''(also known as '''Ben 10 Classic''')'' is an American animated television series created by Man of Action (a group consisting of Joe Casey, Joe Kelly, Duncan Rouleau, and Steven T. Seagle), and is the first installment of the Ben 10 franchise.
{{guide
|{{guide2|1|1|PLACEHOLDER2.png|December 27, 2005|101}}
{{guide2|1|1|PLACEHOLDER2.png|December 27, 2005|101}}
}}
44f4ea89b6f54a13b04ab33360ee76b9ec63d31c
1091
1083
2020-06-11T19:11:15Z
Jaswacker
30585766
wikitext
text/x-wiki
'''Ben 10''' ''(also known as '''Ben 10 Classic''')'' is an American animated television series created by Man of Action (a group consisting of Joe Casey, Joe Kelly, Duncan Rouleau, and Steven T. Seagle), and is the first installment of the Ben 10 franchise.
{{guide
|{{guide2|1|1|PLACEHOLDER2.png|December 27, 2005|And Then There Were 10|101}}
{{guide2|1|1|PLACEHOLDER2.png|December 27, 2005|And Then There Were 10|101}}
}}
781eefcdb87cb3f4714c4f22c127dd5aa7679fc3
1092
1091
2020-06-11T19:11:31Z
Jaswacker
30585766
wikitext
text/x-wiki
'''Ben 10''' ''(also known as '''Ben 10 Classic''')'' is an American animated television series created by Man of Action (a group consisting of Joe Casey, Joe Kelly, Duncan Rouleau, and Steven T. Seagle), and is the first installment of the Ben 10 franchise.
{{guide|
{{guide2|1|1|PLACEHOLDER2.png|December 27, 2005|And Then There Were 10|101}}
{{guide2|1|1|PLACEHOLDER2.png|December 27, 2005|And Then There Were 10|101}}
}}
a19f50c32fda5885b823e2286b0da2e6559215ab
1093
1092
2020-06-11T19:12:38Z
Jaswacker
30585766
wikitext
text/x-wiki
'''Ben 10''' ''(also known as '''Ben 10 Classic''')'' is an American animated television series created by Man of Action (a group consisting of Joe Casey, Joe Kelly, Duncan Rouleau, and Steven T. Seagle), and is the first installment of the Ben 10 franchise.
{{guide|
{{guide2|1|1|And Then There Were 10.png|December 27, 2005|And Then There Were 10|101}}
{{guide2|1|1|PLACEHOLDER2.png|December 27, 2005|And Then There Were 10|101}}
}}
6d2a36e746cc5675fa7c928cd451327c5196f92a
1096
1093
2020-06-11T19:14:54Z
Jaswacker
30585766
wikitext
text/x-wiki
'''Ben 10''' ''(also known as '''Ben 10 Classic''')'' is an American animated television series created by Man of Action (a group consisting of Joe Casey, Joe Kelly, Duncan Rouleau, and Steven T. Seagle), and is the first installment of the Ben 10 franchise.
{{guide|
{{guide2|1|1|And Then There Were 10.png|And Then There Were 10|December 27, 2005|101}}
{{guide2|1|1|PLACEHOLDER2.png|And Then There Were 10|December 27, 2005|101}}
}}
2ca3bc71ccc63906f405f09976304d3d41c25312
1098
1096
2020-06-11T19:15:42Z
Jaswacker
30585766
wikitext
text/x-wiki
'''Ben 10''' ''(also known as '''Ben 10 Classic''')'' is an American animated television series created by Man of Action (a group consisting of Joe Casey, Joe Kelly, Duncan Rouleau, and Steven T. Seagle), and is the first installment of the Ben 10 franchise.
{{guide|
{{guide2|1|1|And Then There Were 10.png|And Then There Were 10|December 27, 2005|101}}
{{guide2|1|1|And Then There Were 10.png|And Then There Were 10|December 27, 2005|101}}
}}
f2059b5423c6798a950c34f7ef863c00ea6d0cbf
Template:Guide2
10
287
1104
1103
2020-06-11T19:21:55Z
Jaswacker
30585766
wikitext
text/x-wiki
|-
|colspan="1" style="width:5px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" |{{{1}}}
|colspan="1" style="width:5px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" |{{{2}}}
|colspan="2" style="width:350px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" |[[Image:{{{3}}}|350px|link={{{4}}}]]
|colspan="2" style="width:250px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px; margin:auto;" |{{{5}}}
|colspan="1" style="width:5px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |{{{6}}}
<noinclude>
<pre>
{{guide2|1|2|3|4|5|4}}
1 = episode number
2 = overall number
3 = title image
4 = page link
5 = original airdate
6 = production code
</pre>
[[Category:Templates]]</noinclude>
0369d252b2bc03435fe81ebf720c1cea74c44150
1105
1104
2020-06-11T19:22:29Z
Jaswacker
30585766
wikitext
text/x-wiki
|-
|colspan="1" style="width:5px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |{{{1}}}
|colspan="1" style="width:5px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |{{{2}}}
|colspan="2" style="width:350px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |[[Image:{{{3}}}|350px|link={{{4}}}]]
|colspan="2" style="width:250px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |{{{5}}}
|colspan="1" style="width:5px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |{{{6}}}
<noinclude>
<pre>
{{guide2|1|2|3|4|5|4}}
1 = episode number
2 = overall number
3 = title image
4 = page link
5 = original airdate
6 = production code
</pre>
[[Category:Templates]]</noinclude>
1d4f71f5bcfe2bac8dffb444f0754e4ab498b139
1108
1105
2020-06-11T19:24:10Z
Jaswacker
30585766
wikitext
text/x-wiki
|-
|colspan="1" style="width:5px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |{{{1}}}
|colspan="1" style="width:5px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |{{{2}}}
|colspan="2" style="width:350px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |[[Image:{{{3}}}|350px|link={{{4}}}]]
|colspan="2" style="width:250px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |{{{5}}}
|colspan="1" style="width:5px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |{{{6}}}
<noinclude>
<pre>
{{guide2|1|2|3|4|5|6}}
1 = episode number
2 = overall number
3 = title image
4 = page link
5 = original airdate
6 = production code
</pre>
[[Category:Templates]]</noinclude>
ff8e68674adb3486ea72626fabfde7b6e8f23c74
1109
1108
2020-06-11T19:25:54Z
Jaswacker
30585766
wikitext
text/x-wiki
|-
|colspan="1" style="width:5px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |{{{1}}}
|colspan="1" style="width:5px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |{{{2}}}
|colspan="2" style="width:350px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |[[Image:{{{3}}}|300px|link={{{4}}}]]
|colspan="2" style="width:250px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |{{{5}}}
|colspan="1" style="width:5px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |{{{6}}}
<noinclude>
<pre>
{{guide2|1|2|3|4|5|6}}
1 = episode number
2 = overall number
3 = title image
4 = page link
5 = original airdate
6 = production code
</pre>
[[Category:Templates]]</noinclude>
346c3af54f0c69c440c0c7016b2602d5a02ab70c
1110
1109
2020-06-11T19:29:51Z
Jaswacker
30585766
wikitext
text/x-wiki
|-
|colspan="1" style="width:5px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |{{{1}}}
|colspan="1" style="width:5px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |{{{2}}}
|colspan="2" style="width:350px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |[[Image:{{{3}}}|300px|link={{{4}}}]]
|colspan="2" style="width:250px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |{{{5}}}
|colspan="1" style="width:5px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |{{{6}}}<noinclude>
<pre>
{{guide2|1|2|3|4|5|6}}
1 = episode number
2 = overall number
3 = title image
4 = page link
5 = original airdate
6 = production code
</pre>
[[Category:Templates]]</noinclude>
88396a8483b5aec860efcdd35f600f4dd6c2e64b
Template:Guide
10
285
1106
1081
2020-06-11T19:23:22Z
Jaswacker
30585766
wikitext
text/x-wiki
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Episode'''
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Overall'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:350px; text-align:center;" | '''Title'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:200px; text-align:center;" | '''Original airdate'''
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Prod. code'''
{{{1}}}
|}
<noinclude>[[Category:Templates]]</noinclude>
9e13bca5ad2a693ab207b3176b148d7a1a20d34c
Ben 10 (2005)/Episodes
0
120
1107
1057
2020-06-11T19:23:57Z
Carth
30634784
/* Season 1 */
wikitext
text/x-wiki
== Season 1 ==
'''Season 1''' began with the episode, [[And Then There Were 10]], on December 27th 2005, during an event called '''Sneak Peek Week'''. Between December 26th and 29th, [[Cartoon Network]] debuted four shows that would be coming to the channel the following year. These included '''My Gym Partner's A Monkey''', '''Robotboy''', '''Zixx''', and of course, [[Ben 10 (2005)|Ben 10]].
The series went on to have a regular slot for new episodes on Saturday mornings, sometimes also being reran during the Cartoon Cartoon Fridays block in 2006. Season 1 concluded on March 25th, 2006 with the episode [[Secrets]].
{{guide|
{{guide2|1|1|And Then There Were 10.png|And Then There Were 10|December 27, 2005|101}}
{{guide2|1|1|And Then There Were 10.png|And Then There Were 10|December 27, 2005|101}}
}}
== Season 2 ==
== Season 3 ==
== Season 4 ==
While [[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]] comes first in production order, the fourth and final season of the original series started with the episode [[Perfect Day]], on July 14th 2007. Season 4's 10 singular episodes were then aired once a week, up until a several month hiatus between [[Ken 10]] and [[Ben 10 vs. the Negative 10: Part 1]] and [[Ben 10 vs. the Negative 10: Part 2|Part 2]].
On August 10th, 2007, '''Secret of the Omnitrix''' aired on Cartoon Network for the first time, and two alternate versions of the movie were aired the following September 1st ''(Gold Version)'' and October 20th ''(Blue Version)''. Ben 10's first multiplatform video game, [[Ben 10: Protector of Earth|Protector of Earth]] released on October 30th, and the live action movie [[Ben 10: Race Against Time]] premiered on November 21st 2007 during the hiatus.
The season's true ending came during the second week of April, 2008. [[Ben 10 Week (2008)|Ben 10 Week]], an event hosted in honor of the series, featuring special trivia popup versions of every past episode and both movies, [[I-10: The Ben 10 User Generated Experience|a special dedicated to the fans]], as well as the final episode of the series, [[Goodbye and Good Riddance]], which aired on April 15th, 2008.
With this event, we also saw little sneak peeks of [[Ben 10: Alien Force| what was to come for the franchise next...]]
== Movies ==
== Shorts ==
42fb1c706c7edcbcf7498d8ca689db8023246d38
1124
1107
2020-06-11T19:45:34Z
Carth
30634784
/* Season 1 */
wikitext
text/x-wiki
== Season 1 ==
'''Season 1''' began with the episode, [[And Then There Were 10]], on December 27th 2005, during an event called '''Sneak Peek Week'''. Between December 26th and 29th, [[Cartoon Network]] debuted four shows that would be coming to the channel the following year. These included '''My Gym Partner's A Monkey''', '''Robotboy''', '''Zixx''', and of course, [[Ben 10 (2005)|Ben 10]].
The series went on to have a regular slot for new episodes on Saturday mornings, sometimes also being reran during the Cartoon Cartoon Fridays block in 2006. Season 1 concluded on March 25th, 2006 with the episode [[Secrets]].
{{guide|
{{guide2|1|1|And Then There Were 10.png|And Then There Were 10|December 27, 2005|101}}
{{guide2|1|1|PLACEHOLDER2.png|Washington B.C.|January 14, 2006|102}}
{{guide2|1|1|PLACEHOLDER2.png|The Krakken|January 21, 2006|103}}
{{guide2|1|1|PLACEHOLDER2.png|Permanent Retirement|January 28, 2006|104}}
{{guide2|1|1|PLACEHOLDER2.png|Hunted|February 4, 2006|105}}
{{guide2|1|1|PLACEHOLDER2.png|Tourist Trap|February 11, 2006|106}}
{{guide2|1|1|PLACEHOLDER2.png|Kevin 11|February 18, 2006|107}}
{{guide2|1|1|PLACEHOLDER2.png|The Alliance|February 25, 2006|108}}
{{guide2|1|1|PLACEHOLDER2.png|Last Laugh|March 4, 2006|109}}
{{guide2|1|1|PLACEHOLDER2.png|Lucky Girl|March 11, 2006|110}}
{{guide2|1|1|PLACEHOLDER2.png|A Small Problem|March 18, 2006|111}}
{{guide2|1|1|PLACEHOLDER2.png|Side Effects|March 25, 2006|112}}
{{guide2|1|1|PLACEHOLDER2.png|Secrets|April 1, 2006|113}}
}}
== Season 2 ==
== Season 3 ==
== Season 4 ==
While [[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]] comes first in production order, the fourth and final season of the original series started with the episode [[Perfect Day]], on July 14th 2007. Season 4's 10 singular episodes were then aired once a week, up until a several month hiatus between [[Ken 10]] and [[Ben 10 vs. the Negative 10: Part 1]] and [[Ben 10 vs. the Negative 10: Part 2|Part 2]].
On August 10th, 2007, '''Secret of the Omnitrix''' aired on Cartoon Network for the first time, and two alternate versions of the movie were aired the following September 1st ''(Gold Version)'' and October 20th ''(Blue Version)''. Ben 10's first multiplatform video game, [[Ben 10: Protector of Earth|Protector of Earth]] released on October 30th, and the live action movie [[Ben 10: Race Against Time]] premiered on November 21st 2007 during the hiatus.
The season's true ending came during the second week of April, 2008. [[Ben 10 Week (2008)|Ben 10 Week]], an event hosted in honor of the series, featuring special trivia popup versions of every past episode and both movies, [[I-10: The Ben 10 User Generated Experience|a special dedicated to the fans]], as well as the final episode of the series, [[Goodbye and Good Riddance]], which aired on April 15th, 2008.
With this event, we also saw little sneak peeks of [[Ben 10: Alien Force| what was to come for the franchise next...]]
== Movies ==
== Shorts ==
478a06fb30988a73380d2fbd04851efed68d3c46
1125
1124
2020-06-11T19:46:26Z
Carth
30634784
/* Season 1 */
wikitext
text/x-wiki
== Season 1 ==
'''Season 1''' began with the episode, [[And Then There Were 10]], on December 27th 2005, during an event called '''Sneak Peek Week'''. Between December 26th and 29th, [[Cartoon Network]] debuted four shows that would be coming to the channel the following year. These included '''My Gym Partner's A Monkey''', '''Robotboy''', '''Zixx''', and of course, [[Ben 10 (2005)|Ben 10]].
The series went on to have a regular slot for new episodes on Saturday mornings, sometimes also being reran during the Cartoon Cartoon Fridays block in 2006. Season 1 concluded on April 1st, 2006 with the episode [[Secrets]].
{{guide|
{{guide2|1|1|And Then There Were 10.png|And Then There Were 10|December 27, 2005|101}}
{{guide2|1|1|PLACEHOLDER2.png|Washington B.C.|January 14, 2006|102}}
{{guide2|1|1|PLACEHOLDER2.png|The Krakken|January 21, 2006|103}}
{{guide2|1|1|PLACEHOLDER2.png|Permanent Retirement|January 28, 2006|104}}
{{guide2|1|1|PLACEHOLDER2.png|Hunted|February 4, 2006|105}}
{{guide2|1|1|PLACEHOLDER2.png|Tourist Trap|February 11, 2006|106}}
{{guide2|1|1|PLACEHOLDER2.png|Kevin 11|February 18, 2006|107}}
{{guide2|1|1|PLACEHOLDER2.png|The Alliance|February 25, 2006|108}}
{{guide2|1|1|PLACEHOLDER2.png|Last Laugh|March 4, 2006|109}}
{{guide2|1|1|PLACEHOLDER2.png|Lucky Girl|March 11, 2006|110}}
{{guide2|1|1|PLACEHOLDER2.png|A Small Problem|March 18, 2006|111}}
{{guide2|1|1|PLACEHOLDER2.png|Side Effects|March 25, 2006|112}}
{{guide2|1|1|PLACEHOLDER2.png|Secrets|April 1, 2006|113}}
}}
== Season 2 ==
== Season 3 ==
== Season 4 ==
While [[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]] comes first in production order, the fourth and final season of the original series started with the episode [[Perfect Day]], on July 14th 2007. Season 4's 10 singular episodes were then aired once a week, up until a several month hiatus between [[Ken 10]] and [[Ben 10 vs. the Negative 10: Part 1]] and [[Ben 10 vs. the Negative 10: Part 2|Part 2]].
On August 10th, 2007, '''Secret of the Omnitrix''' aired on Cartoon Network for the first time, and two alternate versions of the movie were aired the following September 1st ''(Gold Version)'' and October 20th ''(Blue Version)''. Ben 10's first multiplatform video game, [[Ben 10: Protector of Earth|Protector of Earth]] released on October 30th, and the live action movie [[Ben 10: Race Against Time]] premiered on November 21st 2007 during the hiatus.
The season's true ending came during the second week of April, 2008. [[Ben 10 Week (2008)|Ben 10 Week]], an event hosted in honor of the series, featuring special trivia popup versions of every past episode and both movies, [[I-10: The Ben 10 User Generated Experience|a special dedicated to the fans]], as well as the final episode of the series, [[Goodbye and Good Riddance]], which aired on April 15th, 2008.
With this event, we also saw little sneak peeks of [[Ben 10: Alien Force| what was to come for the franchise next...]]
== Movies ==
== Shorts ==
a39f1bc4d1988e14584b7a4efd5b08a725240af4
1126
1125
2020-06-11T22:28:46Z
Carth
30634784
/* Season 1 */
wikitext
text/x-wiki
== Season 1 ==
'''Season 1''' began with the episode, [[And Then There Were 10]], on December 27th 2005, during an event called '''Sneak Peek Week'''. Between December 26th and 29th, [[Cartoon Network]] debuted four shows that would be coming to the channel the following year. These included '''My Gym Partner's A Monkey''', '''Robotboy''', '''Zixx''', and of course, [[Ben 10 (2005)|Ben 10]].
The series went on to have a regular slot for new episodes on Saturday mornings, sometimes also being reran during the Cartoon Cartoon Fridays block in 2006. Season 1 concluded on April 1st, 2006 with the episode [[Secrets]].
{{guide|
{{guide2|1|1|And Then There Were 10.png|And Then There Were 10|December 27, 2005|101}}
{{guide2|1|2|PLACEHOLDER2.png|Washington B.C.|January 14, 2006|102}}
{{guide2|1|3|PLACEHOLDER2.png|The Krakken|January 21, 2006|103}}
{{guide2|1|4|PLACEHOLDER2.png|Permanent Retirement|January 28, 2006|104}}
{{guide2|1|5|PLACEHOLDER2.png|Hunted|February 4, 2006|105}}
{{guide2|1|6|PLACEHOLDER2.png|Tourist Trap|February 11, 2006|108}}
{{guide2|1|7|PLACEHOLDER2.png|Kevin 11|February 18, 2006|107}}
{{guide2|1|8|PLACEHOLDER2.png|The Alliance|February 25, 2006|109}}
{{guide2|1|9|PLACEHOLDER2.png|Last Laugh|March 4, 2006|106}}
{{guide2|1|10|PLACEHOLDER2.png|Lucky Girl|March 11, 2006|110}}
{{guide2|1|11|PLACEHOLDER2.png|A Small Problem|March 18, 2006|111}}
{{guide2|1|12|PLACEHOLDER2.png|Side Effects|March 25, 2006|112}}
{{guide2|1|13|PLACEHOLDER2.png|Secrets|April 1, 2006|113}}
}}
== Season 2 ==
== Season 3 ==
== Season 4 ==
While [[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]] comes first in production order, the fourth and final season of the original series started with the episode [[Perfect Day]], on July 14th 2007. Season 4's 10 singular episodes were then aired once a week, up until a several month hiatus between [[Ken 10]] and [[Ben 10 vs. the Negative 10: Part 1]] and [[Ben 10 vs. the Negative 10: Part 2|Part 2]].
On August 10th, 2007, '''Secret of the Omnitrix''' aired on Cartoon Network for the first time, and two alternate versions of the movie were aired the following September 1st ''(Gold Version)'' and October 20th ''(Blue Version)''. Ben 10's first multiplatform video game, [[Ben 10: Protector of Earth|Protector of Earth]] released on October 30th, and the live action movie [[Ben 10: Race Against Time]] premiered on November 21st 2007 during the hiatus.
The season's true ending came during the second week of April, 2008. [[Ben 10 Week (2008)|Ben 10 Week]], an event hosted in honor of the series, featuring special trivia popup versions of every past episode and both movies, [[I-10: The Ben 10 User Generated Experience|a special dedicated to the fans]], as well as the final episode of the series, [[Goodbye and Good Riddance]], which aired on April 15th, 2008.
With this event, we also saw little sneak peeks of [[Ben 10: Alien Force| what was to come for the franchise next...]]
== Movies ==
== Shorts ==
a548690d9e1efeebd8e266a116c608efa5333033
1127
1126
2020-06-11T22:33:14Z
Carth
30634784
/* Season 1 */
wikitext
text/x-wiki
== Season 1 ==
'''Season 1''' began with the episode, [[And Then There Were 10]], on December 27th 2005, during an event called '''Sneak Peek Week'''. Between December 26th and 29th, [[Cartoon Network]] debuted four shows that would be coming to the channel the following year. These included '''My Gym Partner's A Monkey''', '''Robotboy''', '''Zixx''', and of course, [[Ben 10 (2005)|Ben 10]].
The series went on to have a regular slot for new episodes on Saturday mornings, sometimes also being reran during the Cartoon Cartoon Fridays block in 2006. Season 1 concluded on April 1st, 2006 with the episode [[Secrets]].
This list is presented in the ''original U.S. airing order''. If following the production codes, episodes 6-9 would be ordered as: Last Laugh, Kevin 11, Tourist Trap and The Alliance, before continuing as normal.
{{guide|
{{guide2|1|1|And Then There Were 10.png|And Then There Were 10|December 27, 2005|101}}
{{guide2|1|2|PLACEHOLDER2.png|Washington B.C.|January 14, 2006|102}}
{{guide2|1|3|PLACEHOLDER2.png|The Krakken|January 21, 2006|103}}
{{guide2|1|4|PLACEHOLDER2.png|Permanent Retirement|January 28, 2006|104}}
{{guide2|1|5|PLACEHOLDER2.png|Hunted|February 4, 2006|105}}
{{guide2|1|6|PLACEHOLDER2.png|Tourist Trap|February 11, 2006|108}}
{{guide2|1|7|PLACEHOLDER2.png|Kevin 11|February 18, 2006|107}}
{{guide2|1|8|PLACEHOLDER2.png|The Alliance|February 25, 2006|109}}
{{guide2|1|9|PLACEHOLDER2.png|Last Laugh|March 4, 2006|106}}
{{guide2|1|10|PLACEHOLDER2.png|Lucky Girl|March 11, 2006|110}}
{{guide2|1|11|PLACEHOLDER2.png|A Small Problem|March 18, 2006|111}}
{{guide2|1|12|PLACEHOLDER2.png|Side Effects|March 25, 2006|112}}
{{guide2|1|13|PLACEHOLDER2.png|Secrets|April 1, 2006|113}}
}}
== Season 2 ==
== Season 3 ==
== Season 4 ==
While [[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]] comes first in production order, the fourth and final season of the original series started with the episode [[Perfect Day]], on July 14th 2007. Season 4's 10 singular episodes were then aired once a week, up until a several month hiatus between [[Ken 10]] and [[Ben 10 vs. the Negative 10: Part 1]] and [[Ben 10 vs. the Negative 10: Part 2|Part 2]].
On August 10th, 2007, '''Secret of the Omnitrix''' aired on Cartoon Network for the first time, and two alternate versions of the movie were aired the following September 1st ''(Gold Version)'' and October 20th ''(Blue Version)''. Ben 10's first multiplatform video game, [[Ben 10: Protector of Earth|Protector of Earth]] released on October 30th, and the live action movie [[Ben 10: Race Against Time]] premiered on November 21st 2007 during the hiatus.
The season's true ending came during the second week of April, 2008. [[Ben 10 Week (2008)|Ben 10 Week]], an event hosted in honor of the series, featuring special trivia popup versions of every past episode and both movies, [[I-10: The Ben 10 User Generated Experience|a special dedicated to the fans]], as well as the final episode of the series, [[Goodbye and Good Riddance]], which aired on April 15th, 2008.
With this event, we also saw little sneak peeks of [[Ben 10: Alien Force| what was to come for the franchise next...]]
== Movies ==
== Shorts ==
08cbebd76b578bc289286ed5f130e9c411133a5a
1128
1127
2020-06-11T22:36:02Z
Carth
30634784
/* Season 1 */
wikitext
text/x-wiki
== Season 1 ==
'''Season 1''' began with the episode, [[And Then There Were 10]], on December 27th 2005, during an event called '''Sneak Peek Week'''. Between December 26th and 29th, [[Cartoon Network]] debuted four shows that would be coming to the channel the following year. These included '''My Gym Partner's A Monkey''', '''Robotboy''', '''Zixx''', and of course, [[Ben 10 (2005)|Ben 10]].
The series went on to have a regular slot for new episodes on Saturday mornings, sometimes also being reran during the Cartoon Cartoon Fridays block in 2006. Season 1 concluded on April 1st, 2006 with the episode [[Secrets]].
This list is presented in the ''original U.S. airing order''. If following the production codes, episodes 6-9 would be ordered as: '''Last Laugh''', '''Kevin 11''', '''Tourist Trap''' and '''The Alliance''', before continuing as normal.
{{guide|
{{guide2|1|1|And Then There Were 10.png|And Then There Were 10|December 27, 2005|101}}
{{guide2|1|2|PLACEHOLDER2.png|Washington B.C.|January 14, 2006|102}}
{{guide2|1|3|PLACEHOLDER2.png|The Krakken|January 21, 2006|103}}
{{guide2|1|4|PLACEHOLDER2.png|Permanent Retirement|January 28, 2006|104}}
{{guide2|1|5|PLACEHOLDER2.png|Hunted|February 4, 2006|105}}
{{guide2|1|6|PLACEHOLDER2.png|Tourist Trap|February 11, 2006|108}}
{{guide2|1|7|PLACEHOLDER2.png|Kevin 11|February 18, 2006|107}}
{{guide2|1|8|PLACEHOLDER2.png|The Alliance|February 25, 2006|109}}
{{guide2|1|9|PLACEHOLDER2.png|Last Laugh|March 4, 2006|106}}
{{guide2|1|10|PLACEHOLDER2.png|Lucky Girl|March 11, 2006|110}}
{{guide2|1|11|PLACEHOLDER2.png|A Small Problem|March 18, 2006|111}}
{{guide2|1|12|PLACEHOLDER2.png|Side Effects|March 25, 2006|112}}
{{guide2|1|13|PLACEHOLDER2.png|Secrets|April 1, 2006|113}}
}}
== Season 2 ==
== Season 3 ==
== Season 4 ==
While [[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]] comes first in production order, the fourth and final season of the original series started with the episode [[Perfect Day]], on July 14th 2007. Season 4's 10 singular episodes were then aired once a week, up until a several month hiatus between [[Ken 10]] and [[Ben 10 vs. the Negative 10: Part 1]] and [[Ben 10 vs. the Negative 10: Part 2|Part 2]].
On August 10th, 2007, '''Secret of the Omnitrix''' aired on Cartoon Network for the first time, and two alternate versions of the movie were aired the following September 1st ''(Gold Version)'' and October 20th ''(Blue Version)''. Ben 10's first multiplatform video game, [[Ben 10: Protector of Earth|Protector of Earth]] released on October 30th, and the live action movie [[Ben 10: Race Against Time]] premiered on November 21st 2007 during the hiatus.
The season's true ending came during the second week of April, 2008. [[Ben 10 Week (2008)|Ben 10 Week]], an event hosted in honor of the series, featuring special trivia popup versions of every past episode and both movies, [[I-10: The Ben 10 User Generated Experience|a special dedicated to the fans]], as well as the final episode of the series, [[Goodbye and Good Riddance]], which aired on April 15th, 2008.
With this event, we also saw little sneak peeks of [[Ben 10: Alien Force| what was to come for the franchise next...]]
== Movies ==
== Shorts ==
09be99bc0545725ddf818967d8e1e22c42c1e0df
1129
1128
2020-06-11T23:02:46Z
Carth
30634784
/* Season 1 */
wikitext
text/x-wiki
== Season 1 ==
'''Season 1''' began with the episode, [[And Then There Were 10]], on December 27th 2005, during an event called '''Sneak Peek Week'''. Between December 26th and 29th, [[Cartoon Network]] debuted four shows that would be coming to the channel the following year. These included '''My Gym Partner's A Monkey''', '''Robotboy''', '''Zixx''', and of course, [[Ben 10 (2005)|Ben 10]].
The series went on to have a regular slot for new episodes on Saturday mornings, sometimes also being reran during the Cartoon Cartoon Fridays block in 2006. Season 1 concluded on April 1st, 2006 with the episode [[Secrets]].
This list is presented in the ''original U.S. airing order''. If following the production codes, episodes 6-9 would be ordered as: '''Last Laugh''', '''Kevin 11''', '''Tourist Trap''' and '''The Alliance''', before continuing as normal.
{{tabs|{{tab|Airing Order}}{{tab|Production Order}}}}
== Season 2 ==
== Season 3 ==
== Season 4 ==
While [[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]] comes first in production order, the fourth and final season of the original series started with the episode [[Perfect Day]], on July 14th 2007. Season 4's 10 singular episodes were then aired once a week, up until a several month hiatus between [[Ken 10]] and [[Ben 10 vs. the Negative 10: Part 1]] and [[Ben 10 vs. the Negative 10: Part 2|Part 2]].
On August 10th, 2007, '''Secret of the Omnitrix''' aired on Cartoon Network for the first time, and two alternate versions of the movie were aired the following September 1st ''(Gold Version)'' and October 20th ''(Blue Version)''. Ben 10's first multiplatform video game, [[Ben 10: Protector of Earth|Protector of Earth]] released on October 30th, and the live action movie [[Ben 10: Race Against Time]] premiered on November 21st 2007 during the hiatus.
The season's true ending came during the second week of April, 2008. [[Ben 10 Week (2008)|Ben 10 Week]], an event hosted in honor of the series, featuring special trivia popup versions of every past episode and both movies, [[I-10: The Ben 10 User Generated Experience|a special dedicated to the fans]], as well as the final episode of the series, [[Goodbye and Good Riddance]], which aired on April 15th, 2008.
With this event, we also saw little sneak peeks of [[Ben 10: Alien Force| what was to come for the franchise next...]]
== Movies ==
== Shorts ==
5f42b223d9ec53b5a98cef019b4b69c1c9073082
1135
1129
2020-06-11T23:16:52Z
Carth
30634784
/* Season 1 */
wikitext
text/x-wiki
== Season 1 ==
'''Season 1''' began with the episode, [[And Then There Were 10]], on December 27th 2005, during an event called '''Sneak Peek Week'''. Between December 26th and 29th, [[Cartoon Network]] debuted four shows that would be coming to the channel the following year. These included [https://en.wikipedia.org/wiki/My_Gym_Partner%27s_a_Monkey My Gym Partner's A Monkey], [https://en.wikipedia.org/wiki/Robotboy Robotboy], [https://en.wikipedia.org/wiki/Zixx Zixx], and of course, [[Ben 10 (2005)|Ben 10]].
The series went on to have a regular slot for new episodes on Saturday mornings, sometimes also being reran during the Cartoon Cartoon Fridays block in 2006. Season 1 concluded on April 1st, 2006 with the episode [[Secrets]].
{{tabs|{{tab|Airing Order}}{{tab|Production Order}}}}
== Season 2 ==
== Season 3 ==
== Season 4 ==
While [[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]] comes first in production order, the fourth and final season of the original series started with the episode [[Perfect Day]], on July 14th 2007. Season 4's 10 singular episodes were then aired once a week, up until a several month hiatus between [[Ken 10]] and [[Ben 10 vs. the Negative 10: Part 1]] and [[Ben 10 vs. the Negative 10: Part 2|Part 2]].
On August 10th, 2007, '''Secret of the Omnitrix''' aired on Cartoon Network for the first time, and two alternate versions of the movie were aired the following September 1st ''(Gold Version)'' and October 20th ''(Blue Version)''. Ben 10's first multiplatform video game, [[Ben 10: Protector of Earth|Protector of Earth]] released on October 30th, and the live action movie [[Ben 10: Race Against Time]] premiered on November 21st 2007 during the hiatus.
The season's true ending came during the second week of April, 2008. [[Ben 10 Week (2008)|Ben 10 Week]], an event hosted in honor of the series, featuring special trivia popup versions of every past episode and both movies, [[I-10: The Ben 10 User Generated Experience|a special dedicated to the fans]], as well as the final episode of the series, [[Goodbye and Good Riddance]], which aired on April 15th, 2008.
With this event, we also saw little sneak peeks of [[Ben 10: Alien Force| what was to come for the franchise next...]]
== Movies ==
== Shorts ==
8a2eb311abcd17a043731b4df707ce944e1ab76c
1136
1135
2020-06-11T23:18:10Z
Carth
30634784
/* Season 1 */
wikitext
text/x-wiki
{{tabs|{{tab|Airing Order}}{{tab|Production Order}}}}
== Season 2 ==
== Season 3 ==
== Season 4 ==
While [[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]] comes first in production order, the fourth and final season of the original series started with the episode [[Perfect Day]], on July 14th 2007. Season 4's 10 singular episodes were then aired once a week, up until a several month hiatus between [[Ken 10]] and [[Ben 10 vs. the Negative 10: Part 1]] and [[Ben 10 vs. the Negative 10: Part 2|Part 2]].
On August 10th, 2007, '''Secret of the Omnitrix''' aired on Cartoon Network for the first time, and two alternate versions of the movie were aired the following September 1st ''(Gold Version)'' and October 20th ''(Blue Version)''. Ben 10's first multiplatform video game, [[Ben 10: Protector of Earth|Protector of Earth]] released on October 30th, and the live action movie [[Ben 10: Race Against Time]] premiered on November 21st 2007 during the hiatus.
The season's true ending came during the second week of April, 2008. [[Ben 10 Week (2008)|Ben 10 Week]], an event hosted in honor of the series, featuring special trivia popup versions of every past episode and both movies, [[I-10: The Ben 10 User Generated Experience|a special dedicated to the fans]], as well as the final episode of the series, [[Goodbye and Good Riddance]], which aired on April 15th, 2008.
With this event, we also saw little sneak peeks of [[Ben 10: Alien Force| what was to come for the franchise next...]]
== Movies ==
== Shorts ==
0bc2cb668a0c2bb430ae351f9bb416c9742b80c6
1138
1136
2020-06-11T23:19:18Z
Carth
30634784
Replaced content with "{{tabs|{{tab|Airing Order}}{{tab|Production Order}}}}"
wikitext
text/x-wiki
{{tabs|{{tab|Airing Order}}{{tab|Production Order}}}}
efd992f86eaae028612ac06e3ae18f00e7c250ae
1142
1138
2020-06-11T23:23:20Z
Jaswacker
30585766
wikitext
text/x-wiki
{{tabs|{{tab|Airing Order}}{{tab|Production Order}}}}
{{-}}
== Movies ==
{{-}}
== Shorts ==
{{-}}
a6114ae4bb53ce007c18f39a61e751ff486c50c3
1145
1142
2020-06-12T02:17:36Z
Carth
30634784
/* Movies */
wikitext
text/x-wiki
{{tabs|{{tab|Airing Order}}{{tab|Production Order}}}}
{{-}}
== Movies ==
{{-}}
<br>
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|[[Ben 10: Secret of the Omnitrix]]
File:PLACEHOLDER2.png|[[Ben 10: Race Against Time]]
File:PLACEHOLDER2.png|[[Ben 10: Destroy All Aliens]]
</gallery></center>
== Shorts ==
{{-}}
14639de0538749eaca9a1388ac2dcf511683e3c6
1146
1145
2020-06-12T02:19:51Z
Carth
30634784
wikitext
text/x-wiki
__NOTOC__
{{tabs|{{tab|Airing Order}}{{tab|Production Order}}}}
{{-}}
== Movies ==
{{-}}
<br>
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|[[Ben 10: Secret of the Omnitrix]]
File:PLACEHOLDER2.png|[[Ben 10: Race Against Time]]
File:PLACEHOLDER2.png|[[Ben 10: Destroy All Aliens]]
</gallery></center>
== Shorts ==
{{-}}
1479e9dc4489841f24b8429d631b52e849b1b404
1147
1146
2020-06-12T02:59:35Z
Carth
30634784
/* Movies */
wikitext
text/x-wiki
__NOTOC__
{{tabs|{{tab|Airing Order}}{{tab|Production Order}}}}
{{-}}
== Movies ==
{{-}}
<br>
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|[[Ben 10: Secret of the Omnitrix]] - August 10, 2007
File:PLACEHOLDER2.png|[[Ben 10: Race Against Time]] - November 21, 2007
File:PLACEHOLDER2.png|[[Ben 10: Destroy All Aliens]] - March 23, 2012
</gallery></center>
== Shorts ==
{{-}}
ded92e39e2bd20b39992c08967232733688854c7
1148
1147
2020-06-12T03:00:04Z
Carth
30634784
/* Movies */
wikitext
text/x-wiki
__NOTOC__
{{tabs|{{tab|Airing Order}}{{tab|Production Order}}}}
{{-}}
== Movies ==
{{-}}
<br>
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|[[Ben 10: Secret of the Omnitrix]] <br> August 10, 2007
File:PLACEHOLDER2.png|[[Ben 10: Race Against Time]] <br> November 21, 2007
File:PLACEHOLDER2.png|[[Ben 10: Destroy All Aliens]] <br> March 23, 2012
</gallery></center>
== Shorts ==
{{-}}
faa2616b14f6bd97db3ebba19f16d0230da9bb24
1149
1148
2020-06-12T03:10:23Z
Carth
30634784
/* Movies */
wikitext
text/x-wiki
__NOTOC__
{{tabs|{{tab|Airing Order}}{{tab|Production Order}}}}
{{-}}
== Movies ==
{{-}}
<br>
<center><gallery widths="200px" heights="250px">
File:MOVIE_SOTO_POSTER.jpg|[[Ben 10: Secret of the Omnitrix]] <br> August 10, 2007
File:MOVIE_RAT_POSTER.jpg|[[Ben 10: Race Against Time]] <br> November 21, 2007
File:MOVIE_DAA_POSTER.jpg|[[Ben 10: Destroy All Aliens]] <br> March 23, 2012
</gallery></center>
== Shorts ==
{{-}}
67819d34b870a491c3c7801ac2e52143f7dcc491
Template:Flag
10
288
1111
2020-06-11T19:32:52Z
Jaswacker
30585766
Created page with "[[File:{{{1}}}|20px|link= ]]<noinclude> <pre> {{flag|1}} </pre> Type in the country's [https://www.iban.com/country-codes Alpha-2 code], and that country's flag will appear..."
wikitext
text/x-wiki
[[File:{{{1}}}|20px|link= ]]<noinclude>
<pre>
{{flag|1}}
</pre>
Type in the country's [https://www.iban.com/country-codes Alpha-2 code], and that country's flag will appear as a small icon.
[[Category:Templates]]</noinclude>
9e15220ffcc363eed32ae2f18f0a3e3f75e2455a
1112
1111
2020-06-11T19:35:52Z
Jaswacker
30585766
wikitext
text/x-wiki
[[File:{{{1}}}|20px|link= ]]<noinclude>
<pre>
{{flag|1}}
</pre>
Type in the country's [https://www.iban.com/country-codes Alpha-2 code], and that country's flag will appear as a small icon.
Not every country's flag is supported by this template.
The country's included are:
* United States
* United Kingdom
* Japan
[[Category:Templates]]</noinclude>
efa9cf036e3e074fa8c64ef7cac103f4650f1a08
1113
1112
2020-06-11T19:36:10Z
Jaswacker
30585766
wikitext
text/x-wiki
[[File:{{{1}}}|20px|link= ]]<noinclude>
<pre>
{{flag|1}}
</pre>
Type in the country's [https://www.iban.com/country-codes Alpha-2 code], and that country's flag will appear as a small icon.
Not every country's flag is supported by this template.
The countries included are:
* United States
* United Kingdom
* Japan
[[Category:Templates]]</noinclude>
22851798f49bbe9c0b6784eb53d1eb9df5933445
1117
1113
2020-06-11T19:37:18Z
Jaswacker
30585766
wikitext
text/x-wiki
[[File:{{{1}}}.png|20px|link= ]]<noinclude>
<pre>
{{flag|1}}
</pre>
Type in the country's [https://www.iban.com/country-codes Alpha-2 code], and that country's flag will appear as a small icon.
Not every country's flag is supported by this template.
The countries included are:
* United States
* United Kingdom
* Japan
[[Category:Templates]]</noinclude>
9e5d5100f555a68a4bc4c7764446bdae105b7657
1118
1117
2020-06-11T19:37:31Z
Jaswacker
30585766
wikitext
text/x-wiki
[[File:{{{1}}}.png|20px|link= ]]<noinclude>
<pre>
{{flag|1}}
</pre>
Type in the country's [https://www.iban.com/country-codes Alpha-2 code], and that country's flag will appear as a small icon.
Not every country's flag is supported by this template.
The countries included are:
* United States (US)
* United Kingdom (GB)
* Japan (JP)
[[Category:Templates]]</noinclude>
eac313c30d29837bf69f01ccb1a48cf5f412a6c1
File:GB.png
6
289
1114
2020-06-11T19:36:22Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:JP.png
6
290
1115
2020-06-11T19:36:53Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:US.png
6
291
1116
2020-06-11T19:37:09Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Sandbox
0
240
1119
1041
2020-06-11T19:38:04Z
Jaswacker
30585766
wikitext
text/x-wiki
{{flag|US}}
{{flag|GB}}
{{flag|JP}}
f11ccd93b498d3b20fd22cc42f1f7f7baecc4f1a
1120
1119
2020-06-11T19:42:40Z
Jaswacker
30585766
wikitext
text/x-wiki
{{flag|US}}United States
{{flag|GB}}United Kingdom
{{flag|JP}}Japan
501bcf609e33bf24e0d5968e671a07620ee70b87
1121
1120
2020-06-11T19:42:50Z
Jaswacker
30585766
wikitext
text/x-wiki
*{{flag|US}}United States
*{{flag|GB}}United Kingdom
*{{flag|JP}}Japan
f4505e80499b8c86f61fe96ccac3cb37172db9e8
1122
1121
2020-06-11T19:43:34Z
Jaswacker
30585766
wikitext
text/x-wiki
testing blah blah words {{flag|GB}} more words blah testing
9ff64d463d4eccbf52dff57c14f972e2f94b1718
1123
1122
2020-06-11T19:43:53Z
Jaswacker
30585766
wikitext
text/x-wiki
testing blah blah words {{flag|GB}} more words blah testing
<br>{{flag|US}}
{{flag|JP}}
66e53907adf037cf747a14c9a492934a5b046b8a
Ben 10 (2005)/Episodes/Airing Order
0
292
1130
2020-06-11T23:02:59Z
Carth
30634784
Created page with "{{guide| {{guide2|1|1|And Then There Were 10.png|And Then There Were 10|December 27, 2005|101}} {{guide2|1|2|PLACEHOLDER2.png|Washington B.C.|January 14, 2006|102}} {{guide2|1..."
wikitext
text/x-wiki
{{guide|
{{guide2|1|1|And Then There Were 10.png|And Then There Were 10|December 27, 2005|101}}
{{guide2|1|2|PLACEHOLDER2.png|Washington B.C.|January 14, 2006|102}}
{{guide2|1|3|PLACEHOLDER2.png|The Krakken|January 21, 2006|103}}
{{guide2|1|4|PLACEHOLDER2.png|Permanent Retirement|January 28, 2006|104}}
{{guide2|1|5|PLACEHOLDER2.png|Hunted|February 4, 2006|105}}
{{guide2|1|6|PLACEHOLDER2.png|Tourist Trap|February 11, 2006|108}}
{{guide2|1|7|PLACEHOLDER2.png|Kevin 11|February 18, 2006|107}}
{{guide2|1|8|PLACEHOLDER2.png|The Alliance|February 25, 2006|109}}
{{guide2|1|9|PLACEHOLDER2.png|Last Laugh|March 4, 2006|106}}
{{guide2|1|10|PLACEHOLDER2.png|Lucky Girl|March 11, 2006|110}}
{{guide2|1|11|PLACEHOLDER2.png|A Small Problem|March 18, 2006|111}}
{{guide2|1|12|PLACEHOLDER2.png|Side Effects|March 25, 2006|112}}
{{guide2|1|13|PLACEHOLDER2.png|Secrets|April 1, 2006|113}}
}}
288f5cd9d532baa3ec91a109f57d71b18b15b48d
1132
1130
2020-06-11T23:12:05Z
Jaswacker
30585766
wikitext
text/x-wiki
{{guide|
{{guide2|1|1|101title.png|And Then There Were 10|December 27, 2005|101}}
{{guide2|2|2|PLACEHOLDER2.png|Washington B.C.|January 14, 2006|102}}
{{guide2|3|3|PLACEHOLDER2.png|The Krakken|January 21, 2006|103}}
{{guide2|4|4|PLACEHOLDER2.png|Permanent Retirement|January 28, 2006|104}}
{{guide2|5|5|PLACEHOLDER2.png|Hunted|February 4, 2006|105}}
{{guide2|6|6|PLACEHOLDER2.png|Tourist Trap|February 11, 2006|108}}
{{guide2|7|7|PLACEHOLDER2.png|Kevin 11|February 18, 2006|107}}
{{guide2|8|8|PLACEHOLDER2.png|The Alliance|February 25, 2006|109}}
{{guide2|9|9|PLACEHOLDER2.png|Last Laugh|March 4, 2006|106}}
{{guide2|10|10|PLACEHOLDER2.png|Lucky Girl|March 11, 2006|110}}
{{guide2|11|11|PLACEHOLDER2.png|A Small Problem|March 18, 2006|111}}
{{guide2|12|12|PLACEHOLDER2.png|Side Effects|March 25, 2006|112}}
{{guide2|13|13|PLACEHOLDER2.png|Secrets|April 1, 2006|113}}
}}
8a1930d7d689799c094e16987607a87ddc764b8f
1137
1132
2020-06-11T23:18:49Z
Carth
30634784
wikitext
text/x-wiki
== Season 1 ==
'''Season 1''' began with the episode, [[And Then There Were 10]], on December 27th 2005, during an event called '''Sneak Peek Week'''. Between December 26th and 29th, [[Cartoon Network]] debuted four shows that would be coming to the channel the following year. These included [https://en.wikipedia.org/wiki/My_Gym_Partner%27s_a_Monkey My Gym Partner's A Monkey], [https://en.wikipedia.org/wiki/Robotboy Robotboy], [https://en.wikipedia.org/wiki/Zixx Zixx], and of course, [[Ben 10 (2005)|Ben 10]].
The series went on to have a regular slot for new episodes on Saturday mornings, sometimes also being reran during the Cartoon Cartoon Fridays block in 2006. Season 1 concluded on April 1st, 2006 with the episode [[Secrets]].
{{guide|
{{guide2|1|1|101title.png|And Then There Were 10|December 27, 2005|101}}
{{guide2|2|2|PLACEHOLDER2.png|Washington B.C.|January 14, 2006|102}}
{{guide2|3|3|PLACEHOLDER2.png|The Krakken|January 21, 2006|103}}
{{guide2|4|4|PLACEHOLDER2.png|Permanent Retirement|January 28, 2006|104}}
{{guide2|5|5|PLACEHOLDER2.png|Hunted|February 4, 2006|105}}
{{guide2|6|6|PLACEHOLDER2.png|Tourist Trap|February 11, 2006|108}}
{{guide2|7|7|PLACEHOLDER2.png|Kevin 11|February 18, 2006|107}}
{{guide2|8|8|PLACEHOLDER2.png|The Alliance|February 25, 2006|109}}
{{guide2|9|9|PLACEHOLDER2.png|Last Laugh|March 4, 2006|106}}
{{guide2|10|10|PLACEHOLDER2.png|Lucky Girl|March 11, 2006|110}}
{{guide2|11|11|PLACEHOLDER2.png|A Small Problem|March 18, 2006|111}}
{{guide2|12|12|PLACEHOLDER2.png|Side Effects|March 25, 2006|112}}
{{guide2|13|13|PLACEHOLDER2.png|Secrets|April 1, 2006|113}}
}}
fa6600a4afb689328c54b0401898951b531856f5
1139
1137
2020-06-11T23:19:45Z
Carth
30634784
wikitext
text/x-wiki
== Season 1 ==
'''Season 1''' began with the episode, [[And Then There Were 10]], on December 27th 2005, during an event called '''Sneak Peek Week'''. Between December 26th and 29th, [[Cartoon Network]] debuted four shows that would be coming to the channel the following year. These included [https://en.wikipedia.org/wiki/My_Gym_Partner%27s_a_Monkey My Gym Partner's A Monkey], [https://en.wikipedia.org/wiki/Robotboy Robotboy], [https://en.wikipedia.org/wiki/Zixx Zixx], and of course, [[Ben 10 (2005)|Ben 10]].
The series went on to have a regular slot for new episodes on Saturday mornings, sometimes also being reran during the Cartoon Cartoon Fridays block in 2006. Season 1 concluded on April 1st, 2006 with the episode [[Secrets]].
{{guide|
{{guide2|1|1|101title.png|And Then There Were 10|December 27, 2005|101}}
{{guide2|2|2|PLACEHOLDER2.png|Washington B.C.|January 14, 2006|102}}
{{guide2|3|3|PLACEHOLDER2.png|The Krakken|January 21, 2006|103}}
{{guide2|4|4|PLACEHOLDER2.png|Permanent Retirement|January 28, 2006|104}}
{{guide2|5|5|PLACEHOLDER2.png|Hunted|February 4, 2006|105}}
{{guide2|6|6|PLACEHOLDER2.png|Tourist Trap|February 11, 2006|108}}
{{guide2|7|7|PLACEHOLDER2.png|Kevin 11|February 18, 2006|107}}
{{guide2|8|8|PLACEHOLDER2.png|The Alliance|February 25, 2006|109}}
{{guide2|9|9|PLACEHOLDER2.png|Last Laugh|March 4, 2006|106}}
{{guide2|10|10|PLACEHOLDER2.png|Lucky Girl|March 11, 2006|110}}
{{guide2|11|11|PLACEHOLDER2.png|A Small Problem|March 18, 2006|111}}
{{guide2|12|12|PLACEHOLDER2.png|Side Effects|March 25, 2006|112}}
{{guide2|13|13|PLACEHOLDER2.png|Secrets|April 1, 2006|113}}
}}
== Season 2 ==
== Season 3 ==
== Season 4 ==
While [[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]] comes first in production order, the fourth and final season of the original series started with the episode [[Perfect Day]], on July 14th 2007. Season 4's 10 singular episodes were then aired once a week, up until a several month hiatus between [[Ken 10]] and [[Ben 10 vs. the Negative 10: Part 1]] and [[Ben 10 vs. the Negative 10: Part 2|Part 2]].
On August 10th, 2007, '''Secret of the Omnitrix''' aired on Cartoon Network for the first time, and two alternate versions of the movie were aired the following September 1st ''(Gold Version)'' and October 20th ''(Blue Version)''. Ben 10's first multiplatform video game, [[Ben 10: Protector of Earth|Protector of Earth]] released on October 30th, and the live action movie [[Ben 10: Race Against Time]] premiered on November 21st 2007 during the hiatus.
The season's true ending came during the second week of April, 2008. [[Ben 10 Week (2008)|Ben 10 Week]], an event hosted in honor of the series, featuring special trivia popup versions of every past episode and both movies, [[I-10: The Ben 10 User Generated Experience|a special dedicated to the fans]], as well as the final episode of the series, [[Goodbye and Good Riddance]], which aired on April 15th, 2008.
With this event, we also saw little sneak peeks of [[Ben 10: Alien Force| what was to come for the franchise next...]]
== Movies ==
== Shorts ==
9073c7bbbbb0dc799d0a984b7a3b17e048802308
1141
1139
2020-06-11T23:23:10Z
Jaswacker
30585766
wikitext
text/x-wiki
{{-}}
== Season 1 ==
'''Season 1''' began with the episode, [[And Then There Were 10]], on December 27th 2005, during an event called '''Sneak Peek Week'''. Between December 26th and 29th, [[Cartoon Network]] debuted four shows that would be coming to the channel the following year. These included [https://en.wikipedia.org/wiki/My_Gym_Partner%27s_a_Monkey My Gym Partner's A Monkey], [https://en.wikipedia.org/wiki/Robotboy Robotboy], [https://en.wikipedia.org/wiki/Zixx Zixx], and of course, [[Ben 10 (2005)|Ben 10]].
The series went on to have a regular slot for new episodes on Saturday mornings, sometimes also being reran during the Cartoon Cartoon Fridays block in 2006. Season 1 concluded on April 1st, 2006 with the episode [[Secrets]].
{{guide|
{{guide2|1|1|101title.png|And Then There Were 10|December 27, 2005|101}}
{{guide2|2|2|PLACEHOLDER2.png|Washington B.C.|January 14, 2006|102}}
{{guide2|3|3|PLACEHOLDER2.png|The Krakken|January 21, 2006|103}}
{{guide2|4|4|PLACEHOLDER2.png|Permanent Retirement|January 28, 2006|104}}
{{guide2|5|5|PLACEHOLDER2.png|Hunted|February 4, 2006|105}}
{{guide2|6|6|PLACEHOLDER2.png|Tourist Trap|February 11, 2006|108}}
{{guide2|7|7|PLACEHOLDER2.png|Kevin 11|February 18, 2006|107}}
{{guide2|8|8|PLACEHOLDER2.png|The Alliance|February 25, 2006|109}}
{{guide2|9|9|PLACEHOLDER2.png|Last Laugh|March 4, 2006|106}}
{{guide2|10|10|PLACEHOLDER2.png|Lucky Girl|March 11, 2006|110}}
{{guide2|11|11|PLACEHOLDER2.png|A Small Problem|March 18, 2006|111}}
{{guide2|12|12|PLACEHOLDER2.png|Side Effects|March 25, 2006|112}}
{{guide2|13|13|PLACEHOLDER2.png|Secrets|April 1, 2006|113}}
}}
{{-}}
== Season 2 ==
{{-}}
== Season 3 ==
{{-}}
== Season 4 ==
While [[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]] comes first in production order, the fourth and final season of the original series started with the episode [[Perfect Day]], on July 14th 2007. Season 4's 10 singular episodes were then aired once a week, up until a several month hiatus between [[Ken 10]] and [[Ben 10 vs. the Negative 10: Part 1]] and [[Ben 10 vs. the Negative 10: Part 2|Part 2]].
On August 10th, 2007, '''Secret of the Omnitrix''' aired on Cartoon Network for the first time, and two alternate versions of the movie were aired the following September 1st ''(Gold Version)'' and October 20th ''(Blue Version)''. Ben 10's first multiplatform video game, [[Ben 10: Protector of Earth|Protector of Earth]] released on October 30th, and the live action movie [[Ben 10: Race Against Time]] premiered on November 21st 2007 during the hiatus.
The season's true ending came during the second week of April, 2008. [[Ben 10 Week (2008)|Ben 10 Week]], an event hosted in honor of the series, featuring special trivia popup versions of every past episode and both movies, [[I-10: The Ben 10 User Generated Experience|a special dedicated to the fans]], as well as the final episode of the series, [[Goodbye and Good Riddance]], which aired on April 15th, 2008.
With this event, we also saw little sneak peeks of [[Ben 10: Alien Force| what was to come for the franchise next...]]
{{-}}
bd3f0333f9debf2b9dba212bab362167d382e204
1153
1141
2020-06-14T10:27:30Z
Carth
30634784
wikitext
text/x-wiki
{{-}}
== Season 1 ==
'''Season 1''' began with the episode, [[And Then There Were 10]], on December 27th 2005, during an event called '''Sneak Peek Week'''. Between December 26th and 29th, [[Cartoon Network]] debuted four shows that would be coming to the channel the following year. These included [https://en.wikipedia.org/wiki/My_Gym_Partner%27s_a_Monkey My Gym Partner's A Monkey], [https://en.wikipedia.org/wiki/Robotboy Robotboy], [https://en.wikipedia.org/wiki/Zixx Zixx], and of course, [[Ben 10 (2005)|Ben 10]].
The series went on to have a regular slot for new episodes on Saturday mornings, sometimes also being reran during the Cartoon Cartoon Fridays block in 2006. Season 1 concluded on April 1st, 2006 with the episode [[Secrets]].
{{guide|
{{guide2|1|1|101title.png|And Then There Were 10|December 27, 2005|101}}
{{guide2|2|2|PLACEHOLDER2.png|Washington B.C.|January 14, 2006|102}}
{{guide2|3|3|PLACEHOLDER2.png|The Krakken|January 21, 2006|103}}
{{guide2|4|4|PLACEHOLDER2.png|Permanent Retirement|January 28, 2006|104}}
{{guide2|5|5|PLACEHOLDER2.png|Hunted|February 4, 2006|105}}
{{guide2|6|6|PLACEHOLDER2.png|Tourist Trap|February 11, 2006|108}}
{{guide2|7|7|PLACEHOLDER2.png|Kevin 11|February 18, 2006|107}}
{{guide2|8|8|PLACEHOLDER2.png|The Alliance|February 25, 2006|109}}
{{guide2|9|9|PLACEHOLDER2.png|Last Laugh|March 4, 2006|106}}
{{guide2|10|10|PLACEHOLDER2.png|Lucky Girl|March 11, 2006|110}}
{{guide2|11|11|PLACEHOLDER2.png|A Small Problem|March 18, 2006|111}}
{{guide2|12|12|PLACEHOLDER2.png|Side Effects|March 25, 2006|112}}
{{guide2|13|13|PLACEHOLDER2.png|Secrets|April 1, 2006|113}}
}}
{{-}}
== Season 2 (Under Construction) ==
{{guide|
{{guide2|1|14|PLACEHOLDER2.png|And Then There Were 10|December 27, 2005|101}}
{{guide2|2|15|PLACEHOLDER2.png|Washington B.C.|January 14, 2006|102}}
{{guide2|3|16|PLACEHOLDER2.png|The Krakken|January 21, 2006|103}}
{{guide2|4|17|PLACEHOLDER2.png|Permanent Retirement|January 28, 2006|104}}
{{guide2|5|18|PLACEHOLDER2.png|Hunted|February 4, 2006|105}}
{{guide2|6|19|PLACEHOLDER2.png|Tourist Trap|February 11, 2006|108}}
{{guide2|7|20|PLACEHOLDER2.png|Kevin 11|February 18, 2006|107}}
{{guide2|8|21|PLACEHOLDER2.png|The Alliance|February 25, 2006|109}}
{{guide2|9|22|PLACEHOLDER2.png|Last Laugh|March 4, 2006|106}}
{{guide2|10|23|PLACEHOLDER2.png|Lucky Girl|March 11, 2006|110}}
{{guide2|11|24|PLACEHOLDER2.png|A Small Problem|March 18, 2006|111}}
{{guide2|12|25|PLACEHOLDER2.png|Side Effects|March 25, 2006|112}}
{{guide2|13|26|PLACEHOLDER2.png|Secrets|April 1, 2006|113}}
}}
{{-}}
== Season 3 (Under Construction) ==
{{guide|
{{guide2|1|27|PLACEHOLDER2.png|And Then There Were 10|December 27, 2005|101}}
{{guide2|2|28|PLACEHOLDER2.png|Washington B.C.|January 14, 2006|102}}
{{guide2|3|29|PLACEHOLDER2.png|The Krakken|January 21, 2006|103}}
{{guide2|4|30|PLACEHOLDER2.png|Permanent Retirement|January 28, 2006|104}}
{{guide2|5|31|PLACEHOLDER2.png|Hunted|February 4, 2006|105}}
{{guide2|6|32|PLACEHOLDER2.png|Tourist Trap|February 11, 2006|108}}
{{guide2|7|33|PLACEHOLDER2.png|Kevin 11|February 18, 2006|107}}
{{guide2|8|34|PLACEHOLDER2.png|The Alliance|February 25, 2006|109}}
{{guide2|9|35|PLACEHOLDER2.png|Last Laugh|March 4, 2006|106}}
{{guide2|10|36|PLACEHOLDER2.png|Lucky Girl|March 11, 2006|110}}
{{guide2|11|37|PLACEHOLDER2.png|A Small Problem|March 18, 2006|111}}
{{guide2|12|38|PLACEHOLDER2.png|Side Effects|March 25, 2006|112}}
{{guide2|13|39|PLACEHOLDER2.png|Secrets|April 1, 2006|113}}
}}
{{-}}
== Season 4 (Under Construction) ==
While [[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]] comes first in production order, the fourth and final season of the original series started with the episode [[Perfect Day]], on July 14th 2007. Season 4's 10 singular episodes were then aired once a week, up until a several month hiatus between [[Ken 10]] and [[Ben 10 vs. the Negative 10: Part 1]] and [[Ben 10 vs. the Negative 10: Part 2|Part 2]].
On August 10th, 2007, '''Secret of the Omnitrix''' aired on Cartoon Network for the first time, and two alternate versions of the movie were aired the following September 1st ''(Gold Version)'' and October 20th ''(Blue Version)''. Ben 10's first multiplatform video game, [[Ben 10: Protector of Earth|Protector of Earth]] released on October 30th, and the live action movie [[Ben 10: Race Against Time]] premiered on November 21st 2007 during the hiatus.
The season's true ending came during the second week of April, 2008. [[Ben 10 Week (2008)|Ben 10 Week]], an event hosted in honor of the series, featuring special trivia popup versions of every past episode and both movies, [[I-10: The Ben 10 User Generated Experience|a special dedicated to the fans]], as well as the final episode of the series, [[Goodbye and Good Riddance]], which aired on April 15th, 2008.
With this event, we also saw little sneak peeks of [[Ben 10: Alien Force| what was to come for the franchise next...]]
{{guide|
{{guide2|5|40|PLACEHOLDER2.png|Hunted|February 4, 2006|105}}
{{guide2|6|41|PLACEHOLDER2.png|Tourist Trap|February 11, 2006|108}}
{{guide2|7|42|PLACEHOLDER2.png|Kevin 11|February 18, 2006|107}}
{{guide2|8|43|PLACEHOLDER2.png|The Alliance|February 25, 2006|109}}
{{guide2|9|44|PLACEHOLDER2.png|Last Laugh|March 4, 2006|106}}
{{guide2|10|45|PLACEHOLDER2.png|Lucky Girl|March 11, 2006|110}}
{{guide2|11|46|PLACEHOLDER2.png|A Small Problem|March 18, 2006|111}}
{{guide2|12|47|PLACEHOLDER2.png|Side Effects|March 25, 2006|112}}
{{guide2|13|48|PLACEHOLDER2.png|Secrets|April 1, 2006|113}}
{{guide2|13|49|PLACEHOLDER2.png|Secrets|April 1, 2006|113}}
}}
{{-}}
9f7df6a620b74f83f9e3b185509f7a3c6a5cb8c5
Ben 10 (2005)/Episodes/Production Order
0
293
1131
2020-06-11T23:07:02Z
Carth
30634784
Created page with "{{guide| {{guide2|1|1|And Then There Were 10.png|And Then There Were 10|December 27, 2005|101}} {{guide2|1|2|PLACEHOLDER2.png|Washington B.C.|January 14, 2006|102}} {{guide2|1..."
wikitext
text/x-wiki
{{guide|
{{guide2|1|1|And Then There Were 10.png|And Then There Were 10|December 27, 2005|101}}
{{guide2|1|2|PLACEHOLDER2.png|Washington B.C.|January 14, 2006|102}}
{{guide2|1|3|PLACEHOLDER2.png|The Krakken|January 21, 2006|103}}
{{guide2|1|4|PLACEHOLDER2.png|Permanent Retirement|January 28, 2006|104}}
{{guide2|1|5|PLACEHOLDER2.png|Hunted|February 4, 2006|105}}
{{guide2|1|9|PLACEHOLDER2.png|Last Laugh|March 4, 2006|106}}
{{guide2|1|7|PLACEHOLDER2.png|Kevin 11|February 18, 2006|107}}
{{guide2|1|6|PLACEHOLDER2.png|Tourist Trap|February 11, 2006|108}}
{{guide2|1|8|PLACEHOLDER2.png|The Alliance|February 25, 2006|109}}
{{guide2|1|10|PLACEHOLDER2.png|Lucky Girl|March 11, 2006|110}}
{{guide2|1|11|PLACEHOLDER2.png|A Small Problem|March 18, 2006|111}}
{{guide2|1|12|PLACEHOLDER2.png|Side Effects|March 25, 2006|112}}
{{guide2|1|13|PLACEHOLDER2.png|Secrets|April 1, 2006|113}}
}}
95604948c95bec4aa505f51c14df118661af19c3
1143
1131
2020-06-11T23:34:18Z
Carth
30634784
wikitext
text/x-wiki
Season 1
{{guide|
{{guide2|1|1|And Then There Were 10.png|And Then There Were 10|December 27, 2005|101}}
{{guide2|2|2|PLACEHOLDER2.png|Washington B.C.|January 14, 2006|102}}
{{guide2|3|3|PLACEHOLDER2.png|The Krakken|January 21, 2006|103}}
{{guide2|4|4|PLACEHOLDER2.png|Permanent Retirement|January 28, 2006|104}}
{{guide2|5|5|PLACEHOLDER2.png|Hunted|February 4, 2006|105}}
{{guide2|6|6|PLACEHOLDER2.png|Last Laugh|March 4, 2006|106}}
{{guide2|7|7|PLACEHOLDER2.png|Kevin 11|February 18, 2006|107}}
{{guide2|8|8|PLACEHOLDER2.png|Tourist Trap|February 11, 2006|108}}
{{guide2|9|9|PLACEHOLDER2.png|The Alliance|February 25, 2006|109}}
{{guide2|10|10|PLACEHOLDER2.png|Lucky Girl|March 11, 2006|110}}
{{guide2|11|11|PLACEHOLDER2.png|A Small Problem|March 18, 2006|111}}
{{guide2|12|12|PLACEHOLDER2.png|Side Effects|March 25, 2006|112}}
{{guide2|13|13|PLACEHOLDER2.png|Secrets|April 1, 2006|113}}
}}
Season 2
Season 3
Season 4
2362c8725f40902c3e4be6de98d27cb4de0450a4
1144
1143
2020-06-11T23:35:18Z
Carth
30634784
wikitext
text/x-wiki
== Season 1 ==
{{guide|
{{guide2|1|1|And Then There Were 10.png|And Then There Were 10|December 27, 2005|101}}
{{guide2|2|2|PLACEHOLDER2.png|Washington B.C.|January 14, 2006|102}}
{{guide2|3|3|PLACEHOLDER2.png|The Krakken|January 21, 2006|103}}
{{guide2|4|4|PLACEHOLDER2.png|Permanent Retirement|January 28, 2006|104}}
{{guide2|5|5|PLACEHOLDER2.png|Hunted|February 4, 2006|105}}
{{guide2|6|6|PLACEHOLDER2.png|Last Laugh|March 4, 2006|106}}
{{guide2|7|7|PLACEHOLDER2.png|Kevin 11|February 18, 2006|107}}
{{guide2|8|8|PLACEHOLDER2.png|Tourist Trap|February 11, 2006|108}}
{{guide2|9|9|PLACEHOLDER2.png|The Alliance|February 25, 2006|109}}
{{guide2|10|10|PLACEHOLDER2.png|Lucky Girl|March 11, 2006|110}}
{{guide2|11|11|PLACEHOLDER2.png|A Small Problem|March 18, 2006|111}}
{{guide2|12|12|PLACEHOLDER2.png|Side Effects|March 25, 2006|112}}
{{guide2|13|13|PLACEHOLDER2.png|Secrets|April 1, 2006|113}}
}}
== Season 2 ==
== Season 3 ==
== Season 4 ==
d63156c8c6e493ddfce02068bb6822451020f74c
File:101title.png
6
294
1133
2020-06-11T23:12:31Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Ben 10 (2005)
0
80
1134
1098
2020-06-11T23:14:19Z
Jaswacker
30585766
wikitext
text/x-wiki
'''Ben 10''' ''(also known as '''Ben 10 Classic''')'' is an American animated television series created by Man of Action (a group consisting of Joe Casey, Joe Kelly, Duncan Rouleau, and Steven T. Seagle), and is the first installment of the Ben 10 franchise.
[[Ben 10 (2005)/Episodes]]
66651dc75686c3da1f0e5e7bc95ea5a3bf2990ff
MediaWiki:Common.css
8
3
1140
1047
2020-06-11T23:20:26Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:0;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
9ce19652d7b16a1fc6a15b590216997623573751
File:MOVIE SOTO POSTER.jpg
6
295
1150
2020-06-12T03:10:49Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:MOVIE RAT POSTER.jpg
6
296
1151
2020-06-12T03:11:01Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:MOVIE DAA POSTER.jpg
6
297
1152
2020-06-12T03:11:10Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Template:Drop
10
298
1154
2020-07-02T20:40:01Z
Jaswacker
30585766
Created page with "<includeonly><div class="metadata" style="z-index: 100;" id="Drop-down-list"> {| cellspacing="0" style="border-collapse: collapse; width: 75px; font-size: 0.9em; border: 0.5px..."
wikitext
text/x-wiki
<includeonly><div class="metadata" style="z-index: 100;" id="Drop-down-list">
{| cellspacing="0" style="border-collapse: collapse; width: 75px; font-size: 0.9em; border: 0.5px solid black; background-color: white; margin: -.2em 0 0 0;"
|-
! colspan="2" style="border-bottom: 0.5px solid black; background-color: white; text-align: left; padding-left: .7em;" |<div class="mw-customtoggle-{{{id|desks}}}">
{{{Name|Text}}} [[File:MediaWiki Vector skin action arrow.png|link=]]
</div>
<div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-{{{id|desks}}}" style="padding:0px; border:0px;">
<div class="mw-collapsible-content" style="text-align:left;">
{{{Value1|Lorem}}}<br>
{{{Value2|borem}}}<br>
{{{Value3|Lorem}}}<br>
{{{Value4|Lorem}}}<br>
{{{Value5|Lorem}}}<br>
{{{Value6|Lorem}}}<br>
{{{Value7|Lorem}}}<br>
{{{Value8|Lorem}}}<br>
</div></div>
|}</div></includeonly>
<noinclude>[[Category:Templates]]</noinclude>
72ad800af74cbe3559806330f199ae3d9dfed753
1156
1154
2020-07-02T20:45:05Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div class="metadata" style="z-index: 100;" id="Drop-down-list">
{| cellspacing="0" style="border-collapse: collapse; width: 75px; font-size: 0.9em; background-color: white; margin: -.2em 0 0 0; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px"
|-
! colspan="2" style="border-bottom: 0.5px solid black; background-color: white; text-align: left; padding-left: .7em;" |<div class="mw-customtoggle-{{{id|desks}}}">
{{{Name|Text}}} [[File:MediaWiki Vector skin action arrow.png|link=]]
</div>
<div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-{{{id|desks}}}" style="padding:0px; border:0px;">
<div class="mw-collapsible-content" style="text-align:left;">
{{{1|}}}<br>
{{{2|}}}<br>
{{{3|}}}<br>
{{{4|}}}<br>
{{{5|}}}<br>
{{{6|}}}<br>
{{{7|}}}<br>
{{{8|}}}<br>
{{{9|}}}<br>
{{{10|}}}<br>
{{{11|}}}<br>
{{{12|}}}<br>
</div></div>
|}</div></includeonly>
<noinclude>[[Category:Templates]]</noinclude>
f5807f04a9ca04a9d9a46f79ecccf7797cbe4ab3
1157
1156
2020-07-02T20:46:13Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div class="metadata" style="z-index: 100;" id="Drop-down-list">
{| cellspacing="0" style="border-collapse: collapse; width: 75px; font-size: 0.9em; background-color: white; margin: -.2em 0 0 0; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px"
|-
! colspan="2" style="border-bottom: 0.5px solid black; background-color: white; text-align: left; padding-left: .7em;" |<div class="mw-customtoggle-{{{id|desks}}}">
{{{Name|Text}}} [[File:MediaWiki Vector skin action arrow.png|link=]]
</div>
<div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-{{{id|desks}}}" style="padding:0px; border:0px;">
<div class="mw-collapsible-content" style="text-align:left;">
{{{1}}}
</div></div>
|}</div></includeonly>
<noinclude>[[Category:Templates]]</noinclude>
a05e5393929ac4db21c31c119c6980b4e35260c6
1159
1157
2020-07-02T20:48:11Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div class="metadata" style="z-index: 100;" id="Drop-down-list">
{| cellspacing="0" style="border-collapse: collapse; width: 75px; font-size: 0.9em; background-color: white; margin: -.2em 0 0 0; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px"
|-
! colspan="2" style="border-bottom: 0.5px solid black; background-color: white; text-align: left; padding-left: .7em;" |<div class="mw-customtoggle-{{{id|desks}}}">
{{{name|Text}}} [[File:MediaWiki Vector skin action arrow.png|link=]]
</div>
<div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-{{{id|desks}}}" style="padding:0px; border:0px;">
<div class="mw-collapsible-content" style="text-align:left;">
{{{1|}}}<br>
{{{2|}}}<br>
{{{3|}}}<br>
{{{4|}}}<br>
{{{5|}}}<br>
{{{6|}}}<br>
{{{7|}}}<br>
{{{8|}}}<br>
{{{9|}}}<br>
{{{10|}}}<br>
{{{11|}}}<br>
{{{12|}}}<br>
</div></div>
|}</div></includeonly>
<noinclude>[[Category:Templates]]</noinclude>
b126d077241a81b9462ddbf404dfc656a9022fa5
1160
1159
2020-07-02T20:48:19Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div class="metadata" style="z-index: 100;" id="Drop-down-list">
{| cellspacing="0" style="border-collapse: collapse; width: 75px; font-size: 0.9em; background-color: white; margin: -.2em 0 0 0; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px"
|-
! colspan="2" style="border-bottom: 0.5px solid black; background-color: white; text-align: left; padding-left: .7em;" |<div class="mw-customtoggle-{{{id|desks}}}">
{{{name|Text}}} [[File:MediaWiki Vector skin action arrow.png|link=]]
</div>
<div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-{{{id|desks}}}" style="padding:0px; border:0px;">
<div class="mw-collapsible-content" style="text-align:left;">
{{{1}}}
</div></div>
|}</div></includeonly>
<noinclude>[[Category:Templates]]</noinclude>
e0374607eb6710b9ef82ed8fe8fa1a382403cc6d
1161
1160
2020-07-02T20:48:37Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div class="metadata" style="z-index: 100;" id="Drop-down-list">
{| cellspacing="0" style="border-collapse: collapse; width: 150px; font-size: 0.9em; background-color: white; margin: -.2em 0 0 0; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px"
|-
! colspan="2" style="border-bottom: 0.5px solid black; background-color: white; text-align: left; padding-left: .7em;" |<div class="mw-customtoggle-{{{id|desks}}}">
{{{name|Text}}} [[File:MediaWiki Vector skin action arrow.png|link=]]
</div>
<div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-{{{id|desks}}}" style="padding:0px; border:0px;">
<div class="mw-collapsible-content" style="text-align:left;">
{{{1}}}
</div></div>
|}</div></includeonly>
<noinclude>[[Category:Templates]]</noinclude>
d66fc7482005d7ad19023833bdd1bfe0c0547ed2
1162
1161
2020-07-02T20:48:54Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div class="metadata" style="z-index: 100;" id="Drop-down-list">
{| cellspacing="0" style="border-collapse: collapse; width: 150px; font-size: 0.9em; background-color: white; margin: auto; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px"
|-
! colspan="2" style="border-bottom: 0.5px solid black; background-color: white; text-align: left; padding-left: .7em;" |<div class="mw-customtoggle-{{{id|desks}}}">
{{{name|Text}}} [[File:MediaWiki Vector skin action arrow.png|link=]]
</div>
<div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-{{{id|desks}}}" style="padding:0px; border:0px;">
<div class="mw-collapsible-content" style="text-align:left;">
{{{1}}}
</div></div>
|}</div></includeonly>
<noinclude>[[Category:Templates]]</noinclude>
d784326092a6a25f8bead677cda51774f0aa07d2
1163
1162
2020-07-02T20:49:40Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div class="metadata" style="z-index: 100;" id="Drop-down-list">
{| cellspacing="0" style="border-collapse: collapse; width: 150px; font-size: 0.9em; background-color: white; margin: auto; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; text-align: center;"
|-
! colspan="2" style="border-bottom: 0.5px solid #02b70c; background-color: white; text-align: left; padding-left: .7em;" |<div class="mw-customtoggle-{{{id|desks}}}">
{{{name|Text}}} [[File:MediaWiki Vector skin action arrow.png|link=]]
</div>
<div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-{{{id|desks}}}" style="padding:0px; border:0px;">
<div class="mw-collapsible-content" style="text-align:left;">
{{{1}}}
</div></div>
|}</div></includeonly>
<noinclude>[[Category:Templates]]</noinclude>
8ef6c0de20156aa96fb0fe7c97e65dba4291769f
1164
1163
2020-07-02T20:50:04Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div class="metadata" style="z-index: 100;" id="Drop-down-list">
{| cellspacing="0" style="border-collapse: collapse; width: 150px; font-size: 0.9em; background-color: white; margin: auto; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px;"
|-
! colspan="2" style="border-bottom: 0.5px solid #02b70c; background-color: white; text-align: center; padding-left: .7em;" |<div class="mw-customtoggle-{{{id|desks}}}">
{{{name|Text}}} [[File:MediaWiki Vector skin action arrow.png|link=]]
</div>
<div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-{{{id|desks}}}" style="padding:0px; border:0px;">
<div class="mw-collapsible-content" style="text-align:left;">
{{{1}}}
</div></div>
|}</div></includeonly>
<noinclude>[[Category:Templates]]</noinclude>
16f8bd4fa2d35ca1eb88ecb12cd7290445f1f1c5
1165
1164
2020-07-02T20:50:31Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div class="metadata" style="z-index: 100;" id="Drop-down-list">
{| cellspacing="0" style="border-collapse: collapse; width: 150px; font-size: 0.9em; background-color: white; margin: auto; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px;"
|-
! colspan="2" style="border-bottom: 0.5px solid #02b70c; background-color: white; text-align: center; padding-left: .7em; border-radius:20px 0px;" |<div class="mw-customtoggle-{{{id|desks}}}">
{{{name|Text}}} [[File:MediaWiki Vector skin action arrow.png|link=]]
</div>
<div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-{{{id|desks}}}" style="padding:0px; border:0px; border-radius:20px 0px;">
<div class="mw-collapsible-content" style="text-align:left;">
{{{1}}}
</div></div>
|}</div></includeonly>
<noinclude>[[Category:Templates]]</noinclude>
7f0df129bdf9191056b0aca7d4290959c476b4a8
1166
1165
2020-07-02T20:51:13Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div class="metadata" style="z-index: 100;" id="Drop-down-list">
{| cellspacing="0" style="border-collapse: collapse; width: 150px; font-size: 0.9em; background-color: white; margin: auto; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px;"
|-
! colspan="2" style="border-bottom: 0.5px solid #02b70c; background-color: white; text-align: center; padding-left: .7em; border-radius:20px 0px; font-size: 1.1em;" |<div class="mw-customtoggle-{{{id|desks}}}">
{{{name|Text}}} [[File:MediaWiki Vector skin action arrow.png|link=]]
</div>
<div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-{{{id|desks}}}" style="padding:0px; border:0px; border-radius:20px 0px;">
<div class="mw-collapsible-content" style="text-align:left;">
{{{1}}}
</div></div>
|}</div></includeonly>
<noinclude>[[Category:Templates]]</noinclude>
bac69945fcc8b8c346c4bd948bb481f588027200
1167
1166
2020-07-02T20:51:36Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div class="metadata" style="z-index: 100;" id="Drop-down-list">
{| cellspacing="0" style="border-collapse: collapse; width: 150px; font-size: 0.9em; background-color: white; margin: auto; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px;"
|-
! colspan="2" style="border-bottom: 0.5px solid #02b70c; background-color: white; text-align: center; padding-left: .7em; border-radius:20px 0px; font-size: 1.1em;" |<div class="mw-customtoggle-{{{id|desks}}}">
{{{name|Text}}} [[File:MediaWiki Vector skin action arrow.png|link=]]
</div>
<div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-{{{id|desks}}}" style="padding:0px; border:0px; border-radius:20px 0px; font-size: 0.9em;">
<div class="mw-collapsible-content" style="text-align:left;">
{{{1}}}
</div></div>
|}</div></includeonly>
<noinclude>[[Category:Templates]]</noinclude>
83ed33eb4ce23461bd8284d62c245e15988bc7c3
1168
1167
2020-07-02T20:52:31Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div class="metadata" style="z-index: 100;" id="Drop-down-list">
{| cellspacing="0" style="border-collapse: collapse; width: 150px; font-size: 0.9em; background-color: white; margin: auto; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px;"
|-
! colspan="2" style="border-bottom: 0.5px solid #02b70c; background-color: white; text-align: center; padding-left: .7em; border-radius:20px 0px; font-size: 1.1em;" |<div class="mw-customtoggle-{{{id|desks}}}">
{{{name|Text}}} [[File:MediaWiki Vector skin action arrow.png|link=]]
</div>
<div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-{{{id|desks}}}" style="padding:0px; border:0px; border-radius:20px 0px; font-size: 0.9em; font-weight:normal;">
<div class="mw-collapsible-content" style="text-align:left;">
{{{1}}}
</div></div>
|}</div></includeonly>
<noinclude>[[Category:Templates]]</noinclude>
67b3a84c3592ad045f5df7e8a97b8c7b4ac1cbbf
1169
1168
2020-07-02T20:56:17Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div class="metadata" style="z-index: 100;" id="Drop-down-list">
{| cellspacing="0" style="border-collapse: collapse; width: {{{1}}}px; font-size: 0.9em; background-color: white; margin: auto; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px;"
|-
! colspan="2" style="border-bottom: 0.5px solid #02b70c; background-color: white; text-align: center; padding-left: .7em; border-radius:20px 0px; font-size: 1.1em;" |<div class="mw-customtoggle-{{{id|desks}}}">
{{{name|Text}}} [[File:MediaWiki Vector skin action arrow.png|link=]]
</div>
<div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-{{{id|desks}}}" style="padding:0px; border:0px; border-radius:20px 0px; font-size: 0.9em; font-weight:normal;">
<div class="mw-collapsible-content" style="text-align:left;">
{{{2}}}
</div></div>
|}</div></includeonly>
<noinclude>[[Category:Templates]]</noinclude>
f1e01eae23b13abd30dd2c1d2182ca227b54bd26
1170
1169
2020-07-02T20:58:46Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div class="metadata" style="z-index: 100;" id="Drop-down-list">
{| cellspacing="0" style="border-collapse: collapse; width: {{{1}}}px; font-size: 0.9em; background-color: white; margin: right; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px;"
|-
! colspan="2" style="border-bottom: 0.5px solid #02b70c; background-color: white; text-align: center; padding-left: .7em; border-radius:20px 0px; font-size: 1.1em;" |<div class="mw-customtoggle-{{{id|desks}}}">
{{{name|Text}}} [[File:MediaWiki Vector skin action arrow.png|link=]]
</div>
<div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-{{{id|desks}}}" style="padding:0px; border:0px; border-radius:20px 0px; font-size: 0.9em; font-weight:normal;">
<div class="mw-collapsible-content" style="text-align:left;">
{{{2}}}
</div></div>
|}</div></includeonly>
<noinclude>[[Category:Templates]]</noinclude>
ec6acc8507bb4170e61ea1ff7fa4b8ddf8b6f493
1171
1170
2020-07-02T20:59:02Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div class="metadata" style="z-index: 100;" id="Drop-down-list">
{| cellspacing="0" style="border-collapse: collapse; width: {{{1}}}px; font-size: 0.9em; background-color: white; margin: left; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px;"
|-
! colspan="2" style="border-bottom: 0.5px solid #02b70c; background-color: white; text-align: center; padding-left: .7em; border-radius:20px 0px; font-size: 1.1em;" |<div class="mw-customtoggle-{{{id|desks}}}">
{{{name|Text}}} [[File:MediaWiki Vector skin action arrow.png|link=]]
</div>
<div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-{{{id|desks}}}" style="padding:0px; border:0px; border-radius:20px 0px; font-size: 0.9em; font-weight:normal;">
<div class="mw-collapsible-content" style="text-align:left;">
{{{2}}}
</div></div>
|}</div></includeonly>
<noinclude>[[Category:Templates]]</noinclude>
bcdee46c403e57554acc574b609867fb76bf05e6
1172
1171
2020-07-02T20:59:57Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div class="metadata" style="z-index: 100;" id="Drop-down-list">
{| cellspacing="0" style="border-collapse: collapse; width: {{{1}}}px; font-size: 0.9em; background-color: white; position:absolute; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px;"
|-
! colspan="2" style="border-bottom: 0.5px solid #02b70c; background-color: white; text-align: center; padding-left: .7em; border-radius:20px 0px; font-size: 1.1em;" |<div class="mw-customtoggle-{{{id|desks}}}">
{{{name|Text}}} [[File:MediaWiki Vector skin action arrow.png|link=]]
</div>
<div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-{{{id|desks}}}" style="padding:0px; border:0px; border-radius:20px 0px; font-size: 0.9em; font-weight:normal;">
<div class="mw-collapsible-content" style="text-align:left;">
{{{2}}}
</div></div>
|}</div></includeonly>
<noinclude>[[Category:Templates]]</noinclude>
607080477ea7cc466d5385983735e9840af0fb64
1173
1172
2020-07-02T21:00:21Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div class="metadata" style="z-index: 100;" id="Drop-down-list">
{| cellspacing="0" style="border-collapse: collapse; width: {{{1}}}px; font-size: 0.9em; background-color: white; margin: auto; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px;"
|-
! colspan="2" style="border-bottom: 0.5px solid #02b70c; background-color: white; text-align: center; padding-left: .7em; border-radius:20px 0px; font-size: 1.1em;" |<div class="mw-customtoggle-{{{id|desks}}}">
{{{name|Text}}} [[File:MediaWiki Vector skin action arrow.png|link=]]
</div>
<div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-{{{id|desks}}}" style="padding:0px; border:0px; border-radius:20px 0px; font-size: 0.9em; font-weight:normal;">
<div class="mw-collapsible-content" style="text-align:left;">
{{{2}}}
</div></div>
|}</div></includeonly>
<noinclude>[[Category:Templates]]</noinclude>
f1e01eae23b13abd30dd2c1d2182ca227b54bd26
1174
1173
2020-07-02T21:03:10Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div class="metadata" style="z-index: 100;" id="Drop-down-list">
{| cellspacing="0" style="border-collapse: collapse; width: {{{1}}}px; font-size: 0.9em; background-color: white; margin: auto; background: #fff; border:1px solid white; color:#000; border-radius:20px 0px;"
|-
! colspan="2" style="border-bottom: 0.5px solid #02b70c; background-color: white; text-align: center; padding-left: .7em; border-radius:20px 0px; font-size: 1.1em;" |<div class="mw-customtoggle-{{{id|desks}}}">
{{{name|Text}}} [[File:MediaWiki Vector skin action arrow.png|link=]]
</div>
<div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-{{{id|desks}}}" style="padding:0px; border:0px; border-radius:20px 0px; font-size: 0.9em; font-weight:normal;">
<div class="mw-collapsible-content" style="text-align:left;">
{{{2}}}
</div></div>
|}</div></includeonly>
<noinclude>[[Category:Templates]]</noinclude>
078e476a01b43a22ae84caddada84ceaa49fae95
File:MediaWiki Vector skin action arrow.png
6
299
1155
2020-07-02T20:41:58Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Template:D
10
300
1158
2020-07-02T20:47:03Z
Jaswacker
30585766
Created page with "{{{1}}}<br>"
wikitext
text/x-wiki
{{{1}}}<br>
59109c0a60136352a7ba0aab438857bd2bfd48f0
Sandbox
0
240
1175
1123
2020-07-02T21:03:24Z
Jaswacker
30585766
wikitext
text/x-wiki
{{Drop|900|name=[[File:PLACEHOLDER2.png|link=omnitrix|300px]]|
{{D|<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Perk)</small>
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]] <br><small>(Introduced in ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'')</small>
File:PLACEHOLDER2.png|[[Buzzshock]] <br><small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|[[Spitter]] <br><small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Arctiguana]] <br><small>(First used by Ben 10,000)</small>
</gallery></center>}}
}}
{{Drop|200|name=Dropdown2|
{{D|test<br>
test2<br>
test3
}}
}}
4f9b4162ff3dde059939852023375f151f8ef34c
1176
1175
2020-07-02T21:04:01Z
Jaswacker
30585766
wikitext
text/x-wiki
{{Drop|900|name=[[File:PLACEHOLDER2.png|link=omnitrix|300px]]|
{{D|
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Perk)</small>
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]] <br><small>(Introduced in ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'')</small>
File:PLACEHOLDER2.png|[[Buzzshock]] <br><small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|[[Spitter]] <br><small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Arctiguana]] <br><small>(First used by Ben 10,000)</small>
</gallery></center>
}}
}}
{{Drop|200|name=Dropdown2|
{{D|test<br>
test2<br>
test3
}}
}}
0731bb7330459ec5e982a835145502895be42f09
Minor Transformations/Albedo
0
175
1177
725
2020-07-29T15:20:21Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__
This page is dedicated to the alien transformations of [[Albedo]]. It is assumed that Albedo has access to every form that [[Ben Tennyson (Prime)|Ben]] can use, with the exception of [[Feedback]].<ref>https://web.archive.org/web/20200602002717/https://ask.fm/DerrickJWyatt/answers/162825748852</ref>
Albedo is also able to "evolve" his transformations into [[Utlimate Forms]].
<sup>[[Minor_Transformations/Albedo|Full page link.]]</sup>
{{-}}
===placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Ultimate Forms==
===placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Unseen and Non-Canon==
===placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
d5c9475fc334dc0cfecdd017236b9b099244b525
Minor Transformations/Ben 23
0
176
1180
637
2020-07-29T15:24:39Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__
This page is dedicated to the alien transformations of [[Albedo]]. It is assumed that Albedo has access to every form that [[Ben Tennyson (Prime)|Ben]] has access to, with [[Minor Transformations/Ben 23#Trunkman|some]] [[Minor Transformations/Unseen#Decimus Prime|exceptions]].
<sup>[[Minor_Transformations/Ben_23|Full page link.]]</sup>
{{-}}
===placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Unseen and Non-Canon==
===placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===placeholder===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
6b4f0c63ee6cee5f72c42cc85235030569e4ef02
1181
1180
2020-07-29T16:03:03Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__
This page is dedicated to the alien transformations of [[Albedo]]. It is assumed that Albedo has access to every form that [[Ben Tennyson (Prime)|Ben]] has access to, with [[Minor Transformations/Ben 23#Trunkman|some]] [[Minor Transformations/Unseen#Decimus Prime|exceptions]].
<sup>[[Minor_Transformations/Ben_23|Full page link.]]</sup>
{{-}}
===Freezelizard===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Rollaway===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Electricyeti===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Build-A-Guy===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Eye Guy===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Vomit Man===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Speedy Quick===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Toolboxx===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Nighty Knight===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Mr Monkey===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Techno-Bubble===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Rollaway===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Dino-Mighty===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Freezeghost===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Handyman===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Lightning Volt===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Brainfrog===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
==Unseen==
===Giant-Manster===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Feedback===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Dog-Nabbit===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Charcoal-Man===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
This name is conjecture.
{{-}}
===Copy Copy===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Muck-A-Muck===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Windy-Hindy===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Orbit Man===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
This name is conjecture.
{{-}}
===Teeny-Weeny===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Mr. Mucky===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Non-Canon==
===Fright Face===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Tigerizer===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Bat-Dude===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Fish Fingers===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
This name is conjecture.
{{-}}
===Trunkman===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
1da938df6b27cbd32a1c09c053e83cc3ca7e6257
1182
1181
2020-07-29T16:03:56Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__
This page is dedicated to the alien transformations of [[Ben Tennyson (Dimension 23)|Ben 23]]. It is assumed that Albedo has access to every form that [[Ben Tennyson (Prime)|Ben]] has access to, with [[Minor Transformations/Ben 23#Trunkman|some]] [[Minor Transformations/Unseen#Decimus Prime|exceptions]].
<sup>[[Minor_Transformations/Ben_23|Full page link.]]</sup>
{{-}}
===Freezelizard===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Rollaway===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Electricyeti===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Build-A-Guy===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Eye Guy===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Vomit Man===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Speedy Quick===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Toolboxx===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Nighty Knight===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Mr Monkey===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Techno-Bubble===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Rollaway===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Dino-Mighty===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Freezeghost===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Handyman===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Lightning Volt===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Brainfrog===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
==Unseen==
===Giant-Manster===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Feedback===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Dog-Nabbit===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Charcoal-Man===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
This name is conjecture.
{{-}}
===Copy Copy===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Muck-A-Muck===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Windy-Hindy===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Orbit Man===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
This name is conjecture.
{{-}}
===Teeny-Weeny===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Mr. Mucky===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Non-Canon==
===Fright Face===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Tigerizer===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Bat-Dude===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Fish Fingers===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
This name is conjecture.
{{-}}
===Trunkman===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
eaa70f3157c4cf04817b800879476d64fe24fb51
Ben Tennyson (Disambiguation)
0
24
1183
681
2020-07-29T16:15:21Z
Jaswacker
30585766
/* Alternate Versions of Ben Tennyson */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Alternate Versions of Ben Tennyson==
===Future Versions of Ben Tennyson===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Eon|Eon]]
</gallery></center>
===The Greater Multiverse===
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Gwen 10)|Ben Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Dimension 23)|"Ben 23"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Madworld)|Mad Ben]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|[[Benzarro|Benzarro]]
File:PLACEHOLDER2.png|[[Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (IDW)|''IDW'' Ben]]
</gallery></center>
===Live Action===
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
83d4408e91fd8c04d654fadcec69b168c9ab2f19
1193
1183
2020-07-30T01:27:59Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Eon|Eon]]
</gallery></center>
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Dimension 23)|"Ben 23"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Madworld)|Mad Ben]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|[[Benzarro|Benzarro]]
File:PLACEHOLDER2.png|[[Argit 10|"Argit 10"]]
</gallery></center>
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
==Other==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
9d9c26237f04d9fc4e813d393fc0118d62d94983
1196
1193
2020-07-30T21:38:12Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Eon|Eon]]
</gallery></center>
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:Albedo PromoArt Export.png|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Dimension 23)|"Ben 23"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Madworld)|Mad Ben]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|[[Benzarro|Benzarro]]
File:PLACEHOLDER2.png|[[Argit 10|"Argit 10"]]
</gallery></center>
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
==Other==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
8a3112b6b9a007fe0c15e67e1f83bc5bb68c5e23
1197
1196
2020-07-30T21:39:51Z
Jaswacker
30585766
/* The Greater Multiverse */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Eon|Eon]]
</gallery></center>
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Dimension 23)|"Ben 23"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Madworld)|Mad Ben]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|[[Benzarro|Benzarro]]
File:PLACEHOLDER2.png|[[Argit 10|"Argit 10"]]
</gallery></center>
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
==Other==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
7621b661207b1544c2d667c1721be515b5a214a8
1198
1197
2020-07-30T21:40:15Z
Jaswacker
30585766
/* The Greater Multiverse */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Eon|Eon]]
</gallery></center>
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Dimension 23)|"Ben 23"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Madworld)|Mad Ben]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|[[Benzarro|Benzarro]]
File:PLACEHOLDER2.png|[[Minor Character/Aliens#Argit 10|"Argit 10"]]
</gallery></center>
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
==Other==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
1f6a73e3da1bb5528a71cede625cee6b626c6d41
1200
1198
2020-07-30T22:05:19Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Eon|Eon]]
</gallery></center>
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Dimension 23)|"Ben 23"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Madworld)|Mad Ben]]
File:bad ben promo.png|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:PLACEHOLDER2.png|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|[[Benzarro|Benzarro]]
File:PLACEHOLDER2.png|[[Minor Character/Aliens#Argit 10|"Argit 10"]]
</gallery></center>
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
==Other==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
e995e44828f478bb740c7a11f94e259ec6c8181d
1201
1200
2020-07-30T22:12:04Z
Jaswacker
30585766
/* The Greater Multiverse */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|[[Eon|Eon]]
</gallery></center>
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|"Ben 23"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Benzarro]]|[[Benzarro]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Character/Aliens#Argit 10|"Argit 10"]]
</gallery></center>
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
==Other==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
0a6e12743c8307aefb64f509d03034fa34bf7b77
1202
1201
2020-07-30T22:17:34Z
Jaswacker
30585766
/* Future Versions of Ben Tennyson */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:Eon_UltimateAlien.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
</gallery></center>
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|"Ben 23"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Benzarro]]|[[Benzarro]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Character/Aliens#Argit 10|"Argit 10"]]
</gallery></center>
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
==Other==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
32d7a5c70cbf3ff766a5498d8b689f1ba654f19e
1203
1202
2020-07-30T22:55:27Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:Eon_UltimateAlien.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
</gallery></center>
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|"Ben 23"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Character/Aliens#Argit 10|"Argit 10"]]
</gallery></center>
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
==Other==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
e87bf39e144fd282ab92f1f1c2466f453398b20a
Minor Transformations
0
4
1184
882
2020-07-29T16:16:41Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__
{{tabs|{{tab|Unseen}}{{tab|Albedo}}{{tab|Ben 23}}{{tab|Bad Ben}}{{tab|Benzarro}}{{tab|Mad Ben}}{{tab|Nega Ben}}{{tab|Gwen 10}}{{tab|Ben 10K}}{{tab|Other}}}}
<noinclude>[[Category:Transformations]]</noinclude>
780aa1e916853917cd3ff610a45a4a57fc3759b8
Minor Transformations/Benzarro
0
301
1185
2020-07-29T16:23:11Z
Jaswacker
30585766
Created page with "__NOTOC__ This page is dedicated to the alien transformations of [[Benzarro]]. It is assumed that Benzarro has access to every form that [[Ben Tennyson (Prime)|Ben]] has, with..."
wikitext
text/x-wiki
__NOTOC__
This page is dedicated to the alien transformations of [[Benzarro]]. It is assumed that Benzarro has access to every form that [[Ben Tennyson (Prime)|Ben]] has, with [[Minor Transformations/Benzarro#Archfiendzarro|some exceptions]].
Instead of the [[Omnitrix]], Benzarro uses his own "[[Zombitrix]]," which transforms him into zombified and undead versions of his aliens. <ref>https://i.imgur.com/2YqRMA3.png</ref>
<sup>[[Minor_Transformations/Benzarro|Full page link.]]</sup>
{{-}}
===Frankenstrikezarro===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Snare-Ohzarro===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Unseen and Non-Canon==
===Waybigzarro===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Stinkzarro===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Bloxxzarro===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Goopzarro===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Upgradezarro===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Whampzarro===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Archfiendzarro===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
ddbcbe9d681be3d3501812cbb740936958c948fe
1186
1185
2020-07-29T16:27:18Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__
This page is dedicated to the alien transformations of [[Benzarro]]. It is assumed that Benzarro has access to every form that [[Ben Tennyson (Prime)|Ben]] has, with [[Minor Transformations/Benzarro#Archfiendzarro|some exceptions]].
Instead of the [[Omnitrix]], Benzarro uses his own "[[Zombitrix]]," which transforms him into zombified and undead versions of his aliens. <ref>https://i.imgur.com/2YqRMA3.png</ref>
<sup>[[Minor_Transformations/Benzarro|Full page link.]]</sup>
{{-}}
===Frankenstrike===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Snare-Oh===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Unseen and Non-Canon==
===Waybigzarro===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Stinkzarro===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Bloxxzarro===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Goopzarro===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Upgradezarro===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Whampzarro===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Archfiendzarro===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
6ef8304c6a06099391049a65a7abc512da83e1a2
Omnitrix
0
302
1187
2020-07-29T23:41:39Z
Jaswacker
30585766
Redirected page to [[Omnitrix (Disambiguation)]]
wikitext
text/x-wiki
#REDIRECT [[Omnitrix (Disambiguation)]]
cd42d40b61ff82ce11ae31ad1096394c9838eee1
Omnitrix (Disambiguation)
0
303
1188
2020-07-30T00:26:37Z
Jaswacker
30585766
Created page with "{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}} {{Disambig}} placeholder __TOC__ {{-}} ==''[[Ben 10 (2005)]]''== <center><gallery widths="200px" heights="200px"..."
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
placeholder
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:PLACEHOLDER2.png|link=[[Eunice]]|The Unimatrix
File:PLACEHOLDER2.png|link=[[Omnitrix (placeholder)]]|Ben's "improved" Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (placeholder)]]|Ben's "improved" Omnitrix
File:PLACEHOLDER2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:PLACEHOLDER2.png|link=[[Stabilizer]]|Albedo's Stabilizer
File:PLACEHOLDER2.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:PLACEHOLDER2.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:PLACEHOLDER2.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:PLACEHOLDER2.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:PLACEHOLDER2.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:PLACEHOLDER2.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
</gallery></center>
193fb123a4169f6bea2feaf443f9375867e94465
1190
1188
2020-07-30T00:38:15Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
placeholder
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:PLACEHOLDER2.png|link=[[Eunice]]|The Unimatrix
File:PLACEHOLDER2.png|link=[[Omnitrix (placeholder)]]|Ben's "improved" Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (placeholder)]]|Ben's "improved" Omnitrix
File:PLACEHOLDER2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:PLACEHOLDER2.png|link=[[Stabilizer]]|Albedo's Stabilizer
File:PLACEHOLDER2.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:PLACEHOLDER2.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:PLACEHOLDER2.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:PLACEHOLDER2.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:PLACEHOLDER2.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:PLACEHOLDER2.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
</gallery></center>
e284710db205717fdef74ef280dded28b58faf9e
1191
1190
2020-07-30T00:51:27Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
placeholder
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:PLACEHOLDER2.png|link=[[Eunice]]|The Unimatrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Completed)]]|Ben's "improved" Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Completed)]]|Ben's "improved" Omnitrix
File:PLACEHOLDER2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:PLACEHOLDER2.png|link=[[Stabilizer]]|Albedo's Stabilizer
File:PLACEHOLDER2.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:PLACEHOLDER2.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:PLACEHOLDER2.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:PLACEHOLDER2.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:PLACEHOLDER2.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:PLACEHOLDER2.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
</gallery></center>
b007ed9a13a09aa1d2168e613c6b39f3ce9fc545
1192
1191
2020-07-30T00:53:47Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
placeholder
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:PLACEHOLDER2.png|link=[[Eunice]]|The Unimatrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Completed)]]|Ben's "improved" Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Completed)]]|Ben's "improved" Omnitrix
File:PLACEHOLDER2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:PLACEHOLDER2.png|link=[[Stabilizer]]|Albedo's Stabilizer
File:PLACEHOLDER2.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:PLACEHOLDER2.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:PLACEHOLDER2.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:PLACEHOLDER2.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:PLACEHOLDER2.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:PLACEHOLDER2.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
</gallery></center>
c1262b74a214db06bb0dc84c17162ecb2b1eec94
1194
1192
2020-07-30T15:57:51Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
placeholder
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:PLACEHOLDER2.png|link=[[Eunice]]|The Unimatrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Completed)]]|Ben's "improved" Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Completed)]]|Ben's "improved" Omnitrix
File:PLACEHOLDER2.png|link=[[Nemetrix]]|The Nemetrix
File:PLACEHOLDER2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:PLACEHOLDER2.png|link=[[Stabilizer]]|Albedo's Stabilizer
File:PLACEHOLDER2.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:PLACEHOLDER2.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:PLACEHOLDER2.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:PLACEHOLDER2.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:PLACEHOLDER2.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:PLACEHOLDER2.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
</gallery></center>
98fcb486f0c18bed336a05a7a88c75b2feac5259
File:Trixorigin.png
6
304
1189
2020-07-30T00:37:54Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Albedo PromoArt Export.png
6
305
1195
2020-07-30T21:37:33Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
File:Bad ben promo.png
6
306
1199
2020-07-30T22:05:14Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
Fandom
0
237
1204
897
2020-07-31T04:54:02Z
Carth
30634784
wikitext
text/x-wiki
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Carth, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Ben10toys.net (estimated 2007-2019) ===
Hosted on a service called Ning, the forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally run by a user named Agent Spectre, and later given to toy reviewer Stu Carter of Atamaii.com, who maintained the site until sometime in 2019.
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
f100c0d588165259b420af14f372a1a22f199186
1205
1204
2020-07-31T04:55:44Z
Carth
30634784
/* Ben10toys.net (estimated 2007-2019) */
wikitext
text/x-wiki
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Carth, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Ben10toys.net (estimated 2007-2018) ===
Hosted on a service called Ning, the forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally run by a user named Agent Spectre, and later given to toy reviewer Stu Carter of Atamaii.com, who maintained the site until sometime in 2018.
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
bd636e9eed0a34c85c087e9de50811a0de86c26d
Fandom
0
237
1206
1205
2020-07-31T04:56:32Z
Carth
30634784
/* Ben10toys.net (estimated 2007-2018) */
wikitext
text/x-wiki
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Carth, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Ben10toys.net (2006-2018) ===
Hosted on a service called Ning, the forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally run by a user named Agent Spectre, and later given to toy reviewer Stu Carter of Atamaii.com, who maintained the site until sometime in 2018.
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
ea720bd8bdc304cc642607ea8dac71fe2530f119
1207
1206
2020-07-31T05:49:24Z
Carth
30634784
/* Ben10toys.net (2006-2018) */
wikitext
text/x-wiki
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Carth, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Ben10toys.net (2006-2018) ===
Hosted on a service called Ning, the forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally run by a user named Agent Spectre, and later given to toy reviewer Stu Carter of Atamaii.com, who maintained the site until sometime in 2018.
[[File:Toysdotnet 2006.png|thumb|left|Ben10toys.net in 2006]]
[[File:Toysdotnet 2010 banner.png|thumb|left|The site's banner circa 2010]]
[[File:Toysdotnet 2018.png|thumb|left|Ben10toys.net in its final years.]]
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
0c71d22c671e583e3a7b6a73604e09b8091961d8
1208
1207
2020-07-31T05:49:45Z
Carth
30634784
/* Ben10toys.net (2006-2018) */
wikitext
text/x-wiki
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Carth, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Ben10toys.net (2006-2018) ===
Hosted on a service called Ning, the forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally run by a user named Agent Spectre, and later given to toy reviewer Stu Carter of Atamaii.com, who maintained the site until sometime in 2018.
[[File:Toysdotnet 2006.png|thumb|Ben10toys.net in 2006]]
[[File:Toysdotnet 2010 banner.png|thumb|The site's banner circa 2010]]
[[File:Toysdotnet 2018.png|thumb|Ben10toys.net in its final years.]]
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
aefee6d80447b4311710d6af2fce99043eb16bf9
1209
1208
2020-07-31T05:50:19Z
Carth
30634784
/* Ben10toys.net (2006-2018) */
wikitext
text/x-wiki
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Carth, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Ben10toys.net (2006-2018) ===
Hosted on a service called Ning, the forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally run by a user named Agent Spectre, and later given to toy reviewer Stu Carter of Atamaii.com, who maintained the site until sometime in 2018.
[[File:Toysdotnet 2006.png|thumb|left|Ben10toys.net in 2006]]
[[File:Toysdotnet 2010 banner.png|thumb|center|The site's banner circa 2010]]
[[File:Toysdotnet 2018.png|thumb|right|Ben10toys.net in its final years.]]
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
8ac4b80027825135148e2cf4ffcec2cf881a3e52
1210
1209
2020-07-31T05:51:35Z
Carth
30634784
/* Ben10toys.net (2006-2018) */
wikitext
text/x-wiki
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Carth, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Ben10toys.net (2006-2018) ===
Hosted on a service called Ning, the forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally run by a user named Agent Spectre, and later given to toy reviewer Stu Carter of Atamaii.com, who maintained the site until sometime in 2018.
File:Toysdotnet 2006.png|thumb|Ben10toys.net in 2006.
File:Toysdotnet 2010 banner.png|thumb|The site's banner circa 2010.
File:Toysdotnet 2018.png|thumb|Ben10toys.net in its final years.
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
db41646decaeaf39a3652b93a64214a90eea8b1d
1211
1210
2020-07-31T05:53:16Z
Carth
30634784
/* Ben10toys.net (2006-2018) */
wikitext
text/x-wiki
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Carth, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Ben10toys.net (2006-2018) ===
Hosted on a service called Ning, the forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally run by a user named Agent Spectre, and later given to toy reviewer Stu Carter of Atamaii.com, who maintained the site until sometime in 2018.
File:Toysdotnet_2006.png| Ben10toys.net circa 2006.
File:Toysdotnet_2010_banner.png| The site's banner circa 2010.
File:Toysdotnet_2018.png| Ben10toys.net in its final years.
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
6e94e7293247614d1f4610d1c0449e894c196d37
1212
1211
2020-07-31T05:53:44Z
Carth
30634784
/* Ben10toys.net (2006-2018) */
wikitext
text/x-wiki
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Carth, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Ben10toys.net (2006-2018) ===
Hosted on a service called Ning, the forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally run by a user named Agent Spectre, and later given to toy reviewer Stu Carter of Atamaii.com, who maintained the site until sometime in 2018.
<center><gallery widths="60px" heights="110px">
File:Toysdotnet_2006.png| Ben10toys.net circa 2006.
File:Toysdotnet_2010_banner.png| The site's banner circa 2010.
File:Toysdotnet_2018.png| Ben10toys.net in its final years.
</gallery></center>
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
e91c1d68a06105f38069deac76ae41ed11680d7f
1216
1212
2020-07-31T05:59:57Z
Carth
30634784
/* Defunct Sites */
wikitext
text/x-wiki
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Carth, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Ben10toys.net (2006-2018) ===
Hosted on a service called Ning, the forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally run by a user named Agent Spectre, and later given to toy reviewer Stu Carter of Atamaii.com, who maintained the site until sometime in 2018.
<center><gallery widths="110px" heights="110px">
File:Toysdotnet_2006.png| Ben10toys.net circa 2006.
File:Toysdotnet_2010_banner.png| The site's banner circa 2010.
File:Toysdotnet_Final.png| Ben10toys.net in its final years.
</gallery></center>
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
55cfd2ab606308d8ab6734711f163eae31d9d113
File:Toysdotnet 2010 banner.png
6
307
1213
2020-07-31T05:54:15Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Toysdotnet 2006.png
6
308
1214
2020-07-31T05:54:32Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Toysdotnet Final.png
6
309
1215
2020-07-31T05:59:16Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Omnitrix (Disambiguation)
0
303
1217
1194
2020-07-31T19:48:46Z
Jaswacker
30585766
/* Ben 10 (2005) */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
placeholder
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:Omnitrix ProtOS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:Omnitrix ProtOS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:PLACEHOLDER2.png|link=[[Eunice]]|The Unimatrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Completed)]]|Ben's "improved" Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Completed)]]|Ben's "improved" Omnitrix
File:PLACEHOLDER2.png|link=[[Nemetrix]]|The Nemetrix
File:PLACEHOLDER2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:PLACEHOLDER2.png|link=[[Stabilizer]]|Albedo's Stabilizer
File:PLACEHOLDER2.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:PLACEHOLDER2.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:PLACEHOLDER2.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:PLACEHOLDER2.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:PLACEHOLDER2.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:PLACEHOLDER2.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
</gallery></center>
d1f1a4ce7ac443a8dc6738cb097bffd1670dadda
1218
1217
2020-07-31T19:51:40Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
placeholder
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:PLACEHOLDER2.png|link=[[Eunice]]|The Unimatrix
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's "improved" Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's "improved" Omnitrix
File:PLACEHOLDER2.png|link=[[Nemetrix]]|The Nemetrix
File:PLACEHOLDER2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:Stabilizer Red.png|link=[[Stabilizer]]|Albedo's Stabilizer
File:PLACEHOLDER2.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:OmnitrixProt Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix MadWorld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:PLACEHOLDER2.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:OmnitrixProt Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixReboot 1.png|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
</gallery></center>
410a543953d6d3b816965a1fe55b5e36a1ec4987
1232
1218
2020-07-31T19:58:22Z
Jaswacker
30585766
/* Ben 10: Omniverse */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
placeholder
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:PLACEHOLDER2.png|link=[[Eunice]]|The Unimatrix
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's "improved" Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's "improved" Omnitrix
File:PLACEHOLDER2.png|link=[[Nemetrix]]|The Nemetrix
File:PLACEHOLDER2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:Stabilizer Red.png|link=[[Stabilizer]]|Albedo's Stabilizer
File:PLACEHOLDER2.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:PLACEHOLDER2.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixReboot 1.png|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
</gallery></center>
2fdfdb0e416a622e879512e6d5f6c495c4df189f
1234
1232
2020-07-31T20:28:52Z
Jaswacker
30585766
/* Ben 10: Omniverse */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
placeholder
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:PLACEHOLDER2.png|link=[[Eunice]]|The Unimatrix
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's "improved" Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's "improved" Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biomnitrix model.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:Stabilizer Red.png|link=[[Stabilizer]]|Albedo's Stabilizer
File:PLACEHOLDER2.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:PLACEHOLDER2.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixReboot 1.png|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
</gallery></center>
577ad40455c9e82f7a2ad416def7229b40ed82a6
1237
1234
2020-07-31T20:58:12Z
Jaswacker
30585766
/* Ben 10: Ultimate Alien */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
placeholder
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:PLACEHOLDER2.png|link=[[Eunice]]|The Unitrix
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's "improved" Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's "improved" Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biomnitrix model.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:Stabilizer Red.png|link=[[Stabilizer]]|Albedo's Stabilizer
File:PLACEHOLDER2.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:PLACEHOLDER2.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixReboot 1.png|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
</gallery></center>
69ad79b0eee0e8b31e5fdef0ec67b5bfd665cc9e
1238
1237
2020-07-31T21:22:09Z
Jaswacker
30585766
/* Ben 10: Omniverse */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
placeholder
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:PLACEHOLDER2.png|link=[[Eunice]]|The Unitrix
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's "improved" Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's "improved" Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biomnitrix model.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:Stabilizer Red.png|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:PLACEHOLDER2.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixReboot 1.png|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
</gallery></center>
4c48a4384f15dd6e238f190047f1155cb46fa5c1
1240
1238
2020-07-31T21:22:57Z
Jaswacker
30585766
/* Ben 10: Omniverse */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
placeholder
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:PLACEHOLDER2.png|link=[[Eunice]]|The Unitrix
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's "improved" Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biomnitrix model.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:Stabilizer Red.png|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:PLACEHOLDER2.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixReboot 1.png|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
</gallery></center>
aee3f54522d2eb066b20b02333fbf9ce94c1cc2b
1241
1240
2020-07-31T21:23:08Z
Jaswacker
30585766
/* Ben 10: Ultimate Alien */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
placeholder
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:PLACEHOLDER2.png|link=[[Eunice]]|The Unitrix
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biomnitrix model.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:Stabilizer Red.png|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:PLACEHOLDER2.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixReboot 1.png|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
</gallery></center>
e61eb8b9f221b6a71c75f459a98b53b40e23e4f1
1242
1241
2020-07-31T22:13:14Z
Jaswacker
30585766
/* Ben 10: Omniverse */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
placeholder
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:PLACEHOLDER2.png|link=[[Eunice]]|The Unitrix
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biomnitrix model.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:Stabilizer Red.png|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixReboot 1.png|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
</gallery></center>
619776cb5e513fa8c847b09ad49ab81cbc5dab3d
1244
1242
2020-08-01T00:15:58Z
Jaswacker
30585766
/* Ben 10: Ultimate Alien */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
placeholder
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biomnitrix model.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:Stabilizer Red.png|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixReboot 1.png|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
</gallery></center>
c30ec868fa4451a74f07479fa8130ef25173d6d8
1248
1244
2020-08-01T02:45:35Z
Jaswacker
30585766
/* Ben 10: Alien Force */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
placeholder
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:PLACEHOLDER2.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biomnitrix model.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:Stabilizer Red.png|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixReboot 1.png|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
</gallery></center>
256ed0ab2e9833ad37b893567ac64ba5771d11c0
1249
1248
2020-08-01T02:45:57Z
Jaswacker
30585766
/* Ben 10: Ultimate Alien */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
placeholder
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biomnitrix model.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:Stabilizer Red.png|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixReboot 1.png|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
</gallery></center>
26f943d2c5eb05b69fb88da4fedbd3e74b2385be
1253
1249
2020-08-01T03:42:43Z
Jaswacker
30585766
/* Ben 10: Omniverse */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
placeholder
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biotrix2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:Stabilizer Red.png|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixReboot 1.png|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
</gallery></center>
0a91c7663a3163f8a60929824790b39d05542d44
File:Omnitrix2 UAF.png
6
310
1219
2020-07-31T19:54:42Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
File:Omnitrix Argitrix.png
6
311
1220
2020-07-31T19:54:55Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
File:Omnitrix BadBen.png
6
312
1221
2020-07-31T19:55:07Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
File:Omnitrix Ben23.png
6
313
1222
2020-07-31T19:55:16Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
File:Omnitrix Gweniverse.png
6
314
1223
2020-07-31T19:55:27Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
File:Omnitrix Madworld.png
6
315
1224
2020-07-31T19:55:38Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
File:Omnitrix Negatrix.png
6
316
1225
2020-07-31T19:55:48Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
1246
1225
2020-08-01T00:24:03Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:Omnitrix Negatrix.png]]
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
1247
1246
2020-08-01T00:28:25Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:Omnitrix Negatrix.png]]
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
File:Omnitrix Prime.png
6
317
1226
2020-07-31T19:55:59Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
File:OmnitrixProt OS.png
6
318
1227
2020-07-31T19:56:10Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
File:OmnitrixProt UAF.png
6
319
1228
2020-07-31T19:56:21Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:OmnitrixReboot 1.png
6
320
1229
2020-07-31T19:56:50Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
File:Stabilizer Red.png
6
321
1230
2020-07-31T19:57:01Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
File:Stablilizer Green.png
6
322
1231
2020-07-31T19:57:11Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
File:OmnitrixProt OV.png
6
323
1233
2020-07-31T19:59:03Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
File:Biomnitrix model.png
6
324
1235
2020-07-31T20:29:18Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
File:Nemetrix model.png
6
325
1236
2020-07-31T20:51:17Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
File:Ultimatrix ov.png
6
326
1239
2020-07-31T21:22:27Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
File:Zombitrixm.png
6
327
1243
2020-07-31T22:13:41Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
File:Unitrix model.png
6
328
1245
2020-08-01T00:16:38Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
File:Ultimatrix ben.png
6
329
1250
2020-08-01T02:46:27Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
File:Ultimatrix albedo.png
6
330
1251
2020-08-01T02:46:46Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
Continuity
0
122
1252
896
2020-08-01T03:36:53Z
Carth
30634784
wikitext
text/x-wiki
Note: This page is entirely tentative, things will be updated at a later date.
Continuity is the flow of events throughout a long running series... is what we would say. Due to different writers on different series, contradicting past events, retcons and the like, Ben 10's continuity is a confusing mess, but because we're crazy, let's try and make sense of it anyway. First, we need to talk about Canonicity Tiers.
== Canonicity Tiers ==
No, not the tears shed as we tried to make sense of everything, these are for the degree of separation between the series and the expanded universe.
=== Level 01: Absolute Canon ===
Without question, the actual cartoon series is the bulk of this tier. Sometimes due to later events, things can be taken out of this tier as if they never happened, this is what's known as a [[Continuity#Level_04:_Retroactive_Continuity|retcon]].
=== Level 02: Dubiously Canon ===
This refers to the expanded universe media related to a series, which may or may not be fully or partially true, if at all, in the context of the original story. Things such as the video games, comics, crew statements and the like. Until properly confirmed, these stay in this tier.
A good example of Dubious Canonicity comes from the Nintendo DS version of Vilgax Attacks, in which at the end of a fight with Albedo, he transforms into Negative Alien X, only to be trapped in the form for an entire year... which according to Paradox in the episode [[Ben 10,000 Returns]], happened in a separate timeline.
=== Level 03: Non Canon ===
Non-Canon involves things like most crossovers, like FusionFall, or Super Secret Crisis War, as well as random promotional videos that introduce new aliens, such as the Total Access adverts.
=== Level 04: Retroactive Continuity ===
Retcons. A good example of one was when Eon was made not to be a Chronian, but an alternate evil Ben Tennyson. Another good example would be when Kevin's father Devin turned out to be a false memory implanted into his mind by Proctor Servantis.
<noinclude>[[Category:Meta]]</noinclude>
a78967f75c8300dc9b04ab284b012905efa10a13
File:Biotrix2.png
6
331
1254
2020-08-01T03:42:56Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
1255
1254
2020-08-01T03:43:16Z
Jaswacker
30585766
wikitext
text/x-wiki
This is FAN ART. NOT OFFICIAL.
769b3aa03546654d19affc5a05318570438881ee
File:Af trix.png
6
332
1256
2020-08-01T04:44:35Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
File:Albedo trix.png
6
333
1257
2020-08-01T04:44:52Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
Omnitrix (Disambiguation)
0
303
1258
1253
2020-08-01T04:45:03Z
Jaswacker
30585766
/* Ben 10: Alien Force */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
placeholder
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:af trix.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biotrix2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:Stabilizer Red.png|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixReboot 1.png|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
</gallery></center>
680ef76e6925d97fc773335c2c6bf8aba12f28cd
1259
1258
2020-08-01T04:47:48Z
Jaswacker
30585766
/* Ben 10: Ultimate Alien */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
placeholder
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:af trix.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:af trix.png|link=[[Ultimatrix]]|[[Ben 10,000 (Ultimate Alien|Ben 10,000]]'s Ultimatrix that turns him into [[Ultimate Ben]]
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biotrix2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:Stabilizer Red.png|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixReboot 1.png|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
</gallery></center>
4d6e5aab642b29f67dc775804a636d6cd7da71c0
1261
1259
2020-08-01T04:59:06Z
Jaswacker
30585766
/* Ben 10: Ultimate Alien */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
placeholder
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:af trix.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:10kreturnstrix.png|link=[[Ultimatrix]]|[[Ben 10,000 (Ultimate Alien|Ben 10,000]]'s Ultimatrix that turns him into [[Ultimate Ben]]
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biotrix2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:Stabilizer Red.png|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixReboot 1.png|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
</gallery></center>
93731caf9d27c47a354062306c243ca679797ee7
1263
1261
2020-08-01T23:18:07Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
placeholder
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:af trix.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:10kreturnstrix.png|link=[[Ultimatrix]]|[[Ben 10,000 (Ultimate Alien|Ben 10,000]]'s Ultimatrix that turns him into [[Ultimate Ben]]
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biotrix2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:Stabilizer Red.png|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixReboot 1.png|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
</gallery></center>
2872b7fce5df136a9f8534d3f68a009458065d5a
1284
1263
2020-08-02T20:37:52Z
Carth
30634784
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth (Prime)|Azmuth]] of the Galvan, in an effort to make peace among varying species. Throughout the greater multiverse, many versions of the Omnitrix have been seen.
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:af trix.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:10kreturnstrix.png|link=[[Ultimatrix]]|[[Ben 10,000 (Ultimate Alien|Ben 10,000]]'s Ultimatrix that turns him into [[Ultimate Ben]]
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biotrix2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:Stabilizer Red.png|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixReboot 1.png|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
</gallery></center>
c3d0c4511ba0ac29406ab0132093efe6dabef899
1285
1284
2020-08-02T20:42:29Z
Carth
30634784
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth (Prime)|Azmuth]] of the [[Galvan (Prime)|Galvan]], in an effort to make peace among varying species. Throughout the greater multiverse, many versions of the Omnitrix have been seen.
The original found its way onto the wrist of then 10-year-old [[Ben Tennyson (Prime)|Ben Tennyson]], who would go then use he device to save the world, universe, and multiverse, many times over.
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:af trix.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:10kreturnstrix.png|link=[[Ultimatrix]]|[[Ben 10,000 (Ultimate Alien|Ben 10,000]]'s Ultimatrix that turns him into [[Ultimate Ben]]
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biotrix2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:Stabilizer Red.png|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixReboot 1.png|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
</gallery></center>
72baee4f5edecc7c6e84dc0d40eac7db9cc10d73
1287
1285
2020-08-02T20:44:14Z
Carth
30634784
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth]] of the [[Galvan]], in an effort to make peace among varying species. The original found its way onto the wrist of then 10-year-old [[Ben Tennyson]], who would go then use he device to save the world, universe, and multiverse, many times over. Throughout the greater multiverse, many versions of the Omnitrix have been seen.
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:af trix.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:10kreturnstrix.png|link=[[Ultimatrix]]|[[Ben 10,000 (Ultimate Alien|Ben 10,000]]'s Ultimatrix that turns him into [[Ultimate Ben]]
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biotrix2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:Stabilizer Red.png|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixReboot 1.png|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
</gallery></center>
74897b7307d881954e27ff58cc2c335ed5df0642
File:10kreturnstrix.png
6
334
1260
2020-08-01T04:58:21Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
File:10ktrix.png
6
335
1262
2020-08-01T23:17:59Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
Villains
0
336
1264
2020-08-02T02:02:33Z
Carth
30634784
Created page with "== Villains introduced in Ben 10 (2005) == == Villains introduced in Ben 10: Alien Force == == Villains introduced in Ben 10: Ultimate Alien == == Villains introduced in Be..."
wikitext
text/x-wiki
== Villains introduced in Ben 10 (2005) ==
== Villains introduced in Ben 10: Alien Force ==
== Villains introduced in Ben 10: Ultimate Alien ==
== Villains introduced in Ben 10: Omniverse ==
== Villains introduced in Ben 10 (2016) ==
4d528ea3c173316753f8ddc97469e1f7a5d07482
1265
1264
2020-08-02T02:03:35Z
Carth
30634784
wikitext
text/x-wiki
== Ben 10 (2005) ==
== Ben 10: Alien Force ==
== Ben 10: Ultimate Alien ==
== Ben 10: Omniverse ==
== Ben 10 (2016) ==
2410f3deabdbd81c59bb65beb9f8decb14842cd9
Upchuck/Designs
0
337
1266
2020-08-02T02:31:59Z
Jaswacker
30585766
Created page with "{{trix|ogs|alf|ula|onv}} __TOC__ {{-}} == Designs == <center><gallery widths="100px"> File:PLACEHOLDER2.png|caption File:PLACEHOLDER2.png|caption File:PLACEHOLDER2.png|captio..."
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
__TOC__
{{-}}
== Designs ==
<center><gallery widths="100px">
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
</gallery></center>
{{-}}
== Outfits ==
<center><gallery widths="100px">
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
</gallery></center>
{{-}}
== Color Palettes ==
=== ''[[Ben 10 (2005)|Ben 10]]'' (2005) ===
<center><gallery widths="100px">
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
</gallery></center>
{{-}}
=== ''[[Ben 10: Alien Force]]'' ===
<center><gallery widths="100px">
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
</gallery></center>
{{-}}
=== ''[[Ben 10: Ultimate Alien]]'' ===
<center><gallery widths="100px">
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
</gallery></center>
{{-}}
=== ''[[Ben 10: Omniverse]]'' ===
<center><gallery widths="100px">
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
</gallery></center>
{{-}}
351d020e86443c713afc40705163171be0e2ce90
Upchuck/Gallery
0
338
1267
2020-08-02T02:39:07Z
Jaswacker
30585766
Created page with "{{trix|ogs|alf|ula|onv}} __TOC__ {{-}} == Storyboards == <center><gallery widths="100px"> File:PLACEHOLDER2.png|caption File:PLACEHOLDER2.png|caption File:PLACEHOLDER2.png|ca..."
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
__TOC__
{{-}}
== Storyboards ==
<center><gallery widths="100px">
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
</gallery></center>
{{-}}
== Promotional Artwork ==
<center><gallery widths="100px">
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
</gallery></center>
{{-}}
== Model Sheets ==
<center><gallery widths="100px">
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
</gallery></center>
{{-}}
== Concept Art ==
<center><gallery widths="100px">
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
</gallery></center>
{{-}}
== Crew Artwork and Sketches ==
<center><gallery widths="100px">
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
</gallery></center>
{{-}}
98b0d3d87f39db5a4cacb2a6656f5e8357ff1def
Transformations/Prime
0
95
1268
1045
2020-08-02T02:44:45Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
{{DISPLAYTITLE:Steven Universe/Gallery}}
__TOC__
{{-}}
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
{{:Transformations/Prime/trixos}}
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Perk)</small>
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]] <br><small>(Introduced in ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'')</small>
File:PLACEHOLDER2.png|[[Buzzshock]] <br><small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|[[Spitter]] <br><small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Arctiguana]] <br><small>(First used by Ben 10,000)</small>
</gallery></center>
{{-}}
== Introduced in [[Ben 10: Alien Force]] ==
{{:Transformations/Prime/trixuaf}}
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Murk)</small>
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|[[Nanomech]] <br><small>(Introduced in ''[[Ben 10: Alien Swarm|Alien Swarm]]'')</small>
</gallery></center>
{{-}}
== Introduced in [[Ben 10: Ultimate Alien]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Water Hazard]]
File:PLACEHOLDER2.png|[[AmpFibian]]
File:PLACEHOLDER2.png|[[Armodrillo]]
File:PLACEHOLDER2.png|[[Terraspin]]
File:PLACEHOLDER2.png|[[NRG]]
File:PLACEHOLDER2.png|[[Fasttrack]]
File:PLACEHOLDER2.png|[[Clockwork]]
File:PLACEHOLDER2.png|[[Chamalien]]
File:PLACEHOLDER2.png|[[Shocksquatch]] <br><small>(Introduced in ''[[Ben 10/Generator Rex: Heroes United|Heroes United]]'')</small>
File:PLACEHOLDER2.png|[[Eatle]]
File:PLACEHOLDER2.png|[[Juryrigg]]
</gallery></center>
{{-}}
== Introduced in [[Ben 10: Omniverse]] ==
{{:Transformations/Prime/trixov}}
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Feedback]]
File:PLACEHOLDER2.png|[[Bloxx]]
File:PLACEHOLDER2.png|[[Gravattack]]
File:PLACEHOLDER2.png|[[Crashhopper]]
File:PLACEHOLDER2.png|[[Ball Weevil]]
File:PLACEHOLDER2.png|[[Walkatrout]]
File:PLACEHOLDER2.png|[[Pesky Dust]]
File:PLACEHOLDER2.png|[[Mole-Stache]]
File:PLACEHOLDER2.png|[[The Worst]]
File:PLACEHOLDER2.png|[[Kickin Hawk]]
File:PLACEHOLDER2.png|[[Astrodactyl]]
File:PLACEHOLDER2.png|[[Toepick]]
File:PLACEHOLDER2.png|[[Bullfrag]]
File:PLACEHOLDER2.png|[[Atomix]]
File:PLACEHOLDER2.png|[[Gutrot]]
File:PLACEHOLDER2.png|[[Whampire]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
{{-}}
c9bb256c304fa1de025aecb56f114e1f3aacaba0
1269
1268
2020-08-02T02:45:04Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
__TOC__
{{-}}
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
{{:Transformations/Prime/trixos}}
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Perk)</small>
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]] <br><small>(Introduced in ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'')</small>
File:PLACEHOLDER2.png|[[Buzzshock]] <br><small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|[[Spitter]] <br><small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Arctiguana]] <br><small>(First used by Ben 10,000)</small>
</gallery></center>
{{-}}
== Introduced in [[Ben 10: Alien Force]] ==
{{:Transformations/Prime/trixuaf}}
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Murk)</small>
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|[[Nanomech]] <br><small>(Introduced in ''[[Ben 10: Alien Swarm|Alien Swarm]]'')</small>
</gallery></center>
{{-}}
== Introduced in [[Ben 10: Ultimate Alien]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Water Hazard]]
File:PLACEHOLDER2.png|[[AmpFibian]]
File:PLACEHOLDER2.png|[[Armodrillo]]
File:PLACEHOLDER2.png|[[Terraspin]]
File:PLACEHOLDER2.png|[[NRG]]
File:PLACEHOLDER2.png|[[Fasttrack]]
File:PLACEHOLDER2.png|[[Clockwork]]
File:PLACEHOLDER2.png|[[Chamalien]]
File:PLACEHOLDER2.png|[[Shocksquatch]] <br><small>(Introduced in ''[[Ben 10/Generator Rex: Heroes United|Heroes United]]'')</small>
File:PLACEHOLDER2.png|[[Eatle]]
File:PLACEHOLDER2.png|[[Juryrigg]]
</gallery></center>
{{-}}
== Introduced in [[Ben 10: Omniverse]] ==
{{:Transformations/Prime/trixov}}
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Feedback]]
File:PLACEHOLDER2.png|[[Bloxx]]
File:PLACEHOLDER2.png|[[Gravattack]]
File:PLACEHOLDER2.png|[[Crashhopper]]
File:PLACEHOLDER2.png|[[Ball Weevil]]
File:PLACEHOLDER2.png|[[Walkatrout]]
File:PLACEHOLDER2.png|[[Pesky Dust]]
File:PLACEHOLDER2.png|[[Mole-Stache]]
File:PLACEHOLDER2.png|[[The Worst]]
File:PLACEHOLDER2.png|[[Kickin Hawk]]
File:PLACEHOLDER2.png|[[Astrodactyl]]
File:PLACEHOLDER2.png|[[Toepick]]
File:PLACEHOLDER2.png|[[Bullfrag]]
File:PLACEHOLDER2.png|[[Atomix]]
File:PLACEHOLDER2.png|[[Gutrot]]
File:PLACEHOLDER2.png|[[Whampire]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
{{-}}
5ab5c30964017085aa7b261623a08ed9e471630f
1271
1269
2020-08-02T06:45:38Z
Carth
30634784
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
__TOC__
{{-}}
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Perk)</small>
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]] <br><small>(Introduced in ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'')</small>
File:PLACEHOLDER2.png|[[Buzzshock]] <br><small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|[[Spitter]] <br><small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Arctiguana]] <br><small>(First used by Ben 10,000)</small>
</gallery></center>
{{-}}
== Introduced in [[Ben 10: Alien Force]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Murk)</small>
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|[[Nanomech]] <br><small>(Introduced in ''[[Ben 10: Alien Swarm|Alien Swarm]]'')</small>
</gallery></center>
{{-}}
== Introduced in [[Ben 10: Ultimate Alien]] ==
File:PLACEHOLDER2.png|[[Water Hazard]]
File:PLACEHOLDER2.png|[[AmpFibian]]
File:PLACEHOLDER2.png|[[Armodrillo]]
File:PLACEHOLDER2.png|[[Terraspin]]
File:PLACEHOLDER2.png|[[NRG]]
File:PLACEHOLDER2.png|[[Fasttrack]]
File:PLACEHOLDER2.png|[[Clockwork]]
File:PLACEHOLDER2.png|[[Chamalien]]
File:PLACEHOLDER2.png|[[Shocksquatch]] <br><small>(Introduced in ''[[Ben 10/Generator Rex: Heroes United|Heroes United]]'')</small>
File:PLACEHOLDER2.png|[[Eatle]]
File:PLACEHOLDER2.png|[[Juryrigg]]
</gallery></center>
{{-}}
== Introduced in [[Ben 10: Omniverse]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Feedback]]
File:PLACEHOLDER2.png|[[Bloxx]]
File:PLACEHOLDER2.png|[[Gravattack]]
File:PLACEHOLDER2.png|[[Crashhopper]]
File:PLACEHOLDER2.png|[[Ball Weevil]]
File:PLACEHOLDER2.png|[[Walkatrout]]
File:PLACEHOLDER2.png|[[Pesky Dust]]
File:PLACEHOLDER2.png|[[Mole-Stache]]
File:PLACEHOLDER2.png|[[The Worst]]
File:PLACEHOLDER2.png|[[Kickin Hawk]]
File:PLACEHOLDER2.png|[[Astrodactyl]]
File:PLACEHOLDER2.png|[[Toepick]]
File:PLACEHOLDER2.png|[[Bullfrag]]
File:PLACEHOLDER2.png|[[Atomix]]
File:PLACEHOLDER2.png|[[Gutrot]]
File:PLACEHOLDER2.png|[[Whampire]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
{{-}}
59a78e2e1989a30debbabaa718d9cf30d4e0ecec
1272
1271
2020-08-02T06:46:24Z
Carth
30634784
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
__TOC__
{{-}}
== Introduced in [[Ben 10 (2005)|Ben 10]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|[[Ripjaws]]
File:PLACEHOLDER2.png|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|[[Ghostfreak]]
File:PLACEHOLDER2.png|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|[[Blitzwolfer]]
File:PLACEHOLDER2.png|[[Snare-oh]]
File:PLACEHOLDER2.png|[[Frankenstrike]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Perk)</small>
File:PLACEHOLDER2.png|[[Ditto]]
File:PLACEHOLDER2.png|[[Eye Guy]]
File:PLACEHOLDER2.png|[[Way Big]] <br><small>(Introduced in ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'')</small>
File:PLACEHOLDER2.png|[[Buzzshock]] <br><small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|[[Spitter]] <br><small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|[[Arctiguana]] <br><small>(First used by Ben 10,000)</small>
</gallery></center>
{{-}}
== Introduced in [[Ben 10: Alien Force]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Murk)</small>
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|[[Nanomech]] <br><small>(Introduced in ''[[Ben 10: Alien Swarm|Alien Swarm]]'')</small>
</gallery></center>
{{-}}
== Introduced in [[Ben 10: Ultimate Alien]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Water Hazard]]
File:PLACEHOLDER2.png|[[AmpFibian]]
File:PLACEHOLDER2.png|[[Armodrillo]]
File:PLACEHOLDER2.png|[[Terraspin]]
File:PLACEHOLDER2.png|[[NRG]]
File:PLACEHOLDER2.png|[[Fasttrack]]
File:PLACEHOLDER2.png|[[Clockwork]]
File:PLACEHOLDER2.png|[[Chamalien]]
File:PLACEHOLDER2.png|[[Shocksquatch]] <br><small>(Introduced in ''[[Ben 10/Generator Rex: Heroes United|Heroes United]]'')</small>
File:PLACEHOLDER2.png|[[Eatle]]
File:PLACEHOLDER2.png|[[Juryrigg]]
</gallery></center>
{{-}}
== Introduced in [[Ben 10: Omniverse]] ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Feedback]]
File:PLACEHOLDER2.png|[[Bloxx]]
File:PLACEHOLDER2.png|[[Gravattack]]
File:PLACEHOLDER2.png|[[Crashhopper]]
File:PLACEHOLDER2.png|[[Ball Weevil]]
File:PLACEHOLDER2.png|[[Walkatrout]]
File:PLACEHOLDER2.png|[[Pesky Dust]]
File:PLACEHOLDER2.png|[[Mole-Stache]]
File:PLACEHOLDER2.png|[[The Worst]]
File:PLACEHOLDER2.png|[[Kickin Hawk]]
File:PLACEHOLDER2.png|[[Astrodactyl]]
File:PLACEHOLDER2.png|[[Toepick]]
File:PLACEHOLDER2.png|[[Bullfrag]]
File:PLACEHOLDER2.png|[[Atomix]]
File:PLACEHOLDER2.png|[[Gutrot]]
File:PLACEHOLDER2.png|[[Whampire]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
{{-}}
d3dea60dd4dee4584a5035d454c435e37fd7ccae
Minor Transformations/Ben 23
0
176
1270
1182
2020-08-02T03:24:38Z
Carth
30634784
wikitext
text/x-wiki
__NOTOC__
This page is dedicated to the alien transformations of [[Ben Tennyson (Dimension 23)|Ben 23]]. It is assumed that Ben 23 has access to every form that [[Ben Tennyson (Prime)|Ben]] has access to, with [[Minor Transformations/Ben 23#Trunkman|some]] [[Minor Transformations/Unseen#Decimus Prime|exceptions]].
<sup>[[Minor_Transformations/Ben_23|Full page link.]]</sup>
{{-}}
===Freezelizard===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Rollaway===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Electricyeti===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Build-A-Guy===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Eye Guy===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Vomit Man===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Speedy Quick===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Toolboxx===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Nighty Knight===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Mr Monkey===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Techno-Bubble===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Rollaway===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Dino-Mighty===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Freezeghost===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Handyman===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Lightning Volt===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Brainfrog===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
==Unseen==
===Giant-Manster===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Feedback===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Dog-Nabbit===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Charcoal-Man===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
This name is conjecture.
{{-}}
===Copy Copy===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Muck-A-Muck===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Windy-Hindy===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Orbit Man===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
This name is conjecture.
{{-}}
===Teeny-Weeny===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Mr. Mucky===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Non-Canon==
===Fright Face===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Tigerizer===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Bat-Dude===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Fish Fingers===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
This name is conjecture.
{{-}}
===Trunkman===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
18028e1609763f593e9e2027958bf37f074f4f06
Transformations/Reboot
0
184
1273
939
2020-08-02T06:47:13Z
Carth
30634784
wikitext
text/x-wiki
}
__TOC__
== Regular Forms ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Cannonbolt (Reboot|Cannonbolt]]
File:PLACEHOLDER2.png|[[Overflow]]
File:PLACEHOLDER2.png|[[Heatblast (Reboot)|Heatblast]]
File:PLACEHOLDER2.png|[[XLR8 (Reboot)|XLR8]]
File:PLACEHOLDER2.png|[[Four Arms (Reboot)|Four Arms]]
File:PLACEHOLDER2.png|[[Grey Matter (Reboot)|Grey Matter]]
File:PLACEHOLDER2.png|[[Diamondhead (Reboot)|Diamondhead]]
File:PLACEHOLDER2.png|[[Upgrade (Reboot)|Upgrade]]
File:PLACEHOLDER2.png|[[Stinkfly (Reboot)|Stinkfly]]
File:PLACEHOLDER2.png|[[Wildvine (Reboot)|Wildvine]]
File:PLACEHOLDER2.png|[[Gax]]
File:PLACEHOLDER2.png|[[Shock Rock]]
File:PLACEHOLDER2.png|[[Slapback]]
File:PLACEHOLDER2.png|[[Humungousaur (Reboot)|Humungousaur]]
File:PLACEHOLDER2.png|[[Rath (Reboot)|Rath]]
File:PLACEHOLDER2.png|[[Jetray (Reboot)|Jetray]]
</gallery></center>
== Omni-Enhanced ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Diamondhead (Reboot)|Diamondhead]]
File:PLACEHOLDER2.png|[[Grey Matter (Reboot)|Grey Matter]]
File:PLACEHOLDER2.png|[[Wildvine (Reboot)|Wildvine]]
File:PLACEHOLDER2.png|[[Heatblast (Reboot)|Heatblast]]
File:PLACEHOLDER2.png|[[Four Arms (Reboot)|Four Arms]]
File:PLACEHOLDER2.png|[[Cannonbolt (Reboot|Cannonbolt]]
File:PLACEHOLDER2.png|[[Stinkfly (Reboot)|Stinkfly]]
File:PLACEHOLDER2.png|[[Overflow]]
File:PLACEHOLDER2.png|[[XLR8 (Reboot)|XLR8]]
</gallery></center>
== Omni-Kix ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Four Arms (Reboot)|Four Arms]]
File:PLACEHOLDER2.png|[[Heatblast (Reboot)|Heatblast]]
File:PLACEHOLDER2.png|[[Humungousaur (Reboot)|Humungousaur]]
File:PLACEHOLDER2.png|[[Shock Rock]]
File:PLACEHOLDER2.png|[[XLR8 (Reboot)|XLR8]]
File:PLACEHOLDER2.png|[[Rath (Reboot)|Rath]]
File:PLACEHOLDER2.png|[[Cannonbolt (Reboot|Cannonbolt]]
File:PLACEHOLDER2.png|[[Diamondhead (Reboot)|Diamondhead]]
File:PLACEHOLDER2.png|[[Slapback]]
File:PLACEHOLDER2.png|[[Jetray (Reboot)|Jetray]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
b96c40efd07d3fba68e03b153ceb9eac35ce0687
1274
1273
2020-08-02T10:02:06Z
Carth
30634784
wikitext
text/x-wiki
}
__TOC__
== Regular Forms ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Cannonbolt (Reboot|Cannonbolt]]
File:PLACEHOLDER2.png|[[Overflow]]
File:PLACEHOLDER2.png|[[Heatblast (Reboot)|Heatblast]]
File:PLACEHOLDER2.png|[[XLR8 (Reboot)|XLR8]]
File:PLACEHOLDER2.png|[[Four Arms (Reboot)|Four Arms]]
File:PLACEHOLDER2.png|[[Grey Matter (Reboot)|Grey Matter]]
File:PLACEHOLDER2.png|[[Diamondhead (Reboot)|Diamondhead]]
File:PLACEHOLDER2.png|[[Upgrade (Reboot)|Upgrade]]
File:PLACEHOLDER2.png|[[Stinkfly (Reboot)|Stinkfly]]
File:PLACEHOLDER2.png|[[Wildvine (Reboot)|Wildvine]]
File:PLACEHOLDER2.png|[[Gax]]
File:PLACEHOLDER2.png|[[Shock Rock]]
File:PLACEHOLDER2.png|[[Slapback]]
File:PLACEHOLDER2.png|[[Humungousaur (Reboot)|Humungousaur]]
File:PLACEHOLDER2.png|[[Rath (Reboot)|Rath]]
File:PLACEHOLDER2.png|[[Jetray (Reboot)|Jetray]]
</gallery></center>
== Omni-Enhanced ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Diamondhead (Reboot)|Diamondhead]]
File:PLACEHOLDER2.png|[[Grey Matter (Reboot)|Grey Matter]]
File:PLACEHOLDER2.png|[[Wildvine (Reboot)|Wildvine]]
File:PLACEHOLDER2.png|[[Heatblast (Reboot)|Heatblast]]
File:PLACEHOLDER2.png|[[Four Arms (Reboot)|Four Arms]]
File:PLACEHOLDER2.png|[[Cannonbolt (Reboot|Cannonbolt]]
File:PLACEHOLDER2.png|[[Stinkfly (Reboot)|Stinkfly]]
File:PLACEHOLDER2.png|[[Overflow]]
File:PLACEHOLDER2.png|[[XLR8 (Reboot)|XLR8]]
</gallery></center>
== Omni-Kix ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Four Arms (Reboot)|Four Arms]]
File:PLACEHOLDER2.png|[[Heatblast (Reboot)|Heatblast]]
File:PLACEHOLDER2.png|[[Humungousaur (Reboot)|Humungousaur]]
File:PLACEHOLDER2.png|[[Shock Rock]]
File:PLACEHOLDER2.png|[[XLR8 (Reboot)|XLR8]]
File:PLACEHOLDER2.png|[[Rath (Reboot)|Rath]]
File:PLACEHOLDER2.png|[[Cannonbolt (Reboot|Cannonbolt]]
File:PLACEHOLDER2.png|[[Diamondhead (Reboot)|Diamondhead]]
File:PLACEHOLDER2.png|[[Slapback]]
File:PLACEHOLDER2.png|[[Jetray (Reboot)|Jetray]]
</gallery></center>
== Omni-Naut ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Reboot)|Heatblast]]
File:PLACEHOLDER2.png|[[Humungousaur (Reboot)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Reboot)|Jetray]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
f5ce90399249e63a5120703facf57ce2e5f14f49
1275
1274
2020-08-02T10:03:37Z
Carth
30634784
/* Omni-Naut */
wikitext
text/x-wiki
}
__TOC__
== Regular Forms ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Cannonbolt (Reboot|Cannonbolt]]
File:PLACEHOLDER2.png|[[Overflow]]
File:PLACEHOLDER2.png|[[Heatblast (Reboot)|Heatblast]]
File:PLACEHOLDER2.png|[[XLR8 (Reboot)|XLR8]]
File:PLACEHOLDER2.png|[[Four Arms (Reboot)|Four Arms]]
File:PLACEHOLDER2.png|[[Grey Matter (Reboot)|Grey Matter]]
File:PLACEHOLDER2.png|[[Diamondhead (Reboot)|Diamondhead]]
File:PLACEHOLDER2.png|[[Upgrade (Reboot)|Upgrade]]
File:PLACEHOLDER2.png|[[Stinkfly (Reboot)|Stinkfly]]
File:PLACEHOLDER2.png|[[Wildvine (Reboot)|Wildvine]]
File:PLACEHOLDER2.png|[[Gax]]
File:PLACEHOLDER2.png|[[Shock Rock]]
File:PLACEHOLDER2.png|[[Slapback]]
File:PLACEHOLDER2.png|[[Humungousaur (Reboot)|Humungousaur]]
File:PLACEHOLDER2.png|[[Rath (Reboot)|Rath]]
File:PLACEHOLDER2.png|[[Jetray (Reboot)|Jetray]]
</gallery></center>
== Omni-Enhanced ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Diamondhead (Reboot)|Diamondhead]]
File:PLACEHOLDER2.png|[[Grey Matter (Reboot)|Grey Matter]]
File:PLACEHOLDER2.png|[[Wildvine (Reboot)|Wildvine]]
File:PLACEHOLDER2.png|[[Heatblast (Reboot)|Heatblast]]
File:PLACEHOLDER2.png|[[Four Arms (Reboot)|Four Arms]]
File:PLACEHOLDER2.png|[[Cannonbolt (Reboot|Cannonbolt]]
File:PLACEHOLDER2.png|[[Stinkfly (Reboot)|Stinkfly]]
File:PLACEHOLDER2.png|[[Overflow]]
File:PLACEHOLDER2.png|[[XLR8 (Reboot)|XLR8]]
</gallery></center>
== Omni-Kix ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Four Arms (Reboot)|Four Arms]]
File:PLACEHOLDER2.png|[[Heatblast (Reboot)|Heatblast]]
File:PLACEHOLDER2.png|[[Humungousaur (Reboot)|Humungousaur]]
File:PLACEHOLDER2.png|[[Shock Rock]]
File:PLACEHOLDER2.png|[[XLR8 (Reboot)|XLR8]]
File:PLACEHOLDER2.png|[[Rath (Reboot)|Rath]]
File:PLACEHOLDER2.png|[[Cannonbolt (Reboot|Cannonbolt]]
File:PLACEHOLDER2.png|[[Diamondhead (Reboot)|Diamondhead]]
File:PLACEHOLDER2.png|[[Slapback]]
File:PLACEHOLDER2.png|[[Jetray (Reboot)|Jetray]]
</gallery></center>
== Omni-Naut ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Reboot)|Heatblast]]
File:PLACEHOLDER2.png|[[Humungousaur (Reboot)|Humungousaur]]
File:PLACEHOLDER2.png|[[Shock Rock]]
File:PLACEHOLDER2.png|[[Jetray (Reboot)|Jetray]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
3a867e71a5b5591b5ac021cb68dc1114625cca9f
1276
1275
2020-08-02T10:03:55Z
Carth
30634784
wikitext
text/x-wiki
__TOC__
== Regular Forms ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Cannonbolt (Reboot|Cannonbolt]]
File:PLACEHOLDER2.png|[[Overflow]]
File:PLACEHOLDER2.png|[[Heatblast (Reboot)|Heatblast]]
File:PLACEHOLDER2.png|[[XLR8 (Reboot)|XLR8]]
File:PLACEHOLDER2.png|[[Four Arms (Reboot)|Four Arms]]
File:PLACEHOLDER2.png|[[Grey Matter (Reboot)|Grey Matter]]
File:PLACEHOLDER2.png|[[Diamondhead (Reboot)|Diamondhead]]
File:PLACEHOLDER2.png|[[Upgrade (Reboot)|Upgrade]]
File:PLACEHOLDER2.png|[[Stinkfly (Reboot)|Stinkfly]]
File:PLACEHOLDER2.png|[[Wildvine (Reboot)|Wildvine]]
File:PLACEHOLDER2.png|[[Gax]]
File:PLACEHOLDER2.png|[[Shock Rock]]
File:PLACEHOLDER2.png|[[Slapback]]
File:PLACEHOLDER2.png|[[Humungousaur (Reboot)|Humungousaur]]
File:PLACEHOLDER2.png|[[Rath (Reboot)|Rath]]
File:PLACEHOLDER2.png|[[Jetray (Reboot)|Jetray]]
</gallery></center>
== Omni-Enhanced ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Diamondhead (Reboot)|Diamondhead]]
File:PLACEHOLDER2.png|[[Grey Matter (Reboot)|Grey Matter]]
File:PLACEHOLDER2.png|[[Wildvine (Reboot)|Wildvine]]
File:PLACEHOLDER2.png|[[Heatblast (Reboot)|Heatblast]]
File:PLACEHOLDER2.png|[[Four Arms (Reboot)|Four Arms]]
File:PLACEHOLDER2.png|[[Cannonbolt (Reboot|Cannonbolt]]
File:PLACEHOLDER2.png|[[Stinkfly (Reboot)|Stinkfly]]
File:PLACEHOLDER2.png|[[Overflow]]
File:PLACEHOLDER2.png|[[XLR8 (Reboot)|XLR8]]
</gallery></center>
== Omni-Kix ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Four Arms (Reboot)|Four Arms]]
File:PLACEHOLDER2.png|[[Heatblast (Reboot)|Heatblast]]
File:PLACEHOLDER2.png|[[Humungousaur (Reboot)|Humungousaur]]
File:PLACEHOLDER2.png|[[Shock Rock]]
File:PLACEHOLDER2.png|[[XLR8 (Reboot)|XLR8]]
File:PLACEHOLDER2.png|[[Rath (Reboot)|Rath]]
File:PLACEHOLDER2.png|[[Cannonbolt (Reboot|Cannonbolt]]
File:PLACEHOLDER2.png|[[Diamondhead (Reboot)|Diamondhead]]
File:PLACEHOLDER2.png|[[Slapback]]
File:PLACEHOLDER2.png|[[Jetray (Reboot)|Jetray]]
</gallery></center>
== Omni-Naut ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Reboot)|Heatblast]]
File:PLACEHOLDER2.png|[[Humungousaur (Reboot)|Humungousaur]]
File:PLACEHOLDER2.png|[[Shock Rock]]
File:PLACEHOLDER2.png|[[Jetray (Reboot)|Jetray]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
61e718905db2997493392317b8d474d923d20196
File:Madbenpose BYUPGRADERATH.png
6
339
1277
2020-08-02T16:05:33Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL.
By Ethan (Upgraderath)
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
By Ethan (Upgraderath)
c76592ef211ea0484a369c18843fa1c5177a68e1
File:Negabenpose BYUPGRADERATH.png
6
340
1278
2020-08-02T16:06:20Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL.
By Ethan (Upgraderath)
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
By Ethan (Upgraderath)
c76592ef211ea0484a369c18843fa1c5177a68e1
Ben Tennyson (Disambiguation)
0
24
1279
1203
2020-08-02T16:13:56Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:Eon_UltimateAlien.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
</gallery></center>
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|"Ben 23"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Character/Aliens#Argit 10|"Argit 10"]]
</gallery></center>
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
==Other==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
49580287c3fe480d56e83ee423db7b7c9e0192ec
1281
1279
2020-08-02T20:12:37Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:Eon_UltimateAlien.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
</gallery></center>
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|"Ben 23"]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Character/Aliens#Argit 10|"Argit 10"]]
</gallery></center>
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
==Other==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
78dcb6a4a25cd59906274d0081e951f0762a94a6
1282
1281
2020-08-02T20:31:10Z
Jaswacker
30585766
/* The Greater Multiverse */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:Eon_UltimateAlien.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
</gallery></center>
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|"Ben 23"]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Character/Aliens#Argit 10|"Argit 10"]]
</gallery></center>
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
==Other==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
f17f9f2e061433541751b693feebf695e7d4a27c
1283
1282
2020-08-02T20:31:45Z
Jaswacker
30585766
/* The Greater Multiverse */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:Eon_UltimateAlien.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
</gallery></center>
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Character/Aliens#Argit 10|"Argit 10"]]
</gallery></center>
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
==Other==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
dd980b0b6138dccbcbdda95297e1186f8d709427
File:No watch ben.png
6
341
1280
2020-08-02T20:11:54Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL
2c46e78240e97cac2226e61068fab9b6a5340f66
Template:Itembox
10
342
1286
2020-08-02T20:43:54Z
Jaswacker
30585766
Created page with "{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px;..."
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Name'''
|- style="vertical-align: top"
{{#if:{{{name|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Name'''
{{!}} style="width:17em" {{!}} {{{name|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{alias|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Aliases'''
{{!}} {{{alias}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Details'''
|- style="vertical-align: top"
{{#if:{{{level|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Level'''
{{!}} {{{level}}}
|}}
|- style="vertical-align: top"
{{#if:{{{function|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Function'''
{{!}} {{{function}}}
|}}
|- style="vertical-align: top"
{{#if:{{{creator|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Creator'''
{{!}} {{{creator}}}
|}}
|- style="vertical-align: top"
{{#if:{{{user|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''User(s)'''
{{!}} {{{user}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Production Information'''
|- style="vertical-align: top"
{{#if:{{{first|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''First Appearance'''
{{!}} style="width:17em" {{!}} {{{first|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{last|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Last Appearance'''
{{!}} {{{last}}}
|}}
|}<noinclude>
<pre>
{{itembox
|image=
|name=
|nickname=
|alias=
|level=
|function=
|creator=
|user=
|first=
|last=
}}
</pre>
[[Category:Templates]]</noinclude>
22f7a6c32c189e82d93c5e784bd1789673190370
1288
1286
2020-08-02T20:45:44Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Name'''
|- style="vertical-align: top"
{{#if:{{{name|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Name'''
{{!}} style="width:17em" {{!}} {{{name|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{alias|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Aliases'''
{{!}} {{{alias}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Details'''
|- style="vertical-align: top"
{{#if:{{{level|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Level'''
{{!}} {{{level}}}
|}}
|- style="vertical-align: top"
{{#if:{{{function|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Function'''
{{!}} {{{function}}}
|}}
|- style="vertical-align: top"
{{#if:{{{creator|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Creator'''
{{!}} {{{creator}}}
|}}
|- style="vertical-align: top"
{{#if:{{{user|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''User(s)'''
{{!}} {{{user}}}
|}}
|- style="vertical-align: top"
{{#if:{{{status|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Status'''
{{!}} {{{status}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Production Information'''
|- style="vertical-align: top"
{{#if:{{{first|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''First Appearance'''
{{!}} style="width:17em" {{!}} {{{first|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{last|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Last Appearance'''
{{!}} {{{last}}}
|}}
|}<noinclude>
<pre>
{{itembox
|image=
|name=
|nickname=
|alias=
|level=
|function=
|creator=
|user=
|status=
|first=
|last=
}}
</pre>
[[Category:Templates]]</noinclude>
9080dbed439e3497ca4d94000d483fac39cba191
Template:Scroll
10
343
1289
2020-08-02T20:57:28Z
Jaswacker
30585766
Created page with "<includeonly><div style="overflow:auto; height:auto; max-height:{{{height|{{{h|220px}}}}}}; width:{{{width|{{{w|100%}}}}}}; background:transparent;"> {{{content|{{{1}}}}}} </d..."
wikitext
text/x-wiki
<includeonly><div style="overflow:auto; height:auto; max-height:{{{height|{{{h|220px}}}}}}; width:{{{width|{{{w|100%}}}}}}; background:transparent;">
{{{content|{{{1}}}}}}
</div></includeonly><noinclude>
==Usage==
<pre>
{{Scroll|
"any text or images (but dear lord, not the tables)"
|h=
|w=
}}
</pre>
[[Category:Templates]]</noinclude>
9eb1d4ff90a422df2374a4f6c4924ae94648dd31
Sandbox
0
240
1290
1176
2020-08-02T21:03:16Z
Jaswacker
30585766
wikitext
text/x-wiki
{{itembox
|image=
{{tabs|{{tab2|Original Series|OmnitrixProt OS.png}}{{tab2|Recalibrated|af trix.png}}}}
|name= Omnitrix
|nickname= {{Scroll|h = 80px|
* The watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* Stupid watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* placeholder
* placeholder
* placeholder
* placeholder
}}
|alias= Omnimatrix <ref>placeholder</ref>
|level= 20
|function= DNA Alterer
|creator= [[Azmuth]]
|user= [[Ben Tennyson (Prime)]]
|status= Destroyed
|first= [[And Then There Were 10]]
|last= [[From Hedorium to Eternity]]
}}
placeholder
{{-}}
330b82d1eb81cd6b6e46052e7f4469b7e3ca156d
1291
1290
2020-08-02T21:07:26Z
Jaswacker
30585766
wikitext
text/x-wiki
{{itembox
|image=
{{tabs|{{tab2|Original Series|OmnitrixProt OS.png}}{{tab2|Recalibrated|af trix.png}}}}
|name= Omnitrix
|nickname= {{Scroll|h = 80px|
* The watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* Stupid watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* placeholder
* placeholder
* placeholder
* placeholder
}}
|alias= Omnimatrix <ref>placeholder</ref>
|level= [[Technology Levels#Level_20|20]]
|function= DNA Alterer
|creator= [[Azmuth]]
|user= [[Ben Tennyson (Prime)]]
|status= Destroyed
|first= [[And Then There Were 10]]
|last= [[From Hedorium to Eternity]]
}}
placeholder
{{-}}
db5c0eb577846d3d95546b570fd2ac0eddcad815
Timelines
0
344
1292
2020-08-02T21:36:07Z
Carth
30634784
Created page with "placeholder"
wikitext
text/x-wiki
placeholder
ff55435345834a3fe224936776c2aa15f6ed5358
1293
1292
2020-08-02T21:36:57Z
Carth
30634784
wikitext
text/x-wiki
placeholder
<noinclude>[[Category:Meta]]</noinclude>
4c509b48ef80ad31a1c580d26ad347248fd24eb2
Games
0
198
1294
785
2020-08-02T21:42:50Z
Carth
30634784
wikitext
text/x-wiki
There have been many video games throughout the Ben 10 franchise, this is a directory for those games.
== Console Games ==
These are the main console games.
<center><gallery widths="250px" heights="300px">
File:VG Ben10Hyperscan.png|[[Ben 10 (Mattel HyperScan)|Ben 10]] <small>('''2006''' - Mattel HyperScan)</small>
File:VG Ben10PoE.png |[[Ben 10: Protector of Earth/Console|Ben 10: Protector of Earth]] <small>('''2007''' - PS2, PSP, Wii)</small>
File:VG AlienForce.png |[[Ben 10: Alien Force - The Game]] <small>('''2008''' - PS2, PSP, Wii)</small>
File:VG VilgaxAttacks.png |[[Ben 10: Alien Force - Vilgax Attacks]] <small>('''2009''' - PS2, PSP, Wii, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - The Rise of Hex]] <small>('''2010''' - WiiWare, XBOX Live Arcade)</small>
File:PLACEHOLDER2.png|[[Ben 10: Ultimate Alien - Cosmic Destruction]] <small>('''2010''' - PS3, PS2, PSP, Wii, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10: Galactic Racing]] <small>('''2011''' - PS3, PS Vita, Wii, 3DS)</small>
File:PLACEHOLDER2.png|[[Ben 10: Omniverse (Game)|Ben 10: Omniverse]] <small>('''2012''' - PS3, Wii, Wii U, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10: Omniverse 2]] <small>('''2013''' - PS3, Wii, Wii U, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10 (Reboot Game)|Ben 10]] <small>('''2017''' - PS4, Switch, XBONE)</small>
File:PLACEHOLDER2.png|[[Ben 10: Power Trip]] <small>('''2020''' - Steam, PS4, Switch, XBONE)</small>
</gallery></center>
== Handheld Games ==
The handheld games are often downgraded ports of the original console games, sometimes with different stories and different playable characters.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben 10: Protector of Earth/Handheld|Ben 10: Protector of Earth]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - The Game (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - Vilgax Attacks (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Triple Pack (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Ultimate Alien - Cosmic Destruction (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Galactic Racing (DS/3DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse (DS)|Ben 10: Omniverse]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse 2 (3DS)]]
</gallery></center>
== Mobile Games ==
Games you can play on a phone.
== Flash Games ==
Quick games you can play on your computer, usually from Cartoon Network's website.
f7b8938f2c19e8e1d104250df41bc0c08095d7e4
Omnitrix (Prototype)
0
345
1295
2020-08-02T21:45:29Z
Jaswacker
30585766
Created page with "{{itembox |image= {{tabs|{{tab2|Original Series|OmnitrixProt OS.png}}{{tab2|Recalibrated|af trix.png}}}} |name= Omnitrix |nickname= {{Scroll|h = 80px| * The watch <small>(Ben..."
wikitext
text/x-wiki
{{itembox
|image=
{{tabs|{{tab2|Original Series|OmnitrixProt OS.png}}{{tab2|Recalibrated|af trix.png}}}}
|name= Omnitrix
|nickname= {{Scroll|h = 80px|
* The watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* Stupid watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* placeholder
* placeholder
* placeholder
* placeholder
}}
|alias= Omnimatrix <ref>placeholder</ref>
|level= [[Technology Levels#Level_20|20]]
|function= DNA Alterer
|creator= [[Azmuth]]
|user= [[Ben Tennyson (Prime)]]
|status= Destroyed
|first= [[And Then There Were 10]]
|last= [[From Hedorium to Eternity]]
}}
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in OV. {{storylink|Episode|Episode}}
== Known Transformations ==
=== Before Recalibration ===
==== ''[[Ben 10 (2005)]]'' ====
<center><gallery widths="60px" heights="60px">
File:PLACEHOLDER2.png|link=[[Heatblast (Prime)]]|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|link=[[Diamondhead (Prime)]]|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|link=[[XLR8 (Prime)]]|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|link=[[Greymatter (Prime)]]|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|link=[[Four Arms (Prime)]]|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|link=[[Stinkfly (Prime)]]|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|link=[[Ripjaws]]|[[Ripjaws]]
File:PLACEHOLDER2.png|link=[[Upgrade (Prime)]]|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|link=[[Ghostfreak]]|[[Ghostfreak]]
File:PLACEHOLDER2.png|link=[[Minor Transformations/Prime#Unnamed Chimera Sui Generis Transformation]]|[[Minor Transformations/Prime#Unnamed Chimera Sui Generis Transformation|Unnamed Chimera Sui Generis Transformation]]
File:PLACEHOLDER2.png|link=[[Cannonbolt (Prime)]]|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|link=[[Wildvine (Prime)]]|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|link=[[Blitzwolfer]]|[[Blitzwolfer]]
File:PLACEHOLDER2.png|link=[[Snare-Oh]]|[[Snare-oh]]
File:PLACEHOLDER2.png|link=[[Frankenstrike]]|[[Frankenstrike]]
File:PLACEHOLDER2.png|link=[[Upchuck]]|[[Upchuck]] <small>(Perk)</small>
File:PLACEHOLDER2.png|link=[[Ditto]]|[[Ditto]]
File:PLACEHOLDER2.png|link=[[Eye Guy]]|[[Eye Guy]]
File:PLACEHOLDER2.png|link=[[Way Big]]|[[Way Big]] <br><small>(Introduced in ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'')</small>
File:PLACEHOLDER2.png|link=[[Spitter]]|[[Spitter]]
</gallery></center>
==== ''[[Ben 10: Omniverse]]'' ====
<center><gallery widths="60px" heights="60px">
File:PLACEHOLDER2.png|link=[[Arctiguana]]|[[Arctiguana]] <br><small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|link=[[Feedback]]|[[Feedback]]
File:PLACEHOLDER2.png|link=[[Clockwork]]|[[Clockwork]]
</gallery></center>
=== After Recalibration ===
<center><gallery widths="60px" heights="60px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Murk)</small>
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|[[Nanomech]] <br><small>(Introduced in ''[[Ben 10: Alien Swarm|Alien Swarm]]'')</small>
File:PLACEHOLDER2.png|[[Minor Transformations/Prime#Snorecupine|Snorecupine]]
</gallery></center>
{{-}}
== Purpose ==
placeholder
== Features ==
placeholder
=== Settings ===
list the settings with those icons, maybe with a table?
== Appearances ==
placeholder, some dropdown menus for each show/season?
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''toy name'''
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''toy name'''
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Transformations]]</noinclude>
e7aa96e54ee390757b0fb8e2d3bca7ec44f4eb60
1296
1295
2020-08-02T21:48:02Z
Jaswacker
30585766
/* Known Transformations */
wikitext
text/x-wiki
{{itembox
|image=
{{tabs|{{tab2|Original Series|OmnitrixProt OS.png}}{{tab2|Recalibrated|af trix.png}}}}
|name= Omnitrix
|nickname= {{Scroll|h = 80px|
* The watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* Stupid watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* placeholder
* placeholder
* placeholder
* placeholder
}}
|alias= Omnimatrix <ref>placeholder</ref>
|level= [[Technology Levels#Level_20|20]]
|function= DNA Alterer
|creator= [[Azmuth]]
|user= [[Ben Tennyson (Prime)]]
|status= Destroyed
|first= [[And Then There Were 10]]
|last= [[From Hedorium to Eternity]]
}}
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in OV. {{storylink|Episode|Episode}}
== Known Transformations ==
=== Before Recalibration ===
==== ''[[Ben 10 (2005)]]'' ====
<center><gallery widths="60px" heights="60px">
File:PLACEHOLDER2.png|link=[[Heatblast (Prime)]]|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|link=[[Diamondhead (Prime)]]|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|link=[[XLR8 (Prime)]]|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|link=[[Greymatter (Prime)]]|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|link=[[Four Arms (Prime)]]|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|link=[[Stinkfly (Prime)]]|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|link=[[Ripjaws]]|[[Ripjaws]]
File:PLACEHOLDER2.png|link=[[Upgrade (Prime)]]|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|link=[[Ghostfreak]]|[[Ghostfreak]]
File:PLACEHOLDER2.png|link=[[Minor Transformations/Prime#Unseen Chimera Sui Generis Transformation]]|[[Minor Transformations/Unseen#Unnamed Chimera Sui Generis Transformation|Unnamed Chimera Sui Generis Transformation]]
File:PLACEHOLDER2.png|link=[[Cannonbolt (Prime)]]|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|link=[[Wildvine (Prime)]]|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|link=[[Blitzwolfer]]|[[Blitzwolfer]]
File:PLACEHOLDER2.png|link=[[Snare-Oh]]|[[Snare-oh]]
File:PLACEHOLDER2.png|link=[[Frankenstrike]]|[[Frankenstrike]]
File:PLACEHOLDER2.png|link=[[Upchuck]]|[[Upchuck]] <small>(Perk)</small>
File:PLACEHOLDER2.png|link=[[Ditto]]|[[Ditto]]
File:PLACEHOLDER2.png|link=[[Eye Guy]]|[[Eye Guy]]
File:PLACEHOLDER2.png|link=[[Way Big]]|[[Way Big]] <br><small>(Introduced in ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'')</small>
File:PLACEHOLDER2.png|link=[[Spitter]]|[[Spitter]]
</gallery></center>
==== ''[[Ben 10: Omniverse]]'' ====
<center><gallery widths="60px" heights="60px">
File:PLACEHOLDER2.png|link=[[Arctiguana]]|[[Arctiguana]] <br><small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|link=[[Feedback]]|[[Feedback]]
File:PLACEHOLDER2.png|link=[[Clockwork]]|[[Clockwork]]
</gallery></center>
=== After Recalibration ===
<center><gallery widths="60px" heights="60px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Murk)</small>
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|[[Nanomech]] <br><small>(Introduced in ''[[Ben 10: Alien Swarm|Alien Swarm]]'')</small>
File:PLACEHOLDER2.png|[[Minor Transformations/Unseen#Snorecupine|Snorecupine]]
</gallery></center>
{{-}}
== Purpose ==
placeholder
== Features ==
placeholder
=== Settings ===
list the settings with those icons, maybe with a table?
== Appearances ==
placeholder, some dropdown menus for each show/season?
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''toy name'''
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''toy name'''
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Transformations]]</noinclude>
11e0a102b72ef4a9294971c6b26e05294a78372f
1301
1296
2020-08-02T21:52:34Z
Jaswacker
30585766
/* Known Transformations */
wikitext
text/x-wiki
{{itembox
|image=
{{tabs|{{tab2|Original Series|OmnitrixProt OS.png}}{{tab2|Recalibrated|af trix.png}}}}
|name= Omnitrix
|nickname= {{Scroll|h = 80px|
* The watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* Stupid watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* placeholder
* placeholder
* placeholder
* placeholder
}}
|alias= Omnimatrix <ref>placeholder</ref>
|level= [[Technology Levels#Level_20|20]]
|function= DNA Alterer
|creator= [[Azmuth]]
|user= [[Ben Tennyson (Prime)]]
|status= Destroyed
|first= [[And Then There Were 10]]
|last= [[From Hedorium to Eternity]]
}}
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in OV. {{storylink|Episode|Episode}}
== Known Transformations ==
=== Before Recalibration ===
==== ''[[Ben 10 (2005)]]'' ====
<center><gallery widths="60px" heights="60px">
File:PLACEHOLDER2.png|link=[[Heatblast (Prime)]]|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|[[Wildmutt]]
File:PLACEHOLDER2.png|link=[[Diamondhead (Prime)]]|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|link=[[XLR8 (Prime)]]|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|link=[[Greymatter (Prime)]]|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|link=[[Four Arms (Prime)]]|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|link=[[Stinkfly (Prime)]]|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|link=[[Ripjaws]]|[[Ripjaws]]
File:PLACEHOLDER2.png|link=[[Upgrade (Prime)]]|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|link=[[Ghostfreak]]|[[Ghostfreak]]
File:PLACEHOLDER2.png|link=[[Minor Transformations/Prime#Unnamed Chimera Sui Generis Transformation]]|[[Minor Transformations/Prime#Unnamed Chimera Sui Generis Transformation|Unnamed Chimera Sui Generis Transformation]]
File:PLACEHOLDER2.png|link=[[Cannonbolt (Prime)]]|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|link=[[Wildvine (Prime)]]|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|link=[[Blitzwolfer]]|[[Blitzwolfer]]
File:PLACEHOLDER2.png|link=[[Snare-Oh]]|[[Snare-oh]]
File:PLACEHOLDER2.png|link=[[Frankenstrike]]|[[Frankenstrike]]
File:PLACEHOLDER2.png|link=[[Upchuck]]|[[Upchuck]] <small>(Perk)</small>
File:PLACEHOLDER2.png|link=[[Ditto]]|[[Ditto]]
File:PLACEHOLDER2.png|link=[[Eye Guy]]|[[Eye Guy]]
File:PLACEHOLDER2.png|link=[[Way Big]]|[[Way Big]] <br><small>(Introduced in ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'')</small>
File:PLACEHOLDER2.png|link=[[Spitter]]|[[Spitter]]
</gallery></center>
==== ''[[Ben 10: Omniverse]]'' ====
<center><gallery widths="60px" heights="60px">
File:PLACEHOLDER2.png|link=[[Arctiguana]]|[[Arctiguana]] <br><small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|link=[[Feedback]]|[[Feedback]]
File:PLACEHOLDER2.png|link=[[Clockwork]]|[[Clockwork]]
</gallery></center>
=== After Recalibration ===
<center><gallery widths="60px" heights="60px">
File:PLACEHOLDER2.png|[[Swampfire]]
File:PLACEHOLDER2.png|[[Echo Echo]]
File:PLACEHOLDER2.png|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|[[Big Chill]]
File:PLACEHOLDER2.png|[[Chromastone]]
File:PLACEHOLDER2.png|[[Brainstorm]]
File:PLACEHOLDER2.png|[[Spidermonkey]]
File:PLACEHOLDER2.png|[[Goop]]
File:PLACEHOLDER2.png|[[Alien X]]
File:PLACEHOLDER2.png|[[Upchuck]] <small>(Murk)</small>
File:PLACEHOLDER2.png|[[Lodestar]]
File:PLACEHOLDER2.png|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|[[Nanomech]] <br><small>(Introduced in ''[[Ben 10: Alien Swarm|Alien Swarm]]'')</small>
File:PLACEHOLDER2.png|[[Minor Transformations/Prime#Snorecupine|Snorecupine]]
</gallery></center>
{{-}}
== Purpose ==
placeholder
== Features ==
placeholder
=== Settings ===
list the settings with those icons, maybe with a table?
== Appearances ==
placeholder, some dropdown menus for each show/season?
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''toy name'''
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''toy name'''
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Transformations]]</noinclude>
34626d318c2549f985f168e4127c08b0f7ce5ee6
1302
1301
2020-08-02T22:07:45Z
Jaswacker
30585766
wikitext
text/x-wiki
{{itembox
|image=
{{tabs|{{tab2|Original Series|OmnitrixProt OS.png}}{{tab2|Recalibrated|af trix.png}}}}
|name= Omnitrix
|nickname= {{Scroll|h = 80px|
* The watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* Stupid watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* placeholder
* placeholder
* placeholder
* placeholder
}}
|alias= Omnimatrix <ref>placeholder</ref>
|level= [[Technology Levels#Level_20|20]]
|function= DNA Alterer
|creator= [[Azmuth]]
|user= [[Ben Tennyson (Prime)]]
|status= Destroyed
|first= [[And Then There Were 10]]
|last= [[From Hedorium to Eternity]]
}}
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in OV. {{storylink|Episode|Episode}}
== Known Transformations ==
=== Before Recalibration ===
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Transformation'''
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Species'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:350px; text-align:center;" | '''Details'''
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|}
=== After Recalibration ===
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Transformation'''
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Species'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:350px; text-align:center;" | '''Details'''
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|}
{{-}}
== Purpose ==
placeholder
== Features ==
placeholder
=== Settings ===
list the settings with those icons, maybe with a table?
== Appearances ==
placeholder, some dropdown menus for each show/season?
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''toy name'''
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''toy name'''
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Transformations]]</noinclude>
95e186ab93f1e0128d0f08718a69a319e3b428d8
1303
1302
2020-08-02T22:08:06Z
Jaswacker
30585766
/* Known Transformations */
wikitext
text/x-wiki
{{itembox
|image=
{{tabs|{{tab2|Original Series|OmnitrixProt OS.png}}{{tab2|Recalibrated|af trix.png}}}}
|name= Omnitrix
|nickname= {{Scroll|h = 80px|
* The watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* Stupid watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* placeholder
* placeholder
* placeholder
* placeholder
}}
|alias= Omnimatrix <ref>placeholder</ref>
|level= [[Technology Levels#Level_20|20]]
|function= DNA Alterer
|creator= [[Azmuth]]
|user= [[Ben Tennyson (Prime)]]
|status= Destroyed
|first= [[And Then There Were 10]]
|last= [[From Hedorium to Eternity]]
}}
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in OV. {{storylink|Episode|Episode}}
== Known Transformations ==
=== Before Recalibration ===
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Transformation'''
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Species'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:350px; text-align:center;" | '''Details'''
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|}
=== After Recalibration ===
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Transformation'''
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Species'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:350px; text-align:center;" | '''Details'''
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|}
{{-}}
== Purpose ==
placeholder
== Features ==
placeholder
=== Settings ===
list the settings with those icons, maybe with a table?
== Appearances ==
placeholder, some dropdown menus for each show/season?
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''toy name'''
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''toy name'''
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Transformations]]</noinclude>
291cc815c1daee25bdbe60840c032b305e949994
1304
1303
2020-08-02T22:08:19Z
Jaswacker
30585766
/* Known Transformations */
wikitext
text/x-wiki
{{itembox
|image=
{{tabs|{{tab2|Original Series|OmnitrixProt OS.png}}{{tab2|Recalibrated|af trix.png}}}}
|name= Omnitrix
|nickname= {{Scroll|h = 80px|
* The watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* Stupid watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* placeholder
* placeholder
* placeholder
* placeholder
}}
|alias= Omnimatrix <ref>placeholder</ref>
|level= [[Technology Levels#Level_20|20]]
|function= DNA Alterer
|creator= [[Azmuth]]
|user= [[Ben Tennyson (Prime)]]
|status= Destroyed
|first= [[And Then There Were 10]]
|last= [[From Hedorium to Eternity]]
}}
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in OV. {{storylink|Episode|Episode}}
== Known Transformations ==
=== Before Recalibration ===
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Transformation'''
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Species'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:350px; text-align:center;" | '''Details'''
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|}
{{-}}
=== After Recalibration ===
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Transformation'''
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Species'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:350px; text-align:center;" | '''Details'''
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|}
{{-}}
== Purpose ==
placeholder
== Features ==
placeholder
=== Settings ===
list the settings with those icons, maybe with a table?
== Appearances ==
placeholder, some dropdown menus for each show/season?
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''toy name'''
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''toy name'''
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Transformations]]</noinclude>
22210457c0278961cddffd1d1315967868d43cbb
1305
1304
2020-08-02T22:09:14Z
Jaswacker
30585766
/* Known Transformations */
wikitext
text/x-wiki
{{itembox
|image=
{{tabs|{{tab2|Original Series|OmnitrixProt OS.png}}{{tab2|Recalibrated|af trix.png}}}}
|name= Omnitrix
|nickname= {{Scroll|h = 80px|
* The watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* Stupid watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* placeholder
* placeholder
* placeholder
* placeholder
}}
|alias= Omnimatrix <ref>placeholder</ref>
|level= [[Technology Levels#Level_20|20]]
|function= DNA Alterer
|creator= [[Azmuth]]
|user= [[Ben Tennyson (Prime)]]
|status= Destroyed
|first= [[And Then There Were 10]]
|last= [[From Hedorium to Eternity]]
}}
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in OV. {{storylink|Episode|Episode}}
== Known Transformations ==
=== Before Recalibration ===
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Transformation'''
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Species'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:350px; text-align:center;" | '''Details'''
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|}
{{-}}
=== After Recalibration ===
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Transformation'''
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Species'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:350px; text-align:center;" | '''Details'''
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|-
| image
| placeholder
| placeholder
|}
{{-}}
== Purpose ==
placeholder
== Features ==
placeholder
=== Settings ===
list the settings with those icons, maybe with a table?
== Appearances ==
placeholder, some dropdown menus for each show/season?
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''toy name'''
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''toy name'''
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Transformations]]</noinclude>
842a90650fbeae64679e8bd32fbb63eefec2f23d
Minor Transformations
0
4
1299
1184
2020-08-02T21:50:33Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__
{{tabs|{{tab|Prime}}{{tab|Albedo}}{{tab|Ben 23}}{{tab|Bad Ben}}{{tab|Benzarro}}{{tab|Mad Ben}}{{tab|Nega Ben}}{{tab|Gwen 10}}{{tab|Ben 10K}}{{tab|Other}}}}
<noinclude>[[Category:Transformations]]</noinclude>
e1ad5efc633d84a3a936543f74ada4be2d4e0f02
Minor Transformations/Prime
0
346
1300
2020-08-02T21:51:25Z
Jaswacker
30585766
Created page with "{{trix|ogs|alf|onv|rbt}} __NOTOC__ <sup>[[Minor_Transformations/Unseen|Full page link.]]</sup> ==Unseen== These aliens may have only been mentioned in the show, but have had..."
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Unseen|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Unnamed Sonic Screeching Bird Alien===
This alien was only mentioned in passing in a text popup during [[I-10: The Ben 10 User Generated Experience]]. It was said to be an alien that was scrapped during development of the Original Series.
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Sandbox is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Rocks===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any seen continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Ben-Krakken===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
Placeholder. Make note that the name is total conjecture.
{{-}}
===Stretcheleo===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Shadowman===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Invincible===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Bob the Blob===
[[File:Bob the Blob.png|thumb|200px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
{{-}}
===Antigravitesla===
[[File:Antigravitesla.png|thumb|200px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|200px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|200px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Portaler===
[[File:portaler.png|thumb|200px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, they are also able to make portals to teleport themself and others.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
{{-}}
===Thriller Whale===
Placeholder
{{-}}
===TenTen===
Placeholder
{{-}}
===Hotdog Alien===
[[File:hotdawg.png|thumb|200px|caption]]
[[File:hotdawgguitar.png|thumb|200px|caption]]
Placeholder
{{-}}
===''DNA Decode'' Fusion===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:DecimusPrime_RobotMode.jpeg|thumb|350px|there is no caption. it's just decimus]]
[[File:DecimusPrime_AltMode.jpeg|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
==Joke Aliens==
The following transformations were named by the crew as jokes, and are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Moot===
'''Moot''' is supposedly the name of Ben's [[Atasian|Highbreed]] transformation, as stated on a forum by the late [[Dwayne McDuffie]].
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===Named by Derrick J Wyatt===
The following aliens were named by Derrick J Wyatt as aliens that Ben had unlocked by the time of ''[[Ben 10: Omniverse|Omniverse]]''.
* The Zilch
* Pyxl-Loaf
* Crocduster
* Overround
* Splatterator
* Dropsies
* Tranquenstine
* Tanker Bell
* Mister Sister
* Port-A-Porty
* THUUG
* The Walking Dread
* Polywhirl
* Tool Bucket
* Murphybed
* Turdberry
* Brundlefoot
{{-}}
===Named by Matt Wayne===
The following aliens were named by [[Matt Wayne]] as "useless" aliens that Ben had unlocked by the time he was 11-years-old, but got bored of.
* Somnambulizard <ref>https://web.archive.org/web/20200530230328/https://ben10.forumotion.co.uk/t130p1000-qa-with-matt-wayne</ref>
* Bungee Sponge
* Skidmarx
* Mealymouth
* Hippopotamass
* Crabtastic
{{-}}
71b2dedc5a93b3d7d2d9bfc04871d79df4ac5033
Template:Ttable
10
347
1306
2020-08-02T22:24:51Z
Jaswacker
30585766
Created page with "{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c..."
wikitext
text/x-wiki
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Transformation'''
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:5px; text-align:center;" | '''Species'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:200px; text-align:center;" | '''Details'''
{{{1}}}
|}
<noinclude>[[Category:Templates]]</noinclude>
2a77c6d70a641768008eedfc973f92c60ca95133
Template:Tt
10
348
1307
2020-08-02T22:29:04Z
Jaswacker
30585766
Created page with "|- |colspan="1" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |{{{1}}} |colspan="1" sty..."
wikitext
text/x-wiki
|-
|colspan="1" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |{{{1}}}
|colspan="1" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |{{{2}}}
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |{{{3}}}
<pre>
{{guide2|1|2|3}}
1 = transformation name
2 = species
3 = details
</pre>
[[Category:Templates]]</noinclude>
d31f7e0fadac0db27e708bc7a313e7fb28499584
Template:Ttable
10
347
1308
1306
2020-08-02T22:29:05Z
Jaswacker
30585766
wikitext
text/x-wiki
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:200px; text-align:center;" | '''Transformation'''
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:200px; text-align:center;" | '''Species'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:200px; text-align:center;" | '''Details'''
{{{1}}}
|}
<noinclude>[[Category:Templates]]</noinclude>
1718afab1acee40734f29f1ebc269bd10eceddda
Template:Tt
10
348
1309
1307
2020-08-02T22:35:42Z
Jaswacker
30585766
wikitext
text/x-wiki
|-
|colspan="1" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |{{{1}}}
|colspan="1" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |{{{2}}}
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |{{{3}}}<noinclude>
<pre>
{{guide2|1|2|3}}
1 = transformation name
2 = species
3 = details
</pre>
[[Category:Templates]]</noinclude>
9e4fbaa309f4e55e8472ed944b5ff209ef33efdf
Omnitrix (Prototype)
0
345
1310
1305
2020-08-02T22:42:17Z
Jaswacker
30585766
/* Known Transformations */
wikitext
text/x-wiki
{{itembox
|image=
{{tabs|{{tab2|Original Series|OmnitrixProt OS.png}}{{tab2|Recalibrated|af trix.png}}}}
|name= Omnitrix
|nickname= {{Scroll|h = 80px|
* The watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* Stupid watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* placeholder
* placeholder
* placeholder
* placeholder
}}
|alias= Omnimatrix <ref>placeholder</ref>
|level= [[Technology Levels#Level_20|20]]
|function= DNA Alterer
|creator= [[Azmuth]]
|user= [[Ben Tennyson (Prime)]]
|status= Destroyed
|first= [[And Then There Were 10]]
|last= [[From Hedorium to Eternity]]
}}
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in OV. {{storylink|Episode|Episode}}
== Known Transformations ==
=== Before Recalibration ===
{{Scroll|h = 200px|
{{ttable|
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
}}}}
{{-}}
=== After Recalibration ===
{{Scroll|h = 200px|
{{ttable|
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
}}}}
{{-}}
== Purpose ==
placeholder
== Features ==
placeholder
=== Settings ===
list the settings with those icons, maybe with a table?
== Appearances ==
placeholder, some dropdown menus for each show/season?
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''toy name'''
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''toy name'''
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Transformations]]</noinclude>
baf582885396056a6173ad255eaf2016ce59f0c9
1311
1310
2020-08-02T22:50:42Z
Jaswacker
30585766
/* Settings */
wikitext
text/x-wiki
{{itembox
|image=
{{tabs|{{tab2|Original Series|OmnitrixProt OS.png}}{{tab2|Recalibrated|af trix.png}}}}
|name= Omnitrix
|nickname= {{Scroll|h = 80px|
* The watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* Stupid watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* placeholder
* placeholder
* placeholder
* placeholder
}}
|alias= Omnimatrix <ref>placeholder</ref>
|level= [[Technology Levels#Level_20|20]]
|function= DNA Alterer
|creator= [[Azmuth]]
|user= [[Ben Tennyson (Prime)]]
|status= Destroyed
|first= [[And Then There Were 10]]
|last= [[From Hedorium to Eternity]]
}}
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in OV. {{storylink|Episode|Episode}}
== Known Transformations ==
=== Before Recalibration ===
{{Scroll|h = 200px|
{{ttable|
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
}}}}
{{-}}
=== After Recalibration ===
{{Scroll|h = 200px|
{{ttable|
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
}}}}
{{-}}
== Purpose ==
placeholder
== Features ==
placeholder
=== Settings ===
==== Before Recalibration ====
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:300px; text-align:center;" | '''Setting'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:200px; text-align:center;" | '''Details'''
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|}
{{-}}
==== After Recalibration ====
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:300px; text-align:center;" | '''Setting'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:200px; text-align:center;" | '''Details'''
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|}
== Appearances ==
placeholder, some dropdown menus for each show/season?
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''toy name'''
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''toy name'''
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Transformations]]</noinclude>
f655df1cc387d394c1a41b3a7f48b10730c12075
1312
1311
2020-08-02T22:55:44Z
Jaswacker
30585766
wikitext
text/x-wiki
{{itembox
|image=
{{tabs|{{tab2|Original Series|OmnitrixProt OS.png}}{{tab2|Recalibrated|af trix.png}}}}
|name= Omnitrix
|nickname= {{Scroll|h = 80px|
* The watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* Stupid watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* placeholder
* placeholder
* placeholder
* placeholder
}}
|alias= Omnimatrix <ref>placeholder</ref>
|level= [[Technology Levels#Level_20|20]]
|function= DNA Alterer
|creator= [[Azmuth]]
|user= [[Ben Tennyson (Prime)]]
|status= Destroyed
|first= [[And Then There Were 10]]
|last= [[From Hedorium to Eternity]]
}}
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in OV. {{storylink|Episode|Episode}}
== Known Transformations ==
=== Before Recalibration ===
{{Scroll|h = 200px|
{{ttable|
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
}}}}
{{-}}
=== After Recalibration ===
{{Scroll|h = 200px|
{{ttable|
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
}}}}
{{-}}
== Purpose ==
placeholder
== Features ==
placeholder
=== Settings ===
==== Before Recalibration ====
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:300px; text-align:center;" | '''Setting'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:200px; text-align:center;" | '''Details'''
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|}
{{-}}
==== After Recalibration ====
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:300px; text-align:center;" | '''Setting'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:200px; text-align:center;" | '''Details'''
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|}
== Appearances ==
placeholder, some dropdown menus for each show/season?
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''toy name'''
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''toy name'''
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
{{-}}
<noinclude>[[Category:Transformations]]</noinclude>
f4aa9fcf953860e8ad7e7a1a8a7acd004d582701
1313
1312
2020-08-03T00:11:45Z
Jaswacker
30585766
wikitext
text/x-wiki
{{itembox
|image=
{{tabs|{{tab2|Original Series|OmnitrixProt OS.png}}{{tab2|Recalibrated|af trix.png}}}}
|name= Omnitrix
|nickname= {{Scroll|h = 80px|
* The watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* Stupid watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* placeholder
* placeholder
* placeholder
* placeholder
}}
|alias= Omnimatrix <ref>placeholder</ref>
|level= [[Technology Levels#Level_20|20]]
|function= DNA Alterer
|creator= [[Azmuth]]
|user= [[Ben Tennyson (Prime)]]
|status= Destroyed
|first= [[And Then There Were 10]]
|last= [[From Hedorium to Eternity]]
}}
Placeholder, general bio/description of the omnitrix.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in OV. {{storylink|Episode|Episode}}
== Known Transformations ==
=== Before Recalibration ===
{{Scroll|h = 200px|
{{ttable|
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
}}}}
{{-}}
=== After Recalibration ===
{{Scroll|h = 200px|
{{ttable|
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
}}}}
{{-}}
== Purpose ==
placeholder
== Features ==
placeholder
=== Settings ===
==== Before Recalibration ====
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:300px; text-align:center;" | '''Setting'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:200px; text-align:center;" | '''Details'''
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|}
{{-}}
==== After Recalibration ====
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:300px; text-align:center;" | '''Setting'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:200px; text-align:center;" | '''Details'''
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|}
== Appearances ==
placeholder, some dropdown menus for each show/season?
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''toy name'''
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''toy name'''
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
{{-}}
<noinclude>[[Category:Transformations]]</noinclude>
badfc5a92a28c80bc867a97e3917822e9a4addce
Transformations/Prime
0
95
1314
1272
2020-08-03T02:37:24Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
__TOC__
{{-}}
== Introduced in ''[[Ben 10 (2005)|Ben 10]]'' ==
<center><gallery widths="75px" heights="150px">
File:PLACEHOLDER2.png|link=[[Heatblast (Prime)]]|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|link=[[Wildmutt]]|[[Wildmutt]]
File:PLACEHOLDER2.png|link=[[Diamondhead (Prime)]]|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|link=[[XLR8 (Prime)]]|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|link=[[Greymatter (Prime)]]|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|link=[[Four Arms (Prime)]]|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|link=[[Stinkfly (Prime)]]|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|link=[[Ripjaws]]|[[Ripjaws]]
File:PLACEHOLDER2.png|link=[[Upgrade (Prime)]]|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|link=[[Ghostfreak]]|[[Ghostfreak]]
File:PLACEHOLDER2.png|link=[[Cannonbolt (Prime)]]|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|link=[[Wildvine (Prime)]]|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|link=[[Blitzwolfer]]|[[Blitzwolfer]]
File:PLACEHOLDER2.png|link=[[Snare-oh]]|[[Snare-oh]]
File:PLACEHOLDER2.png|link=[[Frankenstrike]]|[[Frankenstrike]]
File:PLACEHOLDER2.png|link=[[Upchuck]]|[[Upchuck]] <small>(Perk)</small>
File:PLACEHOLDER2.png|link=[[Ditto]]|[[Ditto]]
File:PLACEHOLDER2.png|link=[[Eye Guy]]|[[Eye Guy]]
File:PLACEHOLDER2.png|link=[[Way Big (Prime)]]|[[Way Big (Prime)|Waybig]] <br><small>(Introduced in ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'')</small>
File:PLACEHOLDER2.png|link=[[Buzzshock]]|[[Buzzshock]] <br><small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|link=[[Spitter]]|[[Spitter]] <br><small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|link=[[Arctiguana]]|[[Arctiguana]] <br><small>(First used by Ben 10,000)</small>
</gallery></center>
{{-}}
== Introduced in ''[[Ben 10: Alien Force]]'' ==
<center><gallery widths="75px" heights="150px">
File:PLACEHOLDER2.png|link=[[Swampfire]]|[[Swampfire]]
File:PLACEHOLDER2.png|link=[[Echo Echo]]|[[Echo Echo]]
File:PLACEHOLDER2.png|link=[[Humungousaur (Prime)]]|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|link=[[Jetray (Prime)]]|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|link=[[Big Chill]]|[[Big Chill]]
File:PLACEHOLDER2.png|link=[[Chromastone]]|[[Chromastone]]
File:PLACEHOLDER2.png|link=[[Brainstorm]]|[[Brainstorm]]
File:PLACEHOLDER2.png|link=[[Spidermonkey]]|[[Spidermonkey]]
File:PLACEHOLDER2.png|link=[[Goop]]|[[Goop]]
File:PLACEHOLDER2.png|link=[[Alien X]]|[[Alien X]]
File:PLACEHOLDER2.png|link=[[Upchuck]]|[[Upchuck]] <small>(Murk)</small>
File:PLACEHOLDER2.png|link=[[Lodestar]]|[[Lodestar]]
File:PLACEHOLDER2.png|link=[[Rath (Prime)]]|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|link=[[Nanomech]]|[[Nanomech]] <br><small>(Introduced in ''[[Ben 10: Alien Swarm|Alien Swarm]]'')</small>
</gallery></center>
{{-}}
== Introduced in ''[[Ben 10: Ultimate Alien]]'' ==
<center><gallery widths="75px" heights="150px">
File:PLACEHOLDER2.png|link=[[Water Hazard]]|[[Water Hazard]]
File:PLACEHOLDER2.png|link=[[AmpFibian]]|[[AmpFibian]]
File:PLACEHOLDER2.png|link=[[Armodrillo]]|[[Armodrillo]]
File:PLACEHOLDER2.png|link=[[Terraspin]]|[[Terraspin]]
File:PLACEHOLDER2.png|link=[[NRG]]|[[NRG]]
File:PLACEHOLDER2.png|link=[Fasttrack]]|[[Fasttrack]]
File:PLACEHOLDER2.png|link=[[Clockwork]]|[[Clockwork]]
File:PLACEHOLDER2.png|link=[[Chamalien]]|[[Chamalien]]
File:PLACEHOLDER2.png|link=[[Shocksquatch]]|[[Shocksquatch]] <br><small>(Introduced in ''[[Ben 10/Generator Rex: Heroes United|Heroes United]]'')</small>
File:PLACEHOLDER2.png|link=[[Eatle]]|[[Eatle]]
File:PLACEHOLDER2.png|link=[[Juryrigg]]|[[Juryrigg]]
</gallery></center>
{{-}}
== Introduced in ''[[Ben 10: Omniverse]]'' ==
<center><gallery widths="75px" heights="150px">
File:PLACEHOLDER2.png|link=[[Feedback]]|[[Feedback]]
File:PLACEHOLDER2.png|link=[[Bloxx]]|[[Bloxx]]
File:PLACEHOLDER2.png|link=[[Gravattack]]|[[Gravattack]]
File:PLACEHOLDER2.png|link=[[Crashhopper]]|[[Crashhopper]]
File:PLACEHOLDER2.png|link=[[Ball Weevil]]|[[Ball Weevil]]
File:PLACEHOLDER2.png|link=[[Walkatrout]]|[[Walkatrout]]
File:PLACEHOLDER2.png|link=[[Pesky Dust]]|[[Pesky Dust]]
File:PLACEHOLDER2.png|link=[[Mole-Stache]]|[[Mole-Stache]]
File:PLACEHOLDER2.png|link=[[The Worst]]|[[The Worst]]
File:PLACEHOLDER2.png|link=[[Kickin Hawk]]|[[Kickin Hawk]]
File:PLACEHOLDER2.png|link=[[Astrodactyl]]|[[Astrodactyl]]
File:PLACEHOLDER2.png|link=[[Toepick]]|[[Toepick]]
File:PLACEHOLDER2.png|link=[[Bullfrag]]|[[Bullfrag]]
File:PLACEHOLDER2.png|link=[[Atomix]]|[[Atomix]]
File:PLACEHOLDER2.png|link=[[Gutrot]]|[[Gutrot]]
File:PLACEHOLDER2.png|link=[[Whampire]]|[[Whampire]]
</gallery></center>
== Unseen ==
<center><gallery widths="75px" heights="150px">
File:PLACEHOLDER2.png|link=[[Sandbox]]|[[Sandbox|Placeholder]]
File:PLACEHOLDER2.png|link=[[Sandbox]]|[[Sandbox|Placeholder]]
</gallery></center>
== Non-canon ==
<center><gallery widths="75px" heights="150px">
File:PLACEHOLDER2.png|link=[[Sandbox]]|[[Sandbox|Placeholder]]
File:PLACEHOLDER2.png|link=[[Sandbox]]|[[Sandbox|Placeholder]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
{{-}}
d8f03cf0eebd2ab1a910646cfed4b6d958bd6855
1315
1314
2020-08-03T02:38:06Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
__TOC__
{{-}}
== Introduced in ''[[Ben 10 (2005)|Ben 10]]'' ==
<center><gallery widths="75px" heights="130px">
File:PLACEHOLDER2.png|link=[[Heatblast (Prime)]]|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|link=[[Wildmutt]]|[[Wildmutt]]
File:PLACEHOLDER2.png|link=[[Diamondhead (Prime)]]|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|link=[[XLR8 (Prime)]]|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|link=[[Greymatter (Prime)]]|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|link=[[Four Arms (Prime)]]|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|link=[[Stinkfly (Prime)]]|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|link=[[Ripjaws]]|[[Ripjaws]]
File:PLACEHOLDER2.png|link=[[Upgrade (Prime)]]|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|link=[[Ghostfreak]]|[[Ghostfreak]]
File:PLACEHOLDER2.png|link=[[Cannonbolt (Prime)]]|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|link=[[Wildvine (Prime)]]|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|link=[[Blitzwolfer]]|[[Blitzwolfer]]
File:PLACEHOLDER2.png|link=[[Snare-oh]]|[[Snare-oh]]
File:PLACEHOLDER2.png|link=[[Frankenstrike]]|[[Frankenstrike]]
File:PLACEHOLDER2.png|link=[[Upchuck]]|[[Upchuck]] <small>(Perk)</small>
File:PLACEHOLDER2.png|link=[[Ditto]]|[[Ditto]]
File:PLACEHOLDER2.png|link=[[Eye Guy]]|[[Eye Guy]]
File:PLACEHOLDER2.png|link=[[Way Big (Prime)]]|[[Way Big (Prime)|Waybig]] <br><small>(Introduced in ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'')</small>
File:PLACEHOLDER2.png|link=[[Buzzshock]]|[[Buzzshock]] <br><small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|link=[[Spitter]]|[[Spitter]] <br><small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|link=[[Arctiguana]]|[[Arctiguana]] <br><small>(First used by Ben 10,000)</small>
</gallery></center>
{{-}}
== Introduced in ''[[Ben 10: Alien Force]]'' ==
<center><gallery widths="75px" heights="130px">
File:PLACEHOLDER2.png|link=[[Swampfire]]|[[Swampfire]]
File:PLACEHOLDER2.png|link=[[Echo Echo]]|[[Echo Echo]]
File:PLACEHOLDER2.png|link=[[Humungousaur (Prime)]]|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|link=[[Jetray (Prime)]]|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|link=[[Big Chill]]|[[Big Chill]]
File:PLACEHOLDER2.png|link=[[Chromastone]]|[[Chromastone]]
File:PLACEHOLDER2.png|link=[[Brainstorm]]|[[Brainstorm]]
File:PLACEHOLDER2.png|link=[[Spidermonkey]]|[[Spidermonkey]]
File:PLACEHOLDER2.png|link=[[Goop]]|[[Goop]]
File:PLACEHOLDER2.png|link=[[Alien X]]|[[Alien X]]
File:PLACEHOLDER2.png|link=[[Upchuck]]|[[Upchuck]] <small>(Murk)</small>
File:PLACEHOLDER2.png|link=[[Lodestar]]|[[Lodestar]]
File:PLACEHOLDER2.png|link=[[Rath (Prime)]]|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|link=[[Nanomech]]|[[Nanomech]] <br><small>(Introduced in ''[[Ben 10: Alien Swarm|Alien Swarm]]'')</small>
</gallery></center>
{{-}}
== Introduced in ''[[Ben 10: Ultimate Alien]]'' ==
<center><gallery widths="75px" heights="130px">
File:PLACEHOLDER2.png|link=[[Water Hazard]]|[[Water Hazard]]
File:PLACEHOLDER2.png|link=[[AmpFibian]]|[[AmpFibian]]
File:PLACEHOLDER2.png|link=[[Armodrillo]]|[[Armodrillo]]
File:PLACEHOLDER2.png|link=[[Terraspin]]|[[Terraspin]]
File:PLACEHOLDER2.png|link=[[NRG]]|[[NRG]]
File:PLACEHOLDER2.png|link=[Fasttrack]]|[[Fasttrack]]
File:PLACEHOLDER2.png|link=[[Clockwork]]|[[Clockwork]]
File:PLACEHOLDER2.png|link=[[Chamalien]]|[[Chamalien]]
File:PLACEHOLDER2.png|link=[[Shocksquatch]]|[[Shocksquatch]] <br><small>(Introduced in ''[[Ben 10/Generator Rex: Heroes United|Heroes United]]'')</small>
File:PLACEHOLDER2.png|link=[[Eatle]]|[[Eatle]]
File:PLACEHOLDER2.png|link=[[Juryrigg]]|[[Juryrigg]]
</gallery></center>
{{-}}
== Introduced in ''[[Ben 10: Omniverse]]'' ==
<center><gallery widths="75px" heights="130px">
File:PLACEHOLDER2.png|link=[[Feedback]]|[[Feedback]]
File:PLACEHOLDER2.png|link=[[Bloxx]]|[[Bloxx]]
File:PLACEHOLDER2.png|link=[[Gravattack]]|[[Gravattack]]
File:PLACEHOLDER2.png|link=[[Crashhopper]]|[[Crashhopper]]
File:PLACEHOLDER2.png|link=[[Ball Weevil]]|[[Ball Weevil]]
File:PLACEHOLDER2.png|link=[[Walkatrout]]|[[Walkatrout]]
File:PLACEHOLDER2.png|link=[[Pesky Dust]]|[[Pesky Dust]]
File:PLACEHOLDER2.png|link=[[Mole-Stache]]|[[Mole-Stache]]
File:PLACEHOLDER2.png|link=[[The Worst]]|[[The Worst]]
File:PLACEHOLDER2.png|link=[[Kickin Hawk]]|[[Kickin Hawk]]
File:PLACEHOLDER2.png|link=[[Astrodactyl]]|[[Astrodactyl]]
File:PLACEHOLDER2.png|link=[[Toepick]]|[[Toepick]]
File:PLACEHOLDER2.png|link=[[Bullfrag]]|[[Bullfrag]]
File:PLACEHOLDER2.png|link=[[Atomix]]|[[Atomix]]
File:PLACEHOLDER2.png|link=[[Gutrot]]|[[Gutrot]]
File:PLACEHOLDER2.png|link=[[Whampire]]|[[Whampire]]
</gallery></center>
== Unseen ==
<center><gallery widths="75px" heights="130px">
File:PLACEHOLDER2.png|link=[[Sandbox]]|[[Sandbox|Placeholder]]
File:PLACEHOLDER2.png|link=[[Sandbox]]|[[Sandbox|Placeholder]]
</gallery></center>
== Non-canon ==
<center><gallery widths="75px" heights="130px">
File:PLACEHOLDER2.png|link=[[Sandbox]]|[[Sandbox|Placeholder]]
File:PLACEHOLDER2.png|link=[[Sandbox]]|[[Sandbox|Placeholder]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
{{-}}
91c4bc355102251a879dcc9e3eb2fb5a16df5fb2
1316
1315
2020-08-03T02:38:35Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
__TOC__
{{-}}
== Introduced in ''[[Ben 10 (2005)|Ben 10]]'' ==
<center><gallery widths="75px" heights="130px">
File:PLACEHOLDER2.png|link=[[Heatblast (Prime)]]|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|link=[[Wildmutt]]|[[Wildmutt]]
File:PLACEHOLDER2.png|link=[[Diamondhead (Prime)]]|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|link=[[XLR8 (Prime)]]|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|link=[[Greymatter (Prime)]]|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|link=[[Four Arms (Prime)]]|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|link=[[Stinkfly (Prime)]]|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|link=[[Ripjaws]]|[[Ripjaws]]
File:PLACEHOLDER2.png|link=[[Upgrade (Prime)]]|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|link=[[Ghostfreak]]|[[Ghostfreak]]
File:PLACEHOLDER2.png|link=[[Cannonbolt (Prime)]]|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|link=[[Wildvine (Prime)]]|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|link=[[Blitzwolfer]]|[[Blitzwolfer]]
File:PLACEHOLDER2.png|link=[[Snare-oh]]|[[Snare-oh]]
File:PLACEHOLDER2.png|link=[[Frankenstrike]]|[[Frankenstrike]]
File:PLACEHOLDER2.png|link=[[Upchuck]]|[[Upchuck]] <small>(Perk)</small>
File:PLACEHOLDER2.png|link=[[Ditto]]|[[Ditto]]
File:PLACEHOLDER2.png|link=[[Eye Guy]]|[[Eye Guy]]
File:PLACEHOLDER2.png|link=[[Way Big (Prime)]]|[[Way Big (Prime)|Way Big]] <br><small>(Introduced in ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'')</small>
File:PLACEHOLDER2.png|link=[[Buzzshock]]|[[Buzzshock]] <br><small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|link=[[Spitter]]|[[Spitter]] <br><small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|link=[[Arctiguana]]|[[Arctiguana]] <br><small>(First used by Ben 10,000)</small>
</gallery></center>
{{-}}
== Introduced in ''[[Ben 10: Alien Force]]'' ==
<center><gallery widths="75px" heights="130px">
File:PLACEHOLDER2.png|link=[[Swampfire]]|[[Swampfire]]
File:PLACEHOLDER2.png|link=[[Echo Echo]]|[[Echo Echo]]
File:PLACEHOLDER2.png|link=[[Humungousaur (Prime)]]|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|link=[[Jetray (Prime)]]|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|link=[[Big Chill]]|[[Big Chill]]
File:PLACEHOLDER2.png|link=[[Chromastone]]|[[Chromastone]]
File:PLACEHOLDER2.png|link=[[Brainstorm]]|[[Brainstorm]]
File:PLACEHOLDER2.png|link=[[Spidermonkey]]|[[Spidermonkey]]
File:PLACEHOLDER2.png|link=[[Goop]]|[[Goop]]
File:PLACEHOLDER2.png|link=[[Alien X]]|[[Alien X]]
File:PLACEHOLDER2.png|link=[[Upchuck]]|[[Upchuck]] <small>(Murk)</small>
File:PLACEHOLDER2.png|link=[[Lodestar]]|[[Lodestar]]
File:PLACEHOLDER2.png|link=[[Rath (Prime)]]|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|link=[[Nanomech]]|[[Nanomech]] <br><small>(Introduced in ''[[Ben 10: Alien Swarm|Alien Swarm]]'')</small>
</gallery></center>
{{-}}
== Introduced in ''[[Ben 10: Ultimate Alien]]'' ==
<center><gallery widths="75px" heights="130px">
File:PLACEHOLDER2.png|link=[[Water Hazard]]|[[Water Hazard]]
File:PLACEHOLDER2.png|link=[[AmpFibian]]|[[AmpFibian]]
File:PLACEHOLDER2.png|link=[[Armodrillo]]|[[Armodrillo]]
File:PLACEHOLDER2.png|link=[[Terraspin]]|[[Terraspin]]
File:PLACEHOLDER2.png|link=[[NRG]]|[[NRG]]
File:PLACEHOLDER2.png|link=[Fasttrack]]|[[Fasttrack]]
File:PLACEHOLDER2.png|link=[[Clockwork]]|[[Clockwork]]
File:PLACEHOLDER2.png|link=[[Chamalien]]|[[Chamalien]]
File:PLACEHOLDER2.png|link=[[Shocksquatch]]|[[Shocksquatch]] <br><small>(Introduced in ''[[Ben 10/Generator Rex: Heroes United|Heroes United]]'')</small>
File:PLACEHOLDER2.png|link=[[Eatle]]|[[Eatle]]
File:PLACEHOLDER2.png|link=[[Juryrigg]]|[[Juryrigg]]
</gallery></center>
{{-}}
== Introduced in ''[[Ben 10: Omniverse]]'' ==
<center><gallery widths="75px" heights="130px">
File:PLACEHOLDER2.png|link=[[Feedback]]|[[Feedback]]
File:PLACEHOLDER2.png|link=[[Bloxx]]|[[Bloxx]]
File:PLACEHOLDER2.png|link=[[Gravattack]]|[[Gravattack]]
File:PLACEHOLDER2.png|link=[[Crashhopper]]|[[Crashhopper]]
File:PLACEHOLDER2.png|link=[[Ball Weevil]]|[[Ball Weevil]]
File:PLACEHOLDER2.png|link=[[Walkatrout]]|[[Walkatrout]]
File:PLACEHOLDER2.png|link=[[Pesky Dust]]|[[Pesky Dust]]
File:PLACEHOLDER2.png|link=[[Mole-Stache]]|[[Mole-Stache]]
File:PLACEHOLDER2.png|link=[[The Worst]]|[[The Worst]]
File:PLACEHOLDER2.png|link=[[Kickin Hawk]]|[[Kickin Hawk]]
File:PLACEHOLDER2.png|link=[[Astrodactyl]]|[[Astrodactyl]]
File:PLACEHOLDER2.png|link=[[Toepick]]|[[Toepick]]
File:PLACEHOLDER2.png|link=[[Bullfrag]]|[[Bullfrag]]
File:PLACEHOLDER2.png|link=[[Atomix]]|[[Atomix]]
File:PLACEHOLDER2.png|link=[[Gutrot]]|[[Gutrot]]
File:PLACEHOLDER2.png|link=[[Whampire]]|[[Whampire]]
</gallery></center>
== Unseen ==
<center><gallery widths="75px" heights="130px">
File:PLACEHOLDER2.png|link=[[Sandbox]]|[[Sandbox|Placeholder]]
File:PLACEHOLDER2.png|link=[[Sandbox]]|[[Sandbox|Placeholder]]
</gallery></center>
== Non-canon ==
<center><gallery widths="75px" heights="130px">
File:PLACEHOLDER2.png|link=[[Sandbox]]|[[Sandbox|Placeholder]]
File:PLACEHOLDER2.png|link=[[Sandbox]]|[[Sandbox|Placeholder]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
{{-}}
e2e1d82234cdfb1a5f979adedf16c1c597e821df
Way Big (Prime)
0
349
1317
2020-08-03T02:38:51Z
Jaswacker
30585766
Created page with "placeholder"
wikitext
text/x-wiki
placeholder
ff55435345834a3fe224936776c2aa15f6ed5358
Way Big
0
168
1318
625
2020-08-03T02:39:33Z
Jaswacker
30585766
wikitext
text/x-wiki
{{disambig}}
<noinclude>[[Category:Transformations]]</noinclude>
c12439a59698b9c50d3e458db0f510ef6b967d61
File:Benzarro promo art.png
6
350
1319
2020-09-27T18:26:24Z
Jaswacker
30585766
this is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
this is FAN ART. NOT OFFICIAL.
2a22ee2adf9d08253a6f32dea0c388650bd77f20
Ben Tennyson (Disambiguation)
0
24
1320
1283
2020-09-27T18:26:52Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:Eon_UltimateAlien.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
</gallery></center>
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Character/Aliens#Argit 10|"Argit 10"]]
</gallery></center>
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
==Other==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
282840fc9154ce45be35ae45d458d838c412b8db
Omnitrix (Disambiguation)
0
303
1321
1287
2020-09-27T23:40:37Z
Jaswacker
30585766
/* Ben 10 (2016) */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth]] of the [[Galvan]], in an effort to make peace among varying species. The original found its way onto the wrist of then 10-year-old [[Ben Tennyson]], who would go then use he device to save the world, universe, and multiverse, many times over. Throughout the greater multiverse, many versions of the Omnitrix have been seen.
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:af trix.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:10kreturnstrix.png|link=[[Ultimatrix]]|[[Ben 10,000 (Ultimate Alien|Ben 10,000]]'s Ultimatrix that turns him into [[Ultimate Ben]]
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biotrix2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:Stabilizer Red.png|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:omnitrix-reboot.gif|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
</gallery></center>
026a639eb97d9c5634315473fafd6f890b405d9a
1323
1321
2020-09-27T23:42:27Z
Jaswacker
30585766
/* Ben 10 (2016) */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth]] of the [[Galvan]], in an effort to make peace among varying species. The original found its way onto the wrist of then 10-year-old [[Ben Tennyson]], who would go then use he device to save the world, universe, and multiverse, many times over. Throughout the greater multiverse, many versions of the Omnitrix have been seen.
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:af trix.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:10kreturnstrix.png|link=[[Ultimatrix]]|[[Ben 10,000 (Ultimate Alien|Ben 10,000]]'s Ultimatrix that turns him into [[Ultimate Ben]]
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biotrix2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:Stabilizer Red.png|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:Omnitrix-reboot.gif|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
</gallery></center>
8448d080be9874eafc7667b40892ec2b4fca6f1d
1324
1323
2020-09-27T23:47:23Z
Jaswacker
30585766
/* Ben 10: Omniverse */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth]] of the [[Galvan]], in an effort to make peace among varying species. The original found its way onto the wrist of then 10-year-old [[Ben Tennyson]], who would go then use he device to save the world, universe, and multiverse, many times over. Throughout the greater multiverse, many versions of the Omnitrix have been seen.
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:af trix.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:10kreturnstrix.png|link=[[Ultimatrix]]|[[Ben 10,000 (Ultimate Alien|Ben 10,000]]'s Ultimatrix that turns him into [[Ultimate Ben]]
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biotrix2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:stabilizergif.gif|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:Omnitrix-reboot.gif|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
</gallery></center>
4427581ecdd6a1b38febb8aafd206cceadf01cf1
File:Omnitrix-reboot.gif
6
351
1322
2020-09-27T23:40:54Z
Jaswacker
30585766
these are FAN ART. NOT CANON.
wikitext
text/x-wiki
== Summary ==
these are FAN ART. NOT CANON.
2a409d60d285d65ab619863d68f73bd7cee465ab
File:Stabilizergif.gif
6
352
1325
2020-09-27T23:47:41Z
Jaswacker
30585766
these are FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
these are FAN ART. NOT OFFICIAL.
16867371c6c1142bc28b41773084ae072c469e21
Minor Transformations
0
4
1326
1299
2020-09-28T17:08:44Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__
{{tabs|{{tab|Prime}}{{tab|Albedo}}{{tab|Reboot}}{{tab|Ben 23}}{{tab|Bad Ben}}{{tab|Benzarro}}{{tab|Mad Ben}}{{tab|Nega Ben}}{{tab|Gwen 10}}{{tab|Ben 10K}}{{tab|Other}}}}
<noinclude>[[Category:Transformations]]</noinclude>
9e70969472ff71cfae3b4dbaf89285acb79618ad
Sandbox
0
240
1327
1291
2020-09-28T22:21:33Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Unnamed Sonic Screeching Bird Alien===
This alien was only mentioned in passing in a text popup during [[I-10: The Ben 10 User Generated Experience]]. It was said to be an alien that was scrapped during development of the Original Series.
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Sandbox is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Rocks===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any seen continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Ben-Krakken===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
Placeholder. Make note that the name is total conjecture.
{{-}}
===Stretcheleo===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Shadowman===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Invincible===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Bob the Blob===
[[File:Bob the Blob.png|thumb|200px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
{{-}}
===Antigravitesla===
[[File:Antigravitesla.png|thumb|200px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|200px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|200px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Portaler===
[[File:portaler.png|thumb|200px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, they are also able to make portals to teleport themself and others.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
{{-}}
===Thriller Whale===
Placeholder
{{-}}
===TenTen===
Placeholder
{{-}}
===Hotdog Alien===
[[File:hotdawg.png|thumb|200px|caption]]
[[File:hotdawgguitar.png|thumb|200px|caption]]
Placeholder
{{-}}
===''DNA Decode'' Fusion===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:DecimusPrime_RobotMode.jpeg|thumb|350px|there is no caption. it's just decimus]]
[[File:DecimusPrime_AltMode.jpeg|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
==Joke Aliens==
The following transformations were named by the crew as jokes, and are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Moot===
'''Moot''' is supposedly the name of Ben's [[Atasian|Highbreed]] transformation, as stated on a forum by the late [[Dwayne McDuffie]].
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===Named by Derrick J Wyatt===
The following aliens were named by Derrick J Wyatt as aliens that Ben had unlocked by the time of ''[[Ben 10: Omniverse|Omniverse]]''.
* The Zilch
* Pyxl-Loaf
* Crocduster
* Overround
* Splatterator
* Dropsies
* Tranquenstine
* Tanker Bell
* Mister Sister
* Port-A-Porty
* THUUG
* The Walking Dread
* Polywhirl
* Tool Bucket
* Murphybed
* Turdberry
* Brundlefoot
{{-}}
===Named by Matt Wayne===
The following aliens were named by [[Matt Wayne]] as "useless" aliens that Ben had unlocked by the time he was 11-years-old, but got bored of.
* Somnambulizard <ref>https://web.archive.org/web/20200530230328/https://ben10.forumotion.co.uk/t130p1000-qa-with-matt-wayne</ref>
* Bungee Sponge
* Skidmarx
* Mealymouth
* Hippopotamass
* Crabtastic
{{-}}
5d2d3abcb13f4beb868e9423bf7c4b62f1d43e67
Minor Transformations/Prime
0
346
1328
1300
2020-09-28T23:07:29Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:Antigravitesla.png|thumb|200px|Tally ho!]]
[[File:PLACEHOLDER2.png|thumb|200px|djw's postcanon design]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:Bob the Blob.png|thumb|200px|Two heads sometimes aren't that great.]]
[[File:PLACEHOLDER2.png|thumb|200px|djw's postcanon design]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|200px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|200px|group photo]]
[[File:PLACEHOLDER2.png|thumb|200px|sketch]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse}|Omniverse]]''.
{{-}}
===Portaler===
[[File:PLACEHOLDER2.png|thumb|200px|djw's postcanon design]]
[[File:portaler.png|thumb|200px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, they are also able to make portals to teleport themself and others.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse}|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien==
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:DecimusPrime_RobotMode.jpeg|thumb|350px|there is no caption. it's just decimus]]
[[File:DecimusPrime_AltMode.jpeg|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible==
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|200px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|200px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman==
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Stretcheleo==
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation==
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien==
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien==
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien==
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien==
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee==
placeholder
{{-}}
===Elast-Elk==
placeholder
{{-}}
===Farmer BoringJeans==
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot==
placeholder
{{-}}
===Snorecupine==
placeholder
{{-}}
===Sparklebellum==
placeholder
{{-}}
===TenTen==
placeholder
{{-}}
===The Marshmallow Marauder==
placeholder
{{-}}
===Thriller Whale==
placeholder
{{-}}
===Miscellaneous==
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
02eb8980c8a1f9f794ef5a51cafd349f6640c808
1329
1328
2020-09-28T23:08:06Z
Jaswacker
30585766
/* =Cartoon Network Alien */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:Antigravitesla.png|thumb|200px|Tally ho!]]
[[File:PLACEHOLDER2.png|thumb|200px|djw's postcanon design]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:Bob the Blob.png|thumb|200px|Two heads sometimes aren't that great.]]
[[File:PLACEHOLDER2.png|thumb|200px|djw's postcanon design]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|200px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|200px|group photo]]
[[File:PLACEHOLDER2.png|thumb|200px|sketch]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse}|Omniverse]]''.
{{-}}
===Portaler===
[[File:PLACEHOLDER2.png|thumb|200px|djw's postcanon design]]
[[File:portaler.png|thumb|200px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, they are also able to make portals to teleport themself and others.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse}|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:DecimusPrime_RobotMode.jpeg|thumb|350px|there is no caption. it's just decimus]]
[[File:DecimusPrime_AltMode.jpeg|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible==
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|200px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|200px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman==
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Stretcheleo==
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation==
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien==
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien==
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien==
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien==
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee==
placeholder
{{-}}
===Elast-Elk==
placeholder
{{-}}
===Farmer BoringJeans==
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot==
placeholder
{{-}}
===Snorecupine==
placeholder
{{-}}
===Sparklebellum==
placeholder
{{-}}
===TenTen==
placeholder
{{-}}
===The Marshmallow Marauder==
placeholder
{{-}}
===Thriller Whale==
placeholder
{{-}}
===Miscellaneous==
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
734b97ae93ea2275c6f007bbfb546e63ac632826
1330
1329
2020-09-28T23:08:24Z
Jaswacker
30585766
/* =Invincible */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:Antigravitesla.png|thumb|200px|Tally ho!]]
[[File:PLACEHOLDER2.png|thumb|200px|djw's postcanon design]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:Bob the Blob.png|thumb|200px|Two heads sometimes aren't that great.]]
[[File:PLACEHOLDER2.png|thumb|200px|djw's postcanon design]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|200px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|200px|group photo]]
[[File:PLACEHOLDER2.png|thumb|200px|sketch]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse}|Omniverse]]''.
{{-}}
===Portaler===
[[File:PLACEHOLDER2.png|thumb|200px|djw's postcanon design]]
[[File:portaler.png|thumb|200px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, they are also able to make portals to teleport themself and others.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse}|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:DecimusPrime_RobotMode.jpeg|thumb|350px|there is no caption. it's just decimus]]
[[File:DecimusPrime_AltMode.jpeg|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|200px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|200px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman==
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Stretcheleo==
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation==
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien==
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien==
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien==
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien==
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee==
placeholder
{{-}}
===Elast-Elk==
placeholder
{{-}}
===Farmer BoringJeans==
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot==
placeholder
{{-}}
===Snorecupine==
placeholder
{{-}}
===Sparklebellum==
placeholder
{{-}}
===TenTen==
placeholder
{{-}}
===The Marshmallow Marauder==
placeholder
{{-}}
===Thriller Whale==
placeholder
{{-}}
===Miscellaneous==
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
0563a838e9bfb22cf2949d596a1836cb73496bd1
1331
1330
2020-09-28T23:09:50Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:Antigravitesla.png|thumb|200px|Tally ho!]]
[[File:PLACEHOLDER2.png|thumb|200px|djw's postcanon design]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:Bob the Blob.png|thumb|200px|Two heads sometimes aren't that great.]]
[[File:PLACEHOLDER2.png|thumb|200px|djw's postcanon design]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|200px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|200px|group photo]]
[[File:PLACEHOLDER2.png|thumb|200px|sketch]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse}|Omniverse]]''.
{{-}}
===Portaler===
[[File:PLACEHOLDER2.png|thumb|200px|djw's postcanon design]]
[[File:portaler.png|thumb|200px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, they are also able to make portals to teleport themself and others.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse}|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:DecimusPrime_RobotMode.jpeg|thumb|350px|there is no caption. it's just decimus]]
[[File:DecimusPrime_AltMode.jpeg|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|200px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|200px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
1fdbcbbfcb702b760d46d86daa56d2655c9df32d
1332
1331
2020-09-28T23:17:10Z
Jaswacker
30585766
/* Post-canon */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:Antigravitesla.png|thumb|200px|Tally ho!]]
[[File:PLACEHOLDER2.png|thumb|200px|djw's postcanon design]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:Bob the Blob.png|thumb|200px|Two heads sometimes aren't that great.]]
[[File:PLACEHOLDER2.png|thumb|200px|djw's postcanon design]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|200px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|200px|group photo]]
[[File:PLACEHOLDER2.png|thumb|200px|sketch]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse}|Omniverse]]''.
{{-}}
===Portaler===
[[File:PLACEHOLDER2.png|thumb|200px|djw's postcanon design]]
[[File:portaler.png|thumb|200px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, they are also able to make portals to teleport themself and others.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse}|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse}|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse}|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:DecimusPrime_RobotMode.jpeg|thumb|350px|there is no caption. it's just decimus]]
[[File:DecimusPrime_AltMode.jpeg|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|200px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|200px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
d26f707be3251e9a2144d6c865b2025e97fc205a
1333
1332
2020-09-28T23:20:38Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:Antigravitesla.png|thumb|200px|Tally ho!]]
[[File:PLACEHOLDER2.png|thumb|200px|djw's postcanon design]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:Bob the Blob.png|thumb|200px|Two heads sometimes aren't that great.]]
[[File:PLACEHOLDER2.png|thumb|200px|djw's postcanon design]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|200px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|200px|group photo]]
[[File:PLACEHOLDER2.png|thumb|200px|sketch]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
===Portaler===
[[File:PLACEHOLDER2.png|thumb|200px|djw's postcanon design]]
[[File:portaler.png|thumb|200px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, they are also able to make portals to teleport themself and others.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:DecimusPrime_RobotMode.jpeg|thumb|350px|there is no caption. it's just decimus]]
[[File:DecimusPrime_AltMode.jpeg|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|200px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|200px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
e76291ad0b1ad788d2bd3e556f98d298de7a6396
1334
1333
2020-09-28T23:21:42Z
Jaswacker
30585766
/* Portaler */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:Antigravitesla.png|thumb|200px|Tally ho!]]
[[File:PLACEHOLDER2.png|thumb|200px|djw's postcanon design]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:Bob the Blob.png|thumb|200px|Two heads sometimes aren't that great.]]
[[File:PLACEHOLDER2.png|thumb|200px|djw's postcanon design]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|200px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|200px|group photo]]
[[File:PLACEHOLDER2.png|thumb|200px|sketch]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
===Portaler===
[[File:PLACEHOLDER2.png|thumb|200px|djw's postcanon design]]
[[File:portaler.png|thumb|200px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, they are also able to make portals to teleport themself and others.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:DecimusPrime_RobotMode.jpeg|thumb|350px|there is no caption. it's just decimus]]
[[File:DecimusPrime_AltMode.jpeg|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|200px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|200px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
35c28f265bc9e450e2c8e7407f322763e668a8e8
1335
1334
2020-09-28T23:21:59Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:Antigravitesla.png|thumb|200px|Tally ho!]]
[[File:PLACEHOLDER2.png|thumb|200px|djw's postcanon design]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:Bob the Blob.png|thumb|200px|Two heads sometimes aren't that great.]]
[[File:PLACEHOLDER2.png|thumb|200px|djw's postcanon design]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|200px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|200px|group photo]]
[[File:PLACEHOLDER2.png|thumb|200px|sketch]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
===Portaler===
[[File:PLACEHOLDER2.png|thumb|200px|djw's postcanon design]]
[[File:portaler.png|thumb|200px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, they are also able to make portals to teleport themself and others.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:DecimusPrime_RobotMode.jpeg|thumb|350px|there is no caption. it's just decimus]]
[[File:DecimusPrime_AltMode.jpeg|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|200px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|200px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
7be04341650adf75d71fbaa242bcb65179d48267
1336
1335
2020-09-28T23:24:20Z
Jaswacker
30585766
/* Decagon Vreedle */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:Antigravitesla.png|thumb|200px|Tally ho!]]
[[File:PLACEHOLDER2.png|thumb|200px|djw's postcanon design]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:Bob the Blob.png|thumb|200px|Two heads sometimes aren't that great.]]
[[File:PLACEHOLDER2.png|thumb|200px|djw's postcanon design]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|200px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|200px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
===Portaler===
[[File:PLACEHOLDER2.png|thumb|200px|djw's postcanon design]]
[[File:portaler.png|thumb|200px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, they are also able to make portals to teleport themself and others.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:DecimusPrime_RobotMode.jpeg|thumb|350px|there is no caption. it's just decimus]]
[[File:DecimusPrime_AltMode.jpeg|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|200px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|200px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
7f8bfbaa7e24b5460e8e355d7fa61a3e0eae6d4d
1337
1336
2020-09-28T23:25:03Z
Jaswacker
30585766
/* Bob the Blob */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:Antigravitesla.png|thumb|200px|Tally ho!]]
[[File:PLACEHOLDER2.png|thumb|200px|djw's postcanon design]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:Bob the Blob.png|thumb|200px|Two heads sometimes aren't that great.]]
[[File:postcanon-bob.png|thumb|200px|djw's postcanon design]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|200px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|200px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
===Portaler===
[[File:PLACEHOLDER2.png|thumb|200px|djw's postcanon design]]
[[File:portaler.png|thumb|200px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, they are also able to make portals to teleport themself and others.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:DecimusPrime_RobotMode.jpeg|thumb|350px|there is no caption. it's just decimus]]
[[File:DecimusPrime_AltMode.jpeg|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|200px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|200px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
2bef76dcb2f942e9c916d4ddeb4324e28c6fa812
1338
1337
2020-09-28T23:25:52Z
Jaswacker
30585766
/* Antigravitesla */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:Antigravitesla.png|thumb|200px|Tally ho!]]
[[File:postcanon-tesla.png|thumb|200px|djw's postcanon design]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:Bob the Blob.png|thumb|200px|Two heads sometimes aren't that great.]]
[[File:postcanon-bob.png|thumb|200px|djw's postcanon design]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|200px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|200px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
===Portaler===
[[File:PLACEHOLDER2.png|thumb|200px|djw's postcanon design]]
[[File:portaler.png|thumb|200px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, they are also able to make portals to teleport themself and others.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:DecimusPrime_RobotMode.jpeg|thumb|350px|there is no caption. it's just decimus]]
[[File:DecimusPrime_AltMode.jpeg|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|200px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|200px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
4e3fba50b07752fb0338ce87c5ddea09fd5e2975
1339
1338
2020-09-28T23:26:31Z
Jaswacker
30585766
/* Alien Z */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:postcanon-alienz.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:Antigravitesla.png|thumb|200px|Tally ho!]]
[[File:postcanon-tesla.png|thumb|200px|djw's postcanon design]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:Bob the Blob.png|thumb|200px|Two heads sometimes aren't that great.]]
[[File:postcanon-bob.png|thumb|200px|djw's postcanon design]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|200px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|200px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
===Portaler===
[[File:PLACEHOLDER2.png|thumb|200px|djw's postcanon design]]
[[File:portaler.png|thumb|200px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, they are also able to make portals to teleport themself and others.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:DecimusPrime_RobotMode.jpeg|thumb|350px|there is no caption. it's just decimus]]
[[File:DecimusPrime_AltMode.jpeg|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|200px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|200px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
b53aaaa5193cd5a73c57bf472ef1058d59a05c5e
1340
1339
2020-09-28T23:35:58Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:rocks1.png|thumb|200px|caption]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|200px|caption]]
[[File:squidstrictor2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:postcanon-alienz.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:Antigravitesla.png|thumb|200px|Tally ho!]]
[[File:postcanon-tesla.png|thumb|200px|djw's postcanon design]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:Bob the Blob.png|thumb|200px|Two heads sometimes aren't that great.]]
[[File:postcanon-bob.png|thumb|200px|djw's postcanon design]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|200px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|200px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
===Portaler===
[[File:postcanon-portaler.png|thumb|200px|djw's postcanon design]]
[[File:portaler.png|thumb|200px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, they are also able to make portals to teleport themself and others.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark1.png|thumb|200px|caption]]
[[File:snark2.png|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:DecimusPrime_RobotMode.jpeg|thumb|350px|there is no caption. it's just decimus]]
[[File:DecimusPrime_AltMode.jpeg|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|200px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|200px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|200px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|200px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
ffb3d63816d33870009fb969d3cceec5cc26b56f
File:Arano.png
6
353
1341
2020-09-28T23:39:38Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Benkrakken.png
6
354
1342
2020-09-28T23:39:53Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:CNalien.png
6
355
1343
2020-09-28T23:40:07Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Decagonsketch.png
6
356
1344
2020-09-28T23:40:20Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Hologramalien.png
6
357
1345
2020-09-28T23:40:40Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Invincible.png
6
358
1346
2020-09-28T23:40:56Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Orangerobotalien.png
6
359
1347
2020-09-28T23:41:14Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Postcanon-alienz.jpeg
6
360
1348
2020-09-28T23:41:29Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Postcanon-bob.jpeg
6
361
1349
2020-09-28T23:41:46Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Postcanon-portaler.jpeg
6
362
1350
2020-09-28T23:42:06Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Postcanon-tesla.jpeg
6
363
1351
2020-09-28T23:42:18Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Rocks1.png
6
364
1352
2020-09-28T23:42:30Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Rocks2.png
6
365
1353
2020-09-28T23:42:47Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Shadowman.png
6
366
1354
2020-09-28T23:43:00Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Snark1.jpeg
6
367
1355
2020-09-28T23:43:38Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Snark2.jpeg
6
368
1356
2020-09-28T23:43:50Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Squidstrictor1.png
6
369
1357
2020-09-28T23:44:11Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Squidstrictor2.png
6
370
1358
2020-09-28T23:44:23Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Stretcheleo.png
6
371
1359
2020-09-28T23:44:36Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Minor Transformations/Prime
0
346
1360
1340
2020-09-28T23:46:15Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:rocks1.png|thumb|200px|caption]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|200px|caption]]
[[File:squidstrictor2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:postcanon-alienz.jpeg|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:Antigravitesla.png|thumb|200px|Tally ho!]]
[[File:postcanon-tesla.jpeg|thumb|200px|djw's postcanon design]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:Bob the Blob.png|thumb|200px|Two heads sometimes aren't that great.]]
[[File:postcanon-bob.jpeg|thumb|200px|djw's postcanon design]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|200px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|200px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
===Portaler===
[[File:postcanon-portaler.jpeg|thumb|200px|djw's postcanon design]]
[[File:portaler.png|thumb|200px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, they are also able to make portals to teleport themself and others.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark1.jpeg|thumb|200px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:DecimusPrime_RobotMode.jpeg|thumb|350px|there is no caption. it's just decimus]]
[[File:DecimusPrime_AltMode.jpeg|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|200px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|200px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|200px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|200px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
e0855a8382d1ef55a3466513e00501fba58a420b
1361
1360
2020-09-28T23:54:37Z
Jaswacker
30585766
/* Squirtapillar */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:rocks1.png|thumb|200px|caption]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|200px|caption]]
[[File:squidstrictor2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:postcanon-alienz.jpeg|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:Antigravitesla.png|thumb|200px|Tally ho!]]
[[File:postcanon-tesla.jpeg|thumb|200px|djw's postcanon design]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:Bob the Blob.png|thumb|200px|Two heads sometimes aren't that great.]]
[[File:postcanon-bob.jpeg|thumb|200px|djw's postcanon design]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|200px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|200px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
===Portaler===
[[File:postcanon-portaler.jpeg|thumb|200px|djw's postcanon design]]
[[File:portaler.png|thumb|200px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, they are also able to make portals to teleport themself and others.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark1.jpeg|thumb|200px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:DecimusPrime_RobotMode.jpeg|thumb|350px|there is no caption. it's just decimus]]
[[File:DecimusPrime_AltMode.jpeg|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|200px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|200px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|200px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|200px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
23af9d4da6f40e5811c2139079262b048fd0edff
1362
1361
2020-09-28T23:58:51Z
Carth
30634784
/* Portaler */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:rocks1.png|thumb|200px|caption]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|200px|caption]]
[[File:squidstrictor2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:postcanon-alienz.jpeg|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:Antigravitesla.png|thumb|200px|Tally ho!]]
[[File:postcanon-tesla.jpeg|thumb|200px|djw's postcanon design]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:Bob the Blob.png|thumb|200px|Two heads sometimes aren't that great.]]
[[File:postcanon-bob.jpeg|thumb|200px|djw's postcanon design]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|200px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|200px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
===Portaler===
[[File:postcanon-portaler.jpeg|thumb|200px|djw's postcanon design]]
[[File:portaler.png|thumb|200px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, they are also able to make portals to teleport themself and others. The sound effect used in the game for his ability is the same one used in old Sonic the Hedgehog video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark1.jpeg|thumb|200px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:DecimusPrime_RobotMode.jpeg|thumb|350px|there is no caption. it's just decimus]]
[[File:DecimusPrime_AltMode.jpeg|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|200px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|200px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|200px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|200px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
fa440cc3d3aebd15f07ef65d6c6fabfe68219498
1363
1362
2020-09-29T00:02:46Z
Carth
30634784
/* Portaler */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:rocks1.png|thumb|200px|caption]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|200px|caption]]
[[File:squidstrictor2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:postcanon-alienz.jpeg|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:Antigravitesla.png|thumb|200px|Tally ho!]]
[[File:postcanon-tesla.jpeg|thumb|200px|djw's postcanon design]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:Bob the Blob.png|thumb|200px|Two heads sometimes aren't that great.]]
[[File:postcanon-bob.jpeg|thumb|200px|djw's postcanon design]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|200px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|200px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
===Portaler===
[[File:postcanon-portaler.jpeg|thumb|200px|djw's postcanon design]]
[[File:portaler.png|thumb|200px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark1.jpeg|thumb|200px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:DecimusPrime_RobotMode.jpeg|thumb|350px|there is no caption. it's just decimus]]
[[File:DecimusPrime_AltMode.jpeg|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|200px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|200px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|200px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|200px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
bf607e7f26ed0fb405b21ec3de4a05c50c51a3ac
Continuity
0
122
1364
1252
2020-09-29T00:11:23Z
Carth
30634784
/* Canonicity Tiers */
wikitext
text/x-wiki
Note: This page is entirely tentative, things will be updated at a later date.
Continuity is the flow of events throughout a long running series... is what we would say. Due to different writers on different series, contradicting past events, retcons and the like, Ben 10's continuity is a confusing mess, but because we're crazy, let's try and make sense of it anyway. First, we need to talk about Canonicity Tiers.
== Canonicity Tiers ==
No, not the tears shed as we tried to make sense of everything, these are for the degree of separation between the series and the expanded universe.
=== Canon ===
Without question, the actual cartoon series is the bulk of this tier. Sometimes due to later events, things can be taken out of this tier as if they never happened, this is what's known as a [[Continuity#Level_04:_Retroactive_Continuity|retcon]].
=== Dubiously Canon ===
This refers to the expanded universe media related to a series, which may or may not be fully or partially true, if at all, in the context of the original story. Things such as the video games, comics, crew statements and the like. Until properly confirmed, these stay in this tier.
A good example of Dubious Canonicity comes from the Nintendo DS version of Vilgax Attacks, in which at the end of a fight with Albedo, he transforms into Negative Alien X, only to be trapped in the form for an entire year... which according to Paradox in the episode [[Ben 10,000 Returns]], happened in a separate timeline.
=== Post-Canon ===
Post-Canon refers to things that were made and/or stated by staff of the show, after the show has ended. Such as the Omniverse style designs of Jetray, Fasttrack, Chamalien and Spitter by Derrick J. Wyatt made in 2020.
=== Non-Canon ===
Non-Canon involves things like most crossovers, like FusionFall, or Super Secret Crisis War, as well as random promotional videos that introduce new aliens, such as the Total Access adverts.
=== Retroactive Continuity, Retcons===
A good example of a Retcon when Eon was made not to be a Chronian, but an alternate evil Ben Tennyson. Another good example would be when Kevin's father Devin turned out to be a false memory implanted into his mind by Proctor Servantis.
<noinclude>[[Category:Meta]]</noinclude>
c4a0434dc3ff4564ccb40251b09ff5e09529ed68
1365
1364
2020-09-29T00:11:42Z
Carth
30634784
/* Post-Canon */
wikitext
text/x-wiki
Note: This page is entirely tentative, things will be updated at a later date.
Continuity is the flow of events throughout a long running series... is what we would say. Due to different writers on different series, contradicting past events, retcons and the like, Ben 10's continuity is a confusing mess, but because we're crazy, let's try and make sense of it anyway. First, we need to talk about Canonicity Tiers.
== Canonicity Tiers ==
No, not the tears shed as we tried to make sense of everything, these are for the degree of separation between the series and the expanded universe.
=== Canon ===
Without question, the actual cartoon series is the bulk of this tier. Sometimes due to later events, things can be taken out of this tier as if they never happened, this is what's known as a [[Continuity#Level_04:_Retroactive_Continuity|retcon]].
=== Dubiously Canon ===
This refers to the expanded universe media related to a series, which may or may not be fully or partially true, if at all, in the context of the original story. Things such as the video games, comics, crew statements and the like. Until properly confirmed, these stay in this tier.
A good example of Dubious Canonicity comes from the Nintendo DS version of Vilgax Attacks, in which at the end of a fight with Albedo, he transforms into Negative Alien X, only to be trapped in the form for an entire year... which according to Paradox in the episode [[Ben 10,000 Returns]], happened in a separate timeline.
=== Post-Canon ===
Post-Canon is a term created by this Wiki, and refers to things that were made and/or stated by staff of the show, after the show has ended. Such as the Omniverse style designs of Jetray, Fasttrack, Chamalien and Spitter by Derrick J. Wyatt made in 2020.
=== Non-Canon ===
Non-Canon involves things like most crossovers, like FusionFall, or Super Secret Crisis War, as well as random promotional videos that introduce new aliens, such as the Total Access adverts.
=== Retroactive Continuity, Retcons===
A good example of a Retcon when Eon was made not to be a Chronian, but an alternate evil Ben Tennyson. Another good example would be when Kevin's father Devin turned out to be a false memory implanted into his mind by Proctor Servantis.
<noinclude>[[Category:Meta]]</noinclude>
fc81ca0e98a09d44b47af0135b4ac88504822ee9
Transformations (Disambiguation)
0
94
1366
742
2020-09-29T16:50:42Z
Jaswacker
30585766
wikitext
text/x-wiki
{{Disambig}}
*For a full list of [[Ben Tennyson (Prime)|Ben Prime's]] alien transformations, go to [[Transformations/Prime]].
*For a full list of the transformations of [[Ben Tennyson (Reboot)|Ben from the]] [[Ben 10 (2016)|Reboot]], go to [[Transformations/Reboot]].
*For a list of lesser transformations, go to [[Minor Transformations]], and for [[Continuity#Non-canon|non-canon]] transformations, see [[Transformations/Prime#Non-canon]].
<noinclude>[[Category:Transformations]]</noinclude>
cb86b0f3f30b93c1ef35344ea9d7f73ea5541c59
1367
1366
2020-09-29T16:51:40Z
Jaswacker
30585766
wikitext
text/x-wiki
{{Disambig}}
*For a full list of [[Ben Tennyson (Prime)|Ben Prime's]] alien transformations, go to [[Transformations/Prime]].
*For a full list of the transformations of [[Ben Tennyson (Reboot)|Ben from the]] [[Ben 10 (2016)|Reboot]], go to [[Transformations/Reboot]].
*For a list of lesser transformations, go to [[Minor Transformations]].
<noinclude>[[Category:Transformations]]</noinclude>
1be5c1dadec5f0ef42c4a8612e11ca5460378db2
Minor Transformations
0
4
1368
1326
2020-09-29T16:55:23Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__
{{tabs|{{tab|Prime}}{{tab|Reboot}}{{tab|Albedo}}{{tab|Bad Ben}}{{tab|Ben 10K}}{{tab|Ben 23}}{{tab|Benzarro}}{{tab|Gwen 10}}{{tab|Mad Ben}}{{tab|Nega Ben}}{{tab|Other}}}}
<noinclude>[[Category:Transformations]]</noinclude>
bbdbba3f937756292046695340607530ee11abf2
Minor Transformations/Reboot
0
372
1369
2020-09-29T17:20:22Z
Jaswacker
30585766
Created page with "{{trix|rbt}} __NOTOC__ <sup>[[Minor_Transformations/Reboot|Full page link.]]</sup> {{-}} ==Non-canon== These transformations are considered [[Continuity#Non-Canon|non-canon]]..."
wikitext
text/x-wiki
{{trix|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Reboot|Full page link.]]</sup>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Banana Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Banana Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===''DNA Decode'' Alien Fusion===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Hotdawg===
[[File:Hotdawg.png|thumb|200px|caption]]
[[File:Hotdawgguitar.png|thumb|200px|caption]]
placeholder
{{-}}
===Mole-Stache===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Rath Arms===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Shock Blast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==''Crossover Nexus'' Transformations (Non-canon)==
These transformations appeared in [[Crossover Nexus]], and are each [[Ben Tennyson (Reboot)|Ben's]] forms of popular [[Cartoon Network]] characters. They have not appeared in any proper continuity, and are therefore not-canon.
If one of these transformations appears in any official media, they will be moved.
[[File:PLACEHOLDER2.png|thumb|200px|gif with jake the dog]]
[[File:PLACEHOLDER2.png|thumb|200px|gif of the cartoon cartoon punch]]
The full list of characters Ben turns into is:
* Jake the Dog
* Prohiyas Warrior
* Robot Jones
* Festro
* Uncle Grandpa
* Gumball Watterson
* Mordecai
* Edd
* Wirt
* Moxy
* Grizz
* Jeff
* Grim
* Chowder
* K’nuckles
* Monkey
* Supercow
* Johnny Bravo
* Buttecup
* Dexter
* Finn the Human
{{-}}
==''Villainous Guide for a Successful Evil Conquest'' Transformations (Non-canon)==
placeholder
If one of these transformations appears in any official media, they will be moved.
[[File:PLACEHOLDER2.png|thumb|200px|gif of omnitrix dial + transformations]]
The full list of characters Vilgax turns into is:
* Instant Martian
* The Great Gazoo
* Zorak
* Dalek
* Black Hat Alien
9a59aa614b6fbf59890f01e210c3c7d17f429df8
1370
1369
2020-09-29T17:33:15Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Reboot|Full page link.]]</sup>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Banana Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Banana Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===''DNA Decode'' Alien Fusion===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Hotdawg===
[[File:Hotdawg.png|thumb|200px|caption]]
[[File:Hotdawgguitar.png|thumb|200px|caption]]
placeholder
{{-}}
===Mole-Stache===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Rath Arms===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Shock Blast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==''Crossover Nexus'' Transformations (Non-canon)==
These transformations appeared in [[Crossover Nexus]], and are each [[Ben Tennyson (Reboot)|Ben's]] forms of popular [[Cartoon Network]] characters. They have not appeared in any proper continuity, and are therefore not-canon.
If one of these transformations appears in any official media, they will be moved.
[[File:nexusgif1.gif|thumb|200px|gif with jake the dog]]
[[File:cartooncartoonpunch.gif|thumb|400px|gif of the cartoon cartoon punch]]
The full list of characters Ben turns into is:
* [https://en.wikipedia.org/wiki/Jake_the_Dog Jake the Dog] ([https://en.wikipedia.org/wiki/Adventure_Time Adventure Time])
* Prohiyas Warrior ([https://en.wikipedia.org/wiki/Mighty_Magiswords Mighty Magiswords])
* Robot Jones (Whatever Happened To Robot Jones?)
* Festro (Super Mountain Fort Awesome)
* Uncle Grandpa (Uncle Grandpa)
* Gumball Watterson (The Amazing World of Gumball)
* Mordecai (Regular Show)
* Double-D (Ed, Edd, and Eddy)
* Wirt (Over The Garden Wall)
* Moxy (The Moxy Show)
* Grizz (We Bare Bears)
* Jeff (Clarance)
* Grim (The Grim Adventure of Billy and Mandy)
* Chowder (Chowder)
* K’nuckles (The Misadventure of Flapjack)
* Monkey (Dial M for Monkey)
* Cow (Cow and Chicken)
* Johnny Bravo (Johnny Bravo)
* Buttercup (The Powerpuff Girls)
* Dexter (Dexter’s Laboratory)
* Finn the Human (Adventure Time)
{{-}}
==''Villainous Guide for a Successful Evil Conquest'' Transformations (Non-canon)==
placeholder
If one of these transformations appears in any official media, they will be moved.
[[File:PLACEHOLDER2.png|thumb|200px|gif of omnitrix dial + transformations]]
The full list of characters Vilgax turns into is:
* Instant Martian
* The Great Gazoo
* Zorak
* Dalek
* Black Hat Alien
500b011be274c36be966ac6578fd48519aa89dbe
1372
1370
2020-09-29T17:36:42Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Reboot|Full page link.]]</sup>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Banana Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Banana Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===''DNA Decode'' Alien Fusion===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Hotdawg===
[[File:Hotdawg.png|thumb|200px|caption]]
[[File:Hotdawgguitar.png|thumb|200px|caption]]
placeholder
{{-}}
===Mole-Stache===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Rath Arms===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Shock Blast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==''Crossover Nexus'' Transformations (Non-canon)==
[[File:cartooncartoonpunch.gif|thumb|500px|gif of the cartoon cartoon punch]]
These transformations appeared in [[Crossover Nexus]], and are each [[Ben Tennyson (Reboot)|Ben's]] forms of popular [[Cartoon Network]] characters. They have not appeared in any proper continuity, and are therefore not-canon.
If one of these transformations appears in any official media, they will be moved.
[[File:nexusgif1.gif|thumb|300px|gif with jake the dog]]
The full list of characters Ben turns into is:
* [https://en.wikipedia.org/wiki/Jake_the_Dog Jake the Dog] ([https://en.wikipedia.org/wiki/Adventure_Time Adventure Time])
* Prohiyas Warrior ([https://en.wikipedia.org/wiki/Mighty_Magiswords Mighty Magiswords])
* Robot Jones (Whatever Happened To Robot Jones?)
* Festro (Super Mountain Fort Awesome)
* Uncle Grandpa (Uncle Grandpa)
* Gumball Watterson (The Amazing World of Gumball)
* Mordecai (Regular Show)
* Double-D (Ed, Edd, and Eddy)
* Wirt (Over The Garden Wall)
* Moxy (The Moxy Show)
* Grizz (We Bare Bears)
* Jeff (Clarance)
* Grim (The Grim Adventure of Billy and Mandy)
* Chowder (Chowder)
* K’nuckles (The Misadventure of Flapjack)
* Monkey (Dial M for Monkey)
* Cow (Cow and Chicken)
* Johnny Bravo (Johnny Bravo)
* Buttercup (The Powerpuff Girls)
* Dexter (Dexter’s Laboratory)
* Finn the Human (Adventure Time)
{{-}}
==''Villainous Guide for a Successful Evil Conquest'' Transformations (Non-canon)==
placeholder
If one of these transformations appears in any official media, they will be moved.
[[File:PLACEHOLDER2.png|thumb|200px|gif of omnitrix dial + transformations]]
The full list of characters Vilgax turns into is:
* Instant Martian
* The Great Gazoo
* Zorak
* Dalek
* Black Hat Alien
{{-}}
bc602af2f47925d7e631d260780de84e113e1a5e
1373
1372
2020-09-29T17:49:44Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Reboot|Full page link.]]</sup>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Banana Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Banana Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===''DNA Decode'' Alien Fusion===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Hotdawg===
[[File:Hotdawg.png|thumb|200px|caption]]
[[File:Hotdawgguitar.png|thumb|200px|caption]]
placeholder
{{-}}
===Mole-Stache===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Rath Arms===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Shock Blast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==''Crossover Nexus'' Transformations (Non-canon)==
These transformations appeared in [[Crossover Nexus]], and are each [[Ben Tennyson (Reboot)|Ben's]] forms of popular [[Cartoon Network]] characters. They have not appeared in any proper continuity, and are therefore not-canon.
<div class="thumb tright" style="width:500px;">
<youtube width="500" height="300">ldDawUFYqrM</youtube>
</div>
If one of these transformations appears in any official media, they will be moved.
The full list of characters Ben turns into is:
* [https://en.wikipedia.org/wiki/Jake_the_Dog Jake the Dog] ([https://en.wikipedia.org/wiki/Adventure_Time Adventure Time])
* Prohiyas Warrior ([https://en.wikipedia.org/wiki/Mighty_Magiswords Mighty Magiswords])
* Robot Jones (Whatever Happened To Robot Jones?)
* Festro (Super Mountain Fort Awesome)
* Uncle Grandpa (Uncle Grandpa)
* Gumball Watterson (The Amazing World of Gumball)
* Mordecai (Regular Show)
* Double-D (Ed, Edd, and Eddy)
* Wirt (Over The Garden Wall)
* Moxy (The Moxy Show)
* Grizz (We Bare Bears)
* Jeff (Clarance)
* Grim (The Grim Adventure of Billy and Mandy)
* Chowder (Chowder)
* K’nuckles (The Misadventure of Flapjack)
* Monkey (Dial M for Monkey)
* Cow (Cow and Chicken)
* Johnny Bravo (Johnny Bravo)
* Buttercup (The Powerpuff Girls)
* Dexter (Dexter’s Laboratory)
* Finn the Human (Adventure Time)
{{-}}
==''Villainous Guide for a Successful Evil Conquest'' Transformations (Non-canon)==
placeholder
If one of these transformations appears in any official media, they will be moved.
[[File:PLACEHOLDER2.png|thumb|200px|gif of omnitrix dial + transformations]]
The full list of characters Vilgax turns into is:
* Instant Martian
* The Great Gazoo
* Zorak
* Dalek
* Black Hat Alien
{{-}}
af1a9427a6230ab612930248682d92b067e89276
1374
1373
2020-09-29T17:51:07Z
Jaswacker
30585766
/* Crossover Nexus Transformations (Non-canon) */
wikitext
text/x-wiki
{{trix|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Reboot|Full page link.]]</sup>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Banana Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Banana Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===''DNA Decode'' Alien Fusion===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Hotdawg===
[[File:Hotdawg.png|thumb|200px|caption]]
[[File:Hotdawgguitar.png|thumb|200px|caption]]
placeholder
{{-}}
===Mole-Stache===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Rath Arms===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Shock Blast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==''Crossover Nexus'' Transformations (Non-canon)==
These transformations appeared in [[Crossover Nexus]], and are each [[Ben Tennyson (Reboot)|Ben's]] forms of popular [[Cartoon Network]] characters. They have not appeared in any proper continuity, and are therefore not-canon.
<div class="thumb tright" style="width:500px;">
<youtube width="500" height="300">ldDawUFYqrM</youtube>
</div>
If one of these transformations appears in any official media, they will be moved.
The full list of characters Ben turns into is:
* [https://en.wikipedia.org/wiki/Jake_the_Dog Jake the Dog] ([https://en.wikipedia.org/wiki/Adventure_Time Adventure Time])
* Prohiyas Warrior ([https://en.wikipedia.org/wiki/Mighty_Magiswords Mighty Magiswords])
* Robot Jones (Whatever Happened To Robot Jones?)
* Festro (Super Mountain Fort Awesome)
* Uncle Grandpa (Uncle Grandpa)
* Gumball Watterson (The Amazing World of Gumball)
* Mordecai (Regular Show)
* Double-D (Ed, Edd, and Eddy)
* Wirt (Over The Garden Wall)
* Moxy (The Moxy Show)
* Grizz (We Bare Bears)
* Jeff (Clarance)
* Grim (The Grim Adventure of Billy and Mandy)
* Chowder (Chowder)
* K’nuckles (The Misadventure of Flapjack)
* Monkey (Dial M for Monkey)
* Cow (Cow and Chicken)
* Johnny Bravo (Johnny Bravo)
* Buttercup (The Powerpuff Girls)
* Dexter (Dexter’s Laboratory)
* Finn the Human (Adventure Time)
{{-}}
==''Villainous Guide for a Successful Evil Conquest'' Transformations (Non-canon)==
placeholder
If one of these transformations appears in any official media, they will be moved.
[[File:PLACEHOLDER2.png|thumb|200px|gif of omnitrix dial + transformations]]
The full list of characters Vilgax turns into is:
* Instant Martian
* The Great Gazoo
* Zorak
* Dalek
* Black Hat Alien
{{-}}
c604e6d5df7ca5d7a75da0e26e131f63cf9d21f7
1375
1374
2020-09-29T17:51:21Z
Jaswacker
30585766
/* Crossover Nexus Transformations (Non-canon) */
wikitext
text/x-wiki
{{trix|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Reboot|Full page link.]]</sup>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Banana Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Banana Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===''DNA Decode'' Alien Fusion===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Hotdawg===
[[File:Hotdawg.png|thumb|200px|caption]]
[[File:Hotdawgguitar.png|thumb|200px|caption]]
placeholder
{{-}}
===Mole-Stache===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Rath Arms===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Shock Blast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==''Crossover Nexus'' Transformations (Non-canon)==
These transformations appeared in [[Crossover Nexus]], and are each [[Ben Tennyson (Reboot)|Ben's]] forms of popular [[Cartoon Network]] characters. They have not appeared in any proper continuity, and are therefore not-canon.
<div class="thumb tright" style="width:500px;">
<youtube width="500" height="300">ldDawUFYqrM</youtube>
</div>
If one of these transformations appears in any official media, they will be moved.
The full list of characters Ben turns into is:
* [https://en.wikipedia.org/wiki/Jake_the_Dog Jake the Dog] ([https://en.wikipedia.org/wiki/Adventure_Time Adventure Time])
* Prohiyas Warrior ([https://en.wikipedia.org/wiki/Mighty_Magiswords Mighty Magiswords])
* Robot Jones (Whatever Happened To Robot Jones?)
* Festro (Super Mountain Fort Awesome)
* Uncle Grandpa (Uncle Grandpa)
* Gumball Watterson (The Amazing World of Gumball)
* Mordecai (Regular Show)
* Double-D (Ed, Edd, and Eddy)
* Wirt (Over The Garden Wall)
* Moxy (The Moxy Show)
* Grizz (We Bare Bears)
* Jeff (Clarance)
* Grim (The Grim Adventure of Billy and Mandy)
* Chowder (Chowder)
* K’nuckles (The Misadventure of Flapjack)
* Monkey (Dial M for Monkey)
* Cow (Cow and Chicken)
* Johnny Bravo (Johnny Bravo)
* Buttercup (The Powerpuff Girls)
* Dexter (Dexter’s Laboratory)
* Finn the Human (Adventure Time)
{{-}}
==''Villainous Guide for a Successful Evil Conquest'' Transformations (Non-canon)==
placeholder
If one of these transformations appears in any official media, they will be moved.
[[File:PLACEHOLDER2.png|thumb|200px|gif of omnitrix dial + transformations]]
The full list of characters Vilgax turns into is:
* Instant Martian
* The Great Gazoo
* Zorak
* Dalek
* Black Hat Alien
{{-}}
48335fc9fd8d659bec6492a00842c0e39682f4a2
1376
1375
2020-09-29T17:51:45Z
Jaswacker
30585766
/* Crossover Nexus Transformations (Non-canon) */
wikitext
text/x-wiki
{{trix|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Reboot|Full page link.]]</sup>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Banana Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Banana Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===''DNA Decode'' Alien Fusion===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Hotdawg===
[[File:Hotdawg.png|thumb|200px|caption]]
[[File:Hotdawgguitar.png|thumb|200px|caption]]
placeholder
{{-}}
===Mole-Stache===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Rath Arms===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Shock Blast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==''Crossover Nexus'' Transformations (Non-canon)==
These transformations appeared in [[Crossover Nexus]], and are each [[Ben Tennyson (Reboot)|Ben's]] forms of popular [[Cartoon Network]] characters. They have not appeared in any proper continuity, and are therefore not-canon.
<div class="thumb tright" style="width:500px;">
<youtube width="500" height="300">ldDawUFYqrM</youtube>
</div>
If one of these transformations appears in any official media, they will be moved.
The full list of characters Ben turns into is:
* [https://en.wikipedia.org/wiki/Jake_the_Dog Jake the Dog] ([https://en.wikipedia.org/wiki/Adventure_Time Adventure Time])
* Prohyas ([https://en.wikipedia.org/wiki/Mighty_Magiswords Mighty Magiswords])
* Robot Jones (Whatever Happened To Robot Jones?)
* Festro (Super Mountain Fort Awesome)
* Uncle Grandpa (Uncle Grandpa)
* Gumball Watterson (The Amazing World of Gumball)
* Mordecai (Regular Show)
* Double-D (Ed, Edd, and Eddy)
* Wirt (Over The Garden Wall)
* Moxy (The Moxy Show)
* Grizz (We Bare Bears)
* Jeff (Clarance)
* Grim (The Grim Adventure of Billy and Mandy)
* Chowder (Chowder)
* K’nuckles (The Misadventure of Flapjack)
* Monkey (Dial M for Monkey)
* Cow (Cow and Chicken)
* Johnny Bravo (Johnny Bravo)
* Buttercup (The Powerpuff Girls)
* Dexter (Dexter’s Laboratory)
* Finn the Human (Adventure Time)
{{-}}
==''Villainous Guide for a Successful Evil Conquest'' Transformations (Non-canon)==
placeholder
If one of these transformations appears in any official media, they will be moved.
[[File:PLACEHOLDER2.png|thumb|200px|gif of omnitrix dial + transformations]]
The full list of characters Vilgax turns into is:
* Instant Martian
* The Great Gazoo
* Zorak
* Dalek
* Black Hat Alien
{{-}}
584689c198bc818da6a21e930b5b9a2eea9610e3
1377
1376
2020-09-29T18:00:02Z
Jaswacker
30585766
/* Crossover Nexus Transformations (Non-canon) */
wikitext
text/x-wiki
{{trix|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Reboot|Full page link.]]</sup>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Banana Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Banana Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===''DNA Decode'' Alien Fusion===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Hotdawg===
[[File:Hotdawg.png|thumb|200px|caption]]
[[File:Hotdawgguitar.png|thumb|200px|caption]]
placeholder
{{-}}
===Mole-Stache===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Rath Arms===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Shock Blast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==''Crossover Nexus'' Transformations (Non-canon)==
These transformations appeared in [[Crossover Nexus]], and are each [[Ben Tennyson (Reboot)|Ben's]] forms of popular [[Cartoon Network]] characters. They have not appeared in any proper continuity, and are therefore not-canon.
<div class="thumb tright" style="width:500px;">
<aovideo width="500" height="300">the-cartoon-cartoon-punch</aovideo>
</div>
If one of these transformations appears in any official media, they will be moved.
The full list of characters Ben turns into is:
* [https://en.wikipedia.org/wiki/Jake_the_Dog Jake the Dog] ([https://en.wikipedia.org/wiki/Adventure_Time Adventure Time])
* Prohyas ([https://en.wikipedia.org/wiki/Mighty_Magiswords Mighty Magiswords])
* Robot Jones (Whatever Happened To Robot Jones?)
* Festro (Super Mountain Fort Awesome)
* Uncle Grandpa (Uncle Grandpa)
* Gumball Watterson (The Amazing World of Gumball)
* Mordecai (Regular Show)
* Double-D (Ed, Edd, and Eddy)
* Wirt (Over The Garden Wall)
* Moxy (The Moxy Show)
* Grizz (We Bare Bears)
* Jeff (Clarance)
* Grim (The Grim Adventure of Billy and Mandy)
* Chowder (Chowder)
* K’nuckles (The Misadventure of Flapjack)
* Monkey (Dial M for Monkey)
* Cow (Cow and Chicken)
* Johnny Bravo (Johnny Bravo)
* Buttercup (The Powerpuff Girls)
* Dexter (Dexter’s Laboratory)
* Finn the Human (Adventure Time)
{{-}}
==''Villainous Guide for a Successful Evil Conquest'' Transformations (Non-canon)==
placeholder
If one of these transformations appears in any official media, they will be moved.
[[File:PLACEHOLDER2.png|thumb|200px|gif of omnitrix dial + transformations]]
The full list of characters Vilgax turns into is:
* Instant Martian
* The Great Gazoo
* Zorak
* Dalek
* Black Hat Alien
{{-}}
c0b40ec5e6d41521abd96d8f5d3091ee25fb2a89
1378
1377
2020-09-29T18:06:56Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Reboot|Full page link.]]</sup>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Banana Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Banana Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===''DNA Decode'' Alien Fusion===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Hotdawg===
[[File:Hotdawg.png|thumb|200px|caption]]
[[File:Hotdawgguitar.png|thumb|200px|caption]]
placeholder
{{-}}
===Mole-Stache===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Rath Arms===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Shock Blast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==''Crossover Nexus'' Transformations (Non-canon)==
These transformations appeared in [[Crossover Nexus]], and are each [[Ben Tennyson (Reboot)|Ben's]] forms of popular [[Cartoon Network]] characters. They have not appeared in any proper continuity, and are therefore not-canon.
<div class="thumb tright" style="width:500px;">
<caption>[https://archive.org/details/the-cartoon-cartoon-punch Archive Link]</caption>
<youtube width="500" height="300">ldDawUFYqrM</youtube>
</div>
If one of these transformations appears in any official media, they will be moved.
The full list of characters Ben turns into is:
* [https://en.wikipedia.org/wiki/Jake_the_Dog Jake the Dog] ([https://en.wikipedia.org/wiki/Adventure_Time Adventure Time])
* Prohyas ([https://en.wikipedia.org/wiki/Mighty_Magiswords Mighty Magiswords])
* Robot Jones (Whatever Happened To Robot Jones?)
* Festro (Super Mountain Fort Awesome)
* Uncle Grandpa (Uncle Grandpa)
* Gumball Watterson (The Amazing World of Gumball)
* Mordecai (Regular Show)
* Double-D (Ed, Edd, and Eddy)
* Wirt (Over The Garden Wall)
* Moxy (The Moxy Show)
* Grizz (We Bare Bears)
* Jeff (Clarance)
* Grim (The Grim Adventure of Billy and Mandy)
* Chowder (Chowder)
* K’nuckles (The Misadventure of Flapjack)
* Monkey (Dial M for Monkey)
* Cow (Cow and Chicken)
* Johnny Bravo (Johnny Bravo)
* Buttercup (The Powerpuff Girls)
* Dexter (Dexter’s Laboratory)
* Finn the Human (Adventure Time)
{{-}}
==''Villainous Guide for a Successful Evil Conquest'' Transformations (Non-canon)==
placeholder
If one of these transformations appears in any official media, they will be moved.
[[File:PLACEHOLDER2.png|thumb|200px|gif of omnitrix dial + transformations]]
The full list of characters Vilgax turns into is:
* Instant Martian
* The Great Gazoo
* Zorak
* Dalek
* Black Hat Alien
{{-}}
6c6870d813fdb2410f8482d7881acc5db3b85ff7
File:Nexusgif1.gif
6
373
1371
2020-09-29T17:33:30Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Cannonbolt (Prime)
0
153
1379
619
2020-09-30T17:31:51Z
Jaswacker
30585766
wikitext
text/x-wiki
{{Chargallery}}
<noinclude>[[Category:Transformations]]</noinclude>
736f37517eba199f255765e0a27ab6130c576ea9
File:CannonboltOS Ben10K.png
6
374
1380
2020-09-30T17:38:36Z
Jaswacker
30585766
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
wikitext
text/x-wiki
== Summary ==
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
f2f05c8ee97c27317a2a867bb10973f82684fa25
File:CannonboltOS Benwolf.png
6
375
1381
2020-09-30T17:38:52Z
Jaswacker
30585766
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
wikitext
text/x-wiki
== Summary ==
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
f2f05c8ee97c27317a2a867bb10973f82684fa25
File:CannonboltOS CampFear.png
6
376
1382
2020-09-30T17:39:07Z
Jaswacker
30585766
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
wikitext
text/x-wiki
== Summary ==
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
f2f05c8ee97c27317a2a867bb10973f82684fa25
File:CannonboltOS Day.png
6
377
1383
2020-09-30T17:39:23Z
Jaswacker
30585766
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
wikitext
text/x-wiki
== Summary ==
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
f2f05c8ee97c27317a2a867bb10973f82684fa25
File:CannonboltOS GameOver.png
6
378
1384
2020-09-30T17:39:36Z
Jaswacker
30585766
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
wikitext
text/x-wiki
== Summary ==
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
f2f05c8ee97c27317a2a867bb10973f82684fa25
File:CannonboltOS Night.png
6
379
1385
2020-09-30T17:39:49Z
Jaswacker
30585766
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
wikitext
text/x-wiki
== Summary ==
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
f2f05c8ee97c27317a2a867bb10973f82684fa25
File:CannonboltUA Day.png
6
380
1386
2020-09-30T17:40:30Z
Jaswacker
30585766
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
wikitext
text/x-wiki
== Summary ==
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
f2f05c8ee97c27317a2a867bb10973f82684fa25
File:CannonboltUA HeroesUnite 1.png
6
381
1387
2020-09-30T17:40:42Z
Jaswacker
30585766
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
wikitext
text/x-wiki
== Summary ==
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
f2f05c8ee97c27317a2a867bb10973f82684fa25
File:CannonboltUA HeroesUnite 2.png
6
382
1388
2020-09-30T17:40:55Z
Jaswacker
30585766
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
wikitext
text/x-wiki
== Summary ==
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
f2f05c8ee97c27317a2a867bb10973f82684fa25
File:CannonboltUA Night.png
6
383
1389
2020-09-30T17:41:06Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:CannonboltUA WarOfTheWorldP1 1.png
6
384
1390
2020-09-30T17:41:17Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:CannonboltUA WarOfTheWorldP1 2.png
6
385
1391
2020-09-30T17:41:27Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:CannonboltGwen AndThenThereWasBen.png
6
386
1392
2020-09-30T17:41:44Z
Jaswacker
30585766
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
wikitext
text/x-wiki
== Summary ==
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
f2f05c8ee97c27317a2a867bb10973f82684fa25
File:CannonboltGwen.png
6
387
1393
2020-09-30T17:41:57Z
Jaswacker
30585766
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
wikitext
text/x-wiki
== Summary ==
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
f2f05c8ee97c27317a2a867bb10973f82684fa25
File:CannonboltOV AFistfulOfBrains.png
6
388
1394
2020-09-30T17:42:08Z
Jaswacker
30585766
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
wikitext
text/x-wiki
== Summary ==
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
f2f05c8ee97c27317a2a867bb10973f82684fa25
File:CannonboltOV ANewDawn.png
6
389
1395
2020-09-30T17:42:25Z
Jaswacker
30585766
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
wikitext
text/x-wiki
== Summary ==
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
f2f05c8ee97c27317a2a867bb10973f82684fa25
File:CannonboltOV Day.png
6
390
1396
2020-09-30T17:42:40Z
Jaswacker
30585766
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
wikitext
text/x-wiki
== Summary ==
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
f2f05c8ee97c27317a2a867bb10973f82684fa25
File:CannonboltOV ForAFewBrainsMore.png
6
391
1397
2020-09-30T17:42:53Z
Jaswacker
30585766
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
wikitext
text/x-wiki
== Summary ==
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
f2f05c8ee97c27317a2a867bb10973f82684fa25
File:CannonboltOV NoHonorAmongBros.png
6
392
1398
2020-09-30T17:43:11Z
Jaswacker
30585766
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
wikitext
text/x-wiki
== Summary ==
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
f2f05c8ee97c27317a2a867bb10973f82684fa25
File:CannonboltOV TheFinalCountdown.png
6
393
1399
2020-09-30T17:43:24Z
Jaswacker
30585766
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
wikitext
text/x-wiki
== Summary ==
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
f2f05c8ee97c27317a2a867bb10973f82684fa25
File:CannonboltOV Young.png
6
394
1400
2020-09-30T17:43:38Z
Jaswacker
30585766
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
wikitext
text/x-wiki
== Summary ==
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
f2f05c8ee97c27317a2a867bb10973f82684fa25
File:CannonboltOV TroubleHelix.png
6
395
1401
2020-09-30T17:43:52Z
Jaswacker
30585766
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
wikitext
text/x-wiki
== Summary ==
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
f2f05c8ee97c27317a2a867bb10973f82684fa25
File:RollawayOV.png
6
396
1402
2020-09-30T17:44:03Z
Jaswacker
30585766
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
wikitext
text/x-wiki
== Summary ==
This is a ''fan recreation'' of the official model. This is ''FAN ART''.
f2f05c8ee97c27317a2a867bb10973f82684fa25
Cannonbolt (Prime)/Designs
0
397
1403
2020-09-30T17:51:49Z
Jaswacker
30585766
Created page with "{{trix|ogs|alf|ula|onv}} __TOC__ {{-}} == Designs == <center><gallery heights="200px" widths="200px"> File:CannonboltOS Day.png|''[[Ben 10 (2005)|Original Series]]'' File:Can..."
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
__TOC__
{{-}}
== Designs ==
<center><gallery heights="200px" widths="200px">
File:CannonboltOS Day.png|''[[Ben 10 (2005)|Original Series]]''
File:CannonboltOS GameOver.png|''[[Ben 10 (2005)|Original Series]]'' episode [[Game Over]]
File:CannonboltOS Ben10K.png|''[[Ben 10 (2005)|Original Series]]'' episode [[Ben 10,000 (Episode)|Ben 10,000]]
</gallery></center>
<center><gallery heights="200px" widths="200px">
File:CannonboltUA Day.png|''Alien Force''
File:CannonboltUA HeroesUnite 1.png|''[[Ben 10/Generator Rex: Heroes United]]''
</gallery></center>
<center><gallery heights="200px" widths="200px">
File:CannonboltOV Day.png|''[[Ben 10: Omniverse|Omniverse]]''
File:CannonboltOV Young.png|''[[Ben 10: Omniverse|Omniverse]]'', 11-year-old Ben
File:RollawayOV.png|''[[Ben 10: Omniverse|Omniverse]]'', [[Ben Tennyson (Dimension 23)|Ben 23]]
File:CannonboltGwen.png|''[[Ben 10: Omniverse|Omniverse]]'', [[Gwen Tennyson (Gweniverse)|Gwen 10]]
</gallery></center>
{{-}}
== Color Palettes ==
=== ''[[Ben 10 (2005)|Ben 10]]'' (2005) ===
<center><gallery heights="200px" widths="200px">
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
</gallery></center>
{{-}}
=== ''[[Ben 10: Alien Force]]'' ===
<center><gallery heights="200px" widths="200px">
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
</gallery></center>
{{-}}
=== ''[[Ben 10: Ultimate Alien]]'' ===
<center><gallery heights="200px" widths="200px">
File:PLACEHOLDER2.png|caption
</gallery></center>
{{-}}
=== ''[[Ben 10: Omniverse]]'' ===
<center><gallery heights="200px" widths="200px">
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
File:PLACEHOLDER2.png|caption
</gallery></center>
{{-}}
8262c2ca106637410489df5bbf3657ce549ca1b0
MediaWiki:Sidebar
8
81
1404
237
2020-09-30T22:30:29Z
Jaswacker
30585766
wikitext
text/x-wiki
* SEARCH
* Browse
** Ben 10|The franchise
** Transformations
** Characters
** Aliens
** Locations
** Groups
* Navigation
** mainpage|mainpage-description
** Omnipedia:Featured articles|Featured articles
** recentchanges-url|recentchanges
** randompage-url|randompage
** helppage|help
* Community
** Omnipedia:Discord servers|Discord servers
** Ben 10 Planet|Ben 10 Planet
* TOOLBOX
* LANGUAGES
0090a534de8cc175a7a38c3cedcc0205196b3e8f
1405
1404
2020-09-30T22:31:32Z
Jaswacker
30585766
wikitext
text/x-wiki
* SEARCH
* Browse
** Ben 10|The franchise
** Transformations (Disambiguation)|Transformations
** Characters|The characters
** Aliens|The alien species
** Locations|The locations
** Groups|The groups
* Navigation
** mainpage|mainpage-description
** Omnipedia:Featured articles|Featured articles
** recentchanges-url|recentchanges
** randompage-url|randompage
** helppage|help
* Community
** Omnipedia:Discord servers|Discord servers
** Ben 10 Planet|Ben 10 Planet
* TOOLBOX
* LANGUAGES
65fbe6434558e18d8b4783d373c6150c37608fd0
1406
1405
2020-09-30T22:32:04Z
Jaswacker
30585766
wikitext
text/x-wiki
* SEARCH
* Browse
** Ben 10|The Franchise
** Transformations|Transformations
** Characters|Characters
** Aliens|Alien Species
** Locations|Locations
** Groups|Groups
* Navigation
** mainpage|mainpage-description
** Omnipedia:Featured articles|Featured articles
** recentchanges-url|recentchanges
** randompage-url|randompage
** helppage|help
* Community
** Omnipedia:Discord servers|Discord servers
** Ben 10 Planet|Ben 10 Planet
* TOOLBOX
* LANGUAGES
613906a82b93beb0374e197d8b3ba20664872aca
1407
1406
2020-09-30T22:33:10Z
Jaswacker
30585766
wikitext
text/x-wiki
* SEARCH
* Browse
** Ben 10|The Franchise
** Transformations|Transformations
** Characters|Characters
** Aliens|Alien Species
** Locations|Locations
** Groups|Groups
* Navigation
** mainpage|mainpage-description
** Omnipedia:Featured articles|Featured articles
** recentchanges-url|recentchanges
** randompage-url|randompage
** helppage|help
* Community
** Omnipedia:Discord servers|Discord servers
** https://ben10.fandom.com/wiki/Ben_10_Planet|Ben 10 Planet
* TOOLBOX
* LANGUAGES
f5feb5d5928737c74193ad1975e5fd4ced430524
File:Wiki tile bg2.png
6
398
1408
2020-09-30T22:51:31Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
MediaWiki:Monobook.css
8
18
1409
525
2020-09-30T22:52:02Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the MonoBook skin */
body > div#globalWrapper {
background-image: url("http://images.shoutwiki.com/omnipedia/2/2a/Wiki_tile_bg2.png");
background-color: #ffffff;
}
.pbody li {
list-style-type: none;
}
d78b713d4b9d064dde0727c3e3a53984dffa0746
1410
1409
2020-09-30T22:54:55Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the Monobook skin */
/* stolen from mariowiki */
/* <h2> All pages </h2> */
#globalWrapper { background: none !important; }
h1 { font-size: 193%; }
p { margin: 0.6em 0 0.7em 0; }
h3 + dl, h4 + dl, h5 + dl {
margin-top: -0.1em;
}
/* <h3> Interface elements </h3> */
body {
background: #f9f9f9 url(http://images.shoutwiki.com/omnipedia/2/2a/Wiki_tile_bg2.png) repeat;
}
.pBody,
.portlet h3,
ul#f-list {
font-family: verdana, sans-serif;
}
#p-personal a.new {
color: #f00;
}
#p-personal a.new:visited {
color: #c00;
}
li#pt-userpage,
li#pt-anonuserpage,
li#pt-login {
color: #606060;
background: url(/images/mushroom.gif) top left no-repeat;
padding: 1px 0 2px 20px;
line-height: 17px;
}
#siteNotice {
border-top: 2px solid #ccc;
border-bottom: 2px solid #ccc;
padding: 3px 2px 2px 2px;
margin: -2px 0 6px;
}
body.page-Main_Page.action-view #bodyContent {
margin-top: -30px;
}
body.page-Main_Page.action-view #siteNotice {
margin-bottom: 28px;
}
#p-cactions ul li,
#p-cactions ul li a,
#p-cactions li.selected,
#p-cactions li.selected a {
border-top-left-radius: 1em;
border-top-right-radius: 1em;
}
div.pBody {
border-top-right-radius: 1em;
border-bottom-right-radius: 1em;
}
#p-cactions li {
padding-bottom: 1em;
border-top-left-radius: .72em !important;
border-top-right-radius: .72em !important;
}
input.searchButton {
padding: 0 0.4em !important;
cursor: pointer;
background-color: white;
border: 1px solid #2f6fab;
font-weight: normal;
}
#searchGoButton {
font-weight: normal;
}
#searchInput {
border: 1px solid #2f6fab;
padding-right: 0;
}
input[type="radio"],
input[type="checkbox"] {
border: none;
}
select {
border: 1px solid #2f6fab;
color: black;
}
#content {
margin: 2.8em 0 0 12.2em;
border-top-left-radius: 1em;
border-bottom-left-radius: 1em;
}
#p-cactions {
left: 11.7em;
}
.portlet {
width: 11.8em;
}
#p-personal li a:hover {
background-color: none;
text-decoration: underline;
}
#p-cactions li a {
color: #00c;
}
#p-cactions .new a {
color: #c00;
}
.pBody {
z-index: 3 !important;
}
/* <h3> Page content </h3> */
/* Links */
a { color: #00f; }
a:active { color: orange; }
a:visited { color: #00c; }
.mw-parser-output a.extiw { color: #06f; }
.mw-parser-output a.extiw:visited { color: #3366BB; }
.mw-parser-output a.external { color: #06f; }
.mw-parser-output a.external:visited { color: #0044CC; }
/* Fix footer spacing */
#f-list {
line-height: 17px;
}
/* Fix preferences tabs */
.client-js #preftoc a,
.client-js #preftoc a:active {
padding: 0 0.7em;
}
/* Indicator icons */
.mw-indicators {
top: -3px;
}
#mw-indicator-shortcut {
top: 14px;
}
3ed9971ade7bd700db3bae6ada0f39585162b980
1420
1410
2020-09-30T23:32:00Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the Monobook skin */
/* stolen from mariowiki */
/* <h2> All pages </h2> */
#globalWrapper { background: none !important; }
h1 { font-size: 193%; }
p { margin: 0.6em 0 0.7em 0; }
h3 + dl, h4 + dl, h5 + dl {
margin-top: -0.1em;
}
/* <h3> Interface elements </h3> */
body {
background: #f9f9f9 url(http://images.shoutwiki.com/omnipedia/7/7a/Wiki_tile_bg3.png) repeat;
}
.pBody,
.portlet h3,
ul#f-list {
font-family: verdana, sans-serif;
}
#p-personal a.new {
color: #f00;
}
#p-personal a.new:visited {
color: #c00;
}
li#pt-userpage,
li#pt-anonuserpage,
li#pt-login {
color: #606060;
background: url(/images/mushroom.gif) top left no-repeat;
padding: 1px 0 2px 20px;
line-height: 17px;
}
#siteNotice {
border-top: 2px solid #ccc;
border-bottom: 2px solid #ccc;
padding: 3px 2px 2px 2px;
margin: -2px 0 6px;
}
body.page-Main_Page.action-view #bodyContent {
margin-top: -30px;
}
body.page-Main_Page.action-view #siteNotice {
margin-bottom: 28px;
}
#p-cactions ul li,
#p-cactions ul li a,
#p-cactions li.selected,
#p-cactions li.selected a {
border-top-left-radius: 1em;
border-top-right-radius: 1em;
}
div.pBody {
border-top-right-radius: 1em;
border-bottom-right-radius: 1em;
}
#p-cactions li {
padding-bottom: 1em;
border-top-left-radius: .72em !important;
border-top-right-radius: .72em !important;
}
input.searchButton {
padding: 0 0.4em !important;
cursor: pointer;
background-color: white;
border: 1px solid #2f6fab;
font-weight: normal;
}
#searchGoButton {
font-weight: normal;
}
#searchInput {
border: 1px solid #2f6fab;
padding-right: 0;
}
input[type="radio"],
input[type="checkbox"] {
border: none;
}
select {
border: 1px solid #2f6fab;
color: black;
}
#content {
margin: 2.8em 0 0 12.2em;
border-top-left-radius: 1em;
border-bottom-left-radius: 1em;
}
#p-cactions {
left: 11.7em;
}
.portlet {
width: 11.8em;
}
#p-personal li a:hover {
background-color: none;
text-decoration: underline;
}
#p-cactions li a {
color: #00c;
}
#p-cactions .new a {
color: #c00;
}
.pBody {
z-index: 3 !important;
}
/* <h3> Page content </h3> */
/* Links */
a { color: #00f; }
a:active { color: orange; }
a:visited { color: #00c; }
.mw-parser-output a.extiw { color: #06f; }
.mw-parser-output a.extiw:visited { color: #3366BB; }
.mw-parser-output a.external { color: #06f; }
.mw-parser-output a.external:visited { color: #0044CC; }
/* Fix footer spacing */
#f-list {
line-height: 17px;
}
/* Fix preferences tabs */
.client-js #preftoc a,
.client-js #preftoc a:active {
padding: 0 0.7em;
}
/* Indicator icons */
.mw-indicators {
top: -3px;
}
#mw-indicator-shortcut {
top: 14px;
}
ef08e8fff33675614c59aab45b719c6d530fbadd
1422
1420
2020-09-30T23:42:09Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the Monobook skin */
/* stolen from mariowiki */
/* <h2> All pages </h2> */
#globalWrapper { background: none !important; }
h1 { font-size: 193%; }
p { margin: 0.6em 0 0.7em 0; }
h3 + dl, h4 + dl, h5 + dl {
margin-top: -0.1em;
}
/* <h3> Interface elements </h3> */
body {
background: #f9f9f9 url(http://images.shoutwiki.com/omnipedia/7/7a/Wiki_tile_bg3.png) repeat;
}
.pBody,
.portlet h3,
ul#f-list {
font-family: verdana, sans-serif;
}
#p-personal a.new {
color: #f00;
}
#p-personal a.new:visited {
color: #c00;
}
li#pt-userpage,
li#pt-anonuserpage,
li#pt-login {
color: #606060;
background: url(http://images.shoutwiki.com/omnipedia/e/e1/Trixpixel.png) top left no-repeat;
padding: 1px 0 2px 20px;
line-height: 17px;
}
#siteNotice {
border-top: 2px solid #ccc;
border-bottom: 2px solid #ccc;
padding: 3px 2px 2px 2px;
margin: -2px 0 6px;
}
body.page-Main_Page.action-view #bodyContent {
margin-top: -30px;
}
body.page-Main_Page.action-view #siteNotice {
margin-bottom: 28px;
}
#p-cactions ul li,
#p-cactions ul li a,
#p-cactions li.selected,
#p-cactions li.selected a {
border-top-left-radius: 1em;
border-top-right-radius: 1em;
}
div.pBody {
border-top-right-radius: 1em;
border-bottom-right-radius: 1em;
}
#p-cactions li {
padding-bottom: 1em;
border-top-left-radius: .72em !important;
border-top-right-radius: .72em !important;
}
input.searchButton {
padding: 0 0.4em !important;
cursor: pointer;
background-color: white;
border: 1px solid #2f6fab;
font-weight: normal;
}
#searchGoButton {
font-weight: normal;
}
#searchInput {
border: 1px solid #2f6fab;
padding-right: 0;
}
input[type="radio"],
input[type="checkbox"] {
border: none;
}
select {
border: 1px solid #2f6fab;
color: black;
}
#content {
margin: 2.8em 0 0 12.2em;
border-top-left-radius: 1em;
border-bottom-left-radius: 1em;
}
#p-cactions {
left: 11.7em;
}
.portlet {
width: 11.8em;
}
#p-personal li a:hover {
background-color: none;
text-decoration: underline;
}
#p-cactions li a {
color: #00c;
}
#p-cactions .new a {
color: #c00;
}
.pBody {
z-index: 3 !important;
}
/* <h3> Page content </h3> */
/* Links */
a { color: #00f; }
a:active { color: orange; }
a:visited { color: #00c; }
.mw-parser-output a.extiw { color: #06f; }
.mw-parser-output a.extiw:visited { color: #3366BB; }
.mw-parser-output a.external { color: #06f; }
.mw-parser-output a.external:visited { color: #0044CC; }
/* Fix footer spacing */
#f-list {
line-height: 17px;
}
/* Fix preferences tabs */
.client-js #preftoc a,
.client-js #preftoc a:active {
padding: 0 0.7em;
}
/* Indicator icons */
.mw-indicators {
top: -3px;
}
#mw-indicator-shortcut {
top: 14px;
}
d947b569af456398cbaea33918f00476576e1c74
File:Wiki article bg2.png
6
399
1411
2020-09-30T22:57:29Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
MediaWiki:Common.css
8
3
1412
1140
2020-09-30T22:59:30Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/d/dc/Wiki_article_bg2.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:0;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
5e2c9e40311403cb8526592fdc929f7860564131
1414
1412
2020-09-30T23:07:44Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/d/dc/Wiki_article_bg3.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:0;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
153d8a0fced2827e203653394d77876971034749
1416
1414
2020-09-30T23:09:07Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/a/a7/Wiki_article_bg3.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:0;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
0c2c1b91ee67f1a8c7b105aa962a79fad6d0e8d9
1417
1416
2020-09-30T23:09:28Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:0;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
104f62096db56b48b303e69a58c72a1d4a9c7271
1418
1417
2020-09-30T23:15:55Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:0;
border-radius:.5em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.3em .3em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
/* test remove notification icons */
#pt-notification-notice {
display: none !important;
}
#pt-notification-alert {
display: none !important;
}
948d19b754857b3ad54c4480f645da5417aa1766
1432
1418
2020-10-01T00:21:01Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
/* test remove notification icons */
#pt-notification-notice {
display: none !important;
}
#pt-notification-alert {
display: none !important;
}
f9a8061ad6a4bdf4772ef9411347c3f81b45e97e
1433
1432
2020-10-01T00:23:12Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
/* test remove notification icons */
#pt-notification-notice {
display: none !important;
}
#pt-notification-alert {
display: none !important;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:0;
border-radius:1em;
-moz-border-radius:.5em;
-webkit-border-radius:.5em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:.5em .5em .5em .5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:.6em .6em 0 0;
-moz-border-radius:.3em .3em 0 0;
-webkit-border-radius:.3em .3em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
79ff5be12831005678ffbc9351443f36ae2a0a1c
1434
1433
2020-10-01T00:24:22Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
/* test remove notification icons */
#pt-notification-notice {
display: none !important;
}
#pt-notification-alert {
display: none !important;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:0;
border-radius:2em;
-moz-border-radius:2em;
-webkit-border-radius:2em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:.5em .5em .5em .5em;
padding:.2em .7em .2em .7em;
text-align:center;
border-radius:2em 2em 0 0;
-moz-border-radius:2em 2em 0 0;
-webkit-border-radius:2em 2em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
b3c1111b81f1b84b1312c094256d76b1f9ac649c
1435
1434
2020-10-01T00:32:50Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
/* test remove notification icons */
#pt-notification-notice {
display: none !important;
}
#pt-notification-alert {
display: none !important;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:0;
border-radius:1em;
-moz-border-radius:1em;
-webkit-border-radius:2em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:.5em .5em .5em .5em;
padding:2px;
text-align:center;
border-radius:1em;
-moz-border-radius:1em;
-webkit-border-radius:2em 2em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
2bb285182b6eaad87081ea8342c363552a3dd89a
1436
1435
2020-10-01T00:36:33Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:2px;
border-radius:1em;
-moz-border-radius:1em;
-webkit-border-radius:1em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.3em .8em .3em .8em;
text-align:center;
border-radius:.5em .5em 0 0;
-moz-border-radius:.5em .5em 0 0;
-webkit-border-radius:.5em .5em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
/* test remove notification icons */
#pt-notification-notice {
display: none !important;
}
#pt-notification-alert {
display: none !important;
}
ced743f27cd6e77c6de708301965e0bf9f45ffb8
1437
1436
2020-10-01T00:37:30Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:2px;
border-radius:1em;
-moz-border-radius:1em;
-webkit-border-radius:1em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.4em .9em .4em .9em;
text-align:center;
border-radius:.7em .7em 0 0;
-moz-border-radius:.7em .7em 0 0;
-webkit-border-radius:.7em .7em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
/* test remove notification icons */
#pt-notification-notice {
display: none !important;
}
#pt-notification-alert {
display: none !important;
}
a676a54f6d3f97c88ff44abd166694854ba4c367
1438
1437
2020-10-01T00:38:29Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:2px;
border-radius:1em;
-moz-border-radius:1em;
-webkit-border-radius:1em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent4.png);
color:#fff;
font-size:110%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.4em .9em .4em .9em;
text-align:center;
border-radius:.7em .7em 0 0;
-moz-border-radius:.7em .7em 0 0;
-webkit-border-radius:.7em .7em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
/* test remove notification icons */
#pt-notification-notice {
display: none !important;
}
#pt-notification-alert {
display: none !important;
}
d8a516f2649fee78d609e83f5e8a115b9fb1bcad
1439
1438
2020-10-01T00:40:37Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:2px;
border-radius:1em;
-moz-border-radius:1em;
-webkit-border-radius:1em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:125%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.4em .9em .4em .9em;
text-align:center;
border-radius:.7em .7em 0 0;
-moz-border-radius:.7em .7em 0 0;
-webkit-border-radius:.7em .7em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
/* test remove notification icons */
#pt-notification-notice {
display: none !important;
}
#pt-notification-alert {
display: none !important;
}
cfd09d8680a0bbcf9d9a6c9bb527b861213e8334
1440
1439
2020-10-01T00:41:06Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.2em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:2px;
border-radius:1em;
-moz-border-radius:1em;
-webkit-border-radius:1em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:125%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.5em 1em 5em 1em;
text-align:center;
border-radius:.7em .7em 0 0;
-moz-border-radius:.7em .7em 0 0;
-webkit-border-radius:.7em .7em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
/* test remove notification icons */
#pt-notification-notice {
display: none !important;
}
#pt-notification-alert {
display: none !important;
}
035b1bcb39efc7b82881e932b53c06449e90a6e8
1443
1440
2020-10-01T00:45:38Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.5em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:2px;
border-radius:1em;
-moz-border-radius:1em;
-webkit-border-radius:1em;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:125%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.5em 1em 5em 1em;
text-align:center;
border-radius:.7em .7em 0 0;
-moz-border-radius:.7em .7em 0 0;
-webkit-border-radius:.7em .7em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
/* test remove notification icons */
#pt-notification-notice {
display: none !important;
}
#pt-notification-alert {
display: none !important;
}
750dac3e8d764614cfd8db1e578829e95177edd1
1444
1443
2020-10-01T00:46:50Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.3em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:2px;
border-radius:1.5em;
-moz-border-radius:1.5em;
-webkit-border-radius:1.5m;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent4.png);
color:#fff;
font-size:125%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.5em 1em 5em 1em;
text-align:center;
border-radius:.7em .7em 0 0;
-moz-border-radius:.7em .7em 0 0;
-webkit-border-radius:.7em .7em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
/* test remove notification icons */
#pt-notification-notice {
display: none !important;
}
#pt-notification-alert {
display: none !important;
}
58f864cf60f6d350909d08c8752d441fcbfd915b
1446
1444
2020-10-01T00:48:17Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.3em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:5px;
border-radius:1.5em;
-moz-border-radius:1.5em;
-webkit-border-radius:1.5m;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent4.png);
color:#fff;
font-size:125%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:.5em 1em 5em 1em;
text-align:center;
border-radius:.7em .7em 0 0;
-moz-border-radius:.7em .7em 0 0;
-webkit-border-radius:.7em .7em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
/* test remove notification icons */
#pt-notification-notice {
display: none !important;
}
#pt-notification-alert {
display: none !important;
}
2d0478d14ed843e98290a1c562950cfccd506e38
1448
1446
2020-10-01T00:50:13Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.3em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:2px;
padding-top:4px;
border-radius:1.5em;
-moz-border-radius:1.5em;
-webkit-border-radius:1.5m;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:125%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:4px;
text-align:center;
border-radius:.7em .7em 0 0;
-moz-border-radius:.7em .7em 0 0;
-webkit-border-radius:.7em .7em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
/* test remove notification icons */
#pt-notification-notice {
display: none !important;
}
#pt-notification-alert {
display: none !important;
}
b1a8f6a7154283d0c7bf7a96d7d37cb3037fc8c9
File:Wiki article bg3.png
6
400
1413
2020-09-30T23:06:56Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Wiki article bg4.png
6
401
1415
2020-09-30T23:08:33Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Wiki tile bg3.png
6
402
1419
2020-09-30T23:31:41Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Trixpixel.png
6
403
1421
2020-09-30T23:41:45Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Wiki.png
6
20
1423
158
2020-09-30T23:50:14Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:Wiki.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
1441
1423
2020-10-01T00:42:53Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:Wiki.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
1452
1441
2020-10-01T01:06:07Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:Wiki.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
1453
1452
2020-10-01T01:08:00Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:Wiki.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Main Page/logo
0
56
1424
484
2020-10-01T00:00:01Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><choose>
<option><imagemap>File:heatblast_logo.png|center|800px|frameless
default [[Heatblast]]
desc none</imagemap></option>
<option><imagemap>File:wildmutt_logo.png|center|800px|frameless
default [[Wildmutt]]
desc none</imagemap></option>
<option><imagemap>File:diamondhead_logo.png|center|800px|frameless
default [[Diamondhead]]
desc none</imagemap></option>
<option><imagemap>File:xlr8_logo.png|center|800px|frameless
default [[XLR8]]
desc none</imagemap></option>
<option><imagemap>File:greymatter_logo.png|center|805px|frameless
default [[Grey Matter]]
desc none</imagemap></option>
<option><imagemap>File:fourarms_logo.png|center|800px|frameless
default [[Four Arms]]
desc none</imagemap></option>
<option><imagemap>File:stinkfly_logo.png|center|800px|frameless
default [[Stinkfly]]
desc none</imagemap></option>
<option><imagemap>File:ripjaws_logo.png|center|800px|frameless
default [[Ripjaws]]
desc none</imagemap></option>
<option><imagemap>File:upgrade_logo.png|center|800px|frameless
default [[Upgrade]]
desc none</imagemap></option>
<option><imagemap>File:ghostfreak_logo.png|center|800px|frameless
default [[Ghostfreak]]
desc none</imagemap></option>
</choose></includeonly>
<noinclude>Current logos (please update if you add to or remove from the list in the code):
<gallery>
File:heatblast_logo.png
File:wildmutt_logo.png
File:diamondhead_logo.png
File:xlr8_logo.png
File:greymatter_logo.png
File:fourarms_logo.png
File:stinkfly_logo.png
File:ripjaws_logo.png
File:upgrade_logo.png
File:ghostfreak_logo.png
</gallery>[[Category:Main Page templates]]</noinclude>
a08dd50b5a9a8abd35dfd58848254deb7b4341b5
1427
1424
2020-10-01T00:10:24Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><choose>
<option><imagemap>File:heatblast_logo.png|center|1200px|frameless
default [[Heatblast]]
desc none</imagemap></option>
<option><imagemap>File:wildmutt_logo.png|center|1200px|frameless
default [[Wildmutt]]
desc none</imagemap></option>
<option><imagemap>File:diamondhead_logo.png|center|1200px|frameless
default [[Diamondhead]]
desc none</imagemap></option>
<option><imagemap>File:xlr8_logo.png|center|1200px|frameless
default [[XLR8]]
desc none</imagemap></option>
<option><imagemap>File:greymatter_logo.png|center|1205px|frameless
default [[Grey Matter]]
desc none</imagemap></option>
<option><imagemap>File:fourarms_logo.png|center|1200px|frameless
default [[Four Arms]]
desc none</imagemap></option>
<option><imagemap>File:stinkfly_logo.png|center|1200px|frameless
default [[Stinkfly]]
desc none</imagemap></option>
<option><imagemap>File:ripjaws_logo.png|center|1200px|frameless
default [[Ripjaws]]
desc none</imagemap></option>
<option><imagemap>File:upgrade_logo.png|center|1200px|frameless
default [[Upgrade]]
desc none</imagemap></option>
<option><imagemap>File:ghostfreak_logo.png|center|1200px|frameless
default [[Ghostfreak]]
desc none</imagemap></option>
</choose></includeonly>
<noinclude>Current logos (please update if you add to or remove from the list in the code):
<gallery>
File:heatblast_logo.png
File:wildmutt_logo.png
File:diamondhead_logo.png
File:xlr8_logo.png
File:greymatter_logo.png
File:fourarms_logo.png
File:stinkfly_logo.png
File:ripjaws_logo.png
File:upgrade_logo.png
File:ghostfreak_logo.png
</gallery>[[Category:Main Page templates]]</noinclude>
4bc7dac77abecaa8a06a3f0304c9aedd83bab552
1428
1427
2020-10-01T00:11:17Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><choose>
<option><imagemap>File:heatblast_logo.png|1200px|frameless
default [[Heatblast]]
desc none</imagemap></option>
<option><imagemap>File:wildmutt_logo.png|1200px|frameless
default [[Wildmutt]]
desc none</imagemap></option>
<option><imagemap>File:diamondhead_logo.png|1200px|frameless
default [[Diamondhead]]
desc none</imagemap></option>
<option><imagemap>File:xlr8_logo.png|1200px|frameless
default [[XLR8]]
desc none</imagemap></option>
<option><imagemap>File:greymatter_logo.png|1205px|frameless
default [[Grey Matter]]
desc none</imagemap></option>
<option><imagemap>File:fourarms_logo.png|1200px|frameless
default [[Four Arms]]
desc none</imagemap></option>
<option><imagemap>File:stinkfly_logo.png|1200px|frameless
default [[Stinkfly]]
desc none</imagemap></option>
<option><imagemap>File:ripjaws_logo.png|1200px|frameless
default [[Ripjaws]]
desc none</imagemap></option>
<option><imagemap>File:upgrade_logo.png|1200px|frameless
default [[Upgrade]]
desc none</imagemap></option>
<option><imagemap>File:ghostfreak_logo.png|1200px|frameless
default [[Ghostfreak]]
desc none</imagemap></option>
</choose></includeonly>
<noinclude>Current logos (please update if you add to or remove from the list in the code):
<gallery>
File:heatblast_logo.png
File:wildmutt_logo.png
File:diamondhead_logo.png
File:xlr8_logo.png
File:greymatter_logo.png
File:fourarms_logo.png
File:stinkfly_logo.png
File:ripjaws_logo.png
File:upgrade_logo.png
File:ghostfreak_logo.png
</gallery>[[Category:Main Page templates]]</noinclude>
aa8d6ad784e3278052499a48510dc62f249da7d2
Sandbox
0
240
1425
1327
2020-10-01T00:00:58Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
<span id="esmeral"></span>
{{:Main Page/disambig}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div style="float: left; width: 200%; margin: 0px 0px 5px">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Featured Article
|color=#02b70c
|id=featured
|content={{:Main_Page/featured}}<p style="text-align:right">[[:Category:Featured articles|More Featured Articles]]
|view=Main_Page/featured
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Polls and Voting
|color=#02b70c
|id=poll
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Previous Poll Results
|color=#02b70c
|id=results
|content={{:Main_Page/results}}
|view=Main_Page/results
}}
</div>
<div style="float: left; width: 100%; margin: 0px 0px 15px">
{{Featurebox
|Wiki Admins
|color=#02b70c
|id=admins
|content={{:Main_Page/admins}}
|view=Main_Page/admins
}}
</div>
1a2ef490a6759242191ad79f15554207e9335ba8
1426
1425
2020-10-01T00:09:52Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
<span id="esmeral"></span>
<div style="text-align: center; vertical-align: top; float: left; width: 100%">
{{:Main Page/logo}}
<div style="clear:right;"></div>
<div style="float: left; width: 50%; margin: 0px 0px 5px">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Featured Article
|color=#02b70c
|id=featured
|content={{:Main_Page/featured}}<p style="text-align:right">[[:Category:Featured articles|More Featured Articles]]
|view=Main_Page/featured
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Polls and Voting
|color=#02b70c
|id=poll
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Previous Poll Results
|color=#02b70c
|id=results
|content={{:Main_Page/results}}
|view=Main_Page/results
}}
</div>
<div style="float: left; width: 100%; margin: 0px 0px 15px">
{{Featurebox
|Wiki Admins
|color=#02b70c
|id=admins
|content={{:Main_Page/admins}}
|view=Main_Page/admins
}}
</div>
37a50a6c007d1c92ab8cf6905c88ac2dd9342089
1429
1426
2020-10-01T00:19:02Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
<span id="esmeral"></span>
{{:Main Page/disambig}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 50%; margin: 0px 0px 5px">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Featured Article
|color=#02b70c
|id=featured
|content={{:Main_Page/featured}}<p style="text-align:right">[[:Category:Featured articles|More Featured Articles]]
|view=Main_Page/featured
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Polls and Voting
|color=#02b70c
|id=poll
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Previous Poll Results
|color=#02b70c
|id=results
|content={{:Main_Page/results}}
|view=Main_Page/results
}}
</div>
<div style="float: left; width: 100%; margin: 0px 0px 15px">
{{Featurebox
|Wiki Admins
|color=#02b70c
|id=admins
|content={{:Main_Page/admins}}
|view=Main_Page/admins
}}
</div>
22fd6bdc9f51a4dcd795c344e7c3b8ddbbffcf0c
Main Page
0
1
1430
341
2020-10-01T00:19:05Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
<span id="esmeral"></span>
{{:Main Page/disambig}}
<div style="text-align: center; vertical-align: top; float: left; width: 100%">
{{:Main Page/logo}}
<div style="clear:right;"></div>
<div style="float: left; width: 50%; margin: 0px 0px 5px">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Featured Article
|color=#02b70c
|id=featured
|content={{:Main_Page/featured}}<p style="text-align:right">[[:Category:Featured articles|More Featured Articles]]
|view=Main_Page/featured
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Polls and Voting
|color=#02b70c
|id=poll
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Previous Poll Results
|color=#02b70c
|id=results
|content={{:Main_Page/results}}
|view=Main_Page/results
}}
</div>
<div style="float: left; width: 100%; margin: 0px 0px 15px">
{{Featurebox
|Wiki Admins
|color=#02b70c
|id=admins
|content={{:Main_Page/admins}}
|view=Main_Page/admins
}}
</div>
08f105b90055b865c384041ccd535139352baef2
1431
1430
2020-10-01T00:19:22Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
<span id="esmeral"></span>
{{-}}
{{:Main Page/disambig}}
<div style="text-align: center; vertical-align: top; float: left; width: 100%">
{{:Main Page/logo}}
<div style="clear:right;"></div>
<div style="float: left; width: 50%; margin: 0px 0px 5px">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Featured Article
|color=#02b70c
|id=featured
|content={{:Main_Page/featured}}<p style="text-align:right">[[:Category:Featured articles|More Featured Articles]]
|view=Main_Page/featured
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Polls and Voting
|color=#02b70c
|id=poll
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Previous Poll Results
|color=#02b70c
|id=results
|content={{:Main_Page/results}}
|view=Main_Page/results
}}
</div>
<div style="float: left; width: 100%; margin: 0px 0px 15px">
{{Featurebox
|Wiki Admins
|color=#02b70c
|id=admins
|content={{:Main_Page/admins}}
|view=Main_Page/admins
}}
</div>
e9185792f62cc6034bc9a83852ed386a9880bf12
1442
1431
2020-10-01T00:44:55Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
<span id="esmeral"></span>
{{-}}
{{:Main Page/disambig}}
<div style="text-align: center; vertical-align: top; float: left; width: 100%">
{{:Main Page/logo}}
<div style="clear:right;"></div>
<div style="float: left; width: 50%; margin: 0px 0px 5px">
{{Featurebox
|The Franchise
|color=#98f031
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#98f031
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Featured Article
|color=#98f031
|id=featured
|content={{:Main_Page/featured}}<p style="text-align:right">[[:Category:Featured articles|More Featured Articles]]
|view=Main_Page/featured
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Polls and Voting
|color=#98f031
|id=poll
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Previous Poll Results
|color=#98f031
|id=results
|content={{:Main_Page/results}}
|view=Main_Page/results
}}
</div>
<div style="float: left; width: 100%; margin: 0px 0px 15px">
{{Featurebox
|Wiki Admins
|color=#98f031
|id=admins
|content={{:Main_Page/admins}}
|view=Main_Page/admins
}}
</div>
7d0f4a1ad861cfb069966a96f717f6670706a48d
1445
1442
2020-10-01T00:47:31Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
<span id="esmeral"></span>
{{-}}
{{:Main Page/disambig}}
<div style="text-align: center; vertical-align: top; float: left; width: 100%">
{{:Main Page/logo}}
<div style="clear:right;"></div>
<div style="float: left; width: 50%; margin: 0px 0px 5px">
{{Featurebox
|The Franchise
|color=#5cad14
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#98f031
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Featured Article
|color=#98f031
|id=featured
|content={{:Main_Page/featured}}<p style="text-align:right">[[:Category:Featured articles|More Featured Articles]]
|view=Main_Page/featured
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Polls and Voting
|color=#98f031
|id=poll
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Previous Poll Results
|color=#98f031
|id=results
|content={{:Main_Page/results}}
|view=Main_Page/results
}}
</div>
<div style="float: left; width: 100%; margin: 0px 0px 15px">
{{Featurebox
|Wiki Admins
|color=#98f031
|id=admins
|content={{:Main_Page/admins}}
|view=Main_Page/admins
}}
</div>
dc352f3bf3af8cfb7f9213b9ee5eb5dc242bd6b2
1447
1445
2020-10-01T00:48:20Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
<span id="esmeral"></span>
{{-}}
{{:Main Page/disambig}}
<div style="text-align: center; vertical-align: top; float: left; width: 100%">
{{:Main Page/logo}}
<div style="clear:right;"></div>
<div style="float: left; width: 50%; margin: 0px 0px 5px">
{{Featurebox
|The Franchise
|color=#45ab08
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#98f031
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Featured Article
|color=#98f031
|id=featured
|content={{:Main_Page/featured}}<p style="text-align:right">[[:Category:Featured articles|More Featured Articles]]
|view=Main_Page/featured
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Polls and Voting
|color=#98f031
|id=poll
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Previous Poll Results
|color=#98f031
|id=results
|content={{:Main_Page/results}}
|view=Main_Page/results
}}
</div>
<div style="float: left; width: 100%; margin: 0px 0px 15px">
{{Featurebox
|Wiki Admins
|color=#98f031
|id=admins
|content={{:Main_Page/admins}}
|view=Main_Page/admins
}}
</div>
25996b15978f7f9e34187b8392f52e520d903853
1449
1447
2020-10-01T00:50:58Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
<span id="esmeral"></span>
{{-}}
{{:Main Page/disambig}}
<div style="text-align: center; vertical-align: top; float: left; width: 100%">
{{:Main Page/logo}}
<div style="clear:right;"></div>
<div style="float: left; width: 50%; margin: 0px 0px 5px">
{{Featurebox
|The Franchise
|color=#60cc00
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#60cc00
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Featured Article
|color=#60cc00
|id=featured
|content={{:Main_Page/featured}}<p style="text-align:right">[[:Category:Featured articles|More Featured Articles]]
|view=Main_Page/featured
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Polls and Voting
|color=#60cc00
|id=poll
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Previous Poll Results
|color=#60cc00
|id=results
|content={{:Main_Page/results}}
|view=Main_Page/results
}}
</div>
<div style="float: left; width: 100%; margin: 0px 0px 15px">
{{Featurebox
|Wiki Admins
|color=#60cc00
|id=admins
|content={{:Main_Page/admins}}
|view=Main_Page/admins
}}
</div>
b2d4e6e8fc019d58fc2799827261e22ffd47cb06
1454
1449
2020-10-01T01:09:36Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
<span id="esmeral"></span>
{{-}}
{{:Main Page/disambig}}
<div style="text-align: center; vertical-align: top; float: left; width: 100%">
{{:Main Page/logo}}
<div style="clear:right;"></div>
<div style="float: left; width: 50%; margin: 0px 0px 5px">
{{Featurebox
|The Franchise
|color=#60cc00
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#60cc00
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Featured Article
|color=#60cc00
|id=featured
|content={{:Main_Page/featured5}}<p style="text-align:right">[[:Category:Featured articles|More Featured Articles]]
|view=Main_Page/featured
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Polls and Voting
|color=#60cc00
|id=poll
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Previous Poll Results
|color=#60cc00
|id=results
|content={{:Main_Page/results}}
|view=Main_Page/results
}}
</div>
<div style="float: left; width: 100%; margin: 0px 0px 15px">
{{Featurebox
|Wiki Admins
|color=#60cc00
|id=admins
|content={{:Main_Page/admins}}
|view=Main_Page/admins
}}
</div>
d3ce2b1099829578ff8ea3665af98cb1cb5f29a9
1456
1454
2020-10-01T01:17:35Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
<span id="esmeral"></span>
{{-}}
{{:Main Page/disambig}}
<div style="text-align: center; vertical-align: top; float: left; width: 100%">
{{:Main Page/logo}}
<div style="clear:right;"></div>
<div style="float: left; width: 50%; margin: 0px 0px 5px">
{{Featurebox
|The Franchise
|color=#60cc00
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#60cc00
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Featured Article
|color=#60cc00
|id=featured
|content={{:Main_Page/featured5}}<p style="text-align:right">[[:Category:Featured articles|More Featured Articles]]
|view=Main_Page/featured
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Polls and Voting
|color=#60cc00
|id=poll
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Previous Poll Results
|color=#60cc00
|id=results
|content={{:Main_Page/results}}
|view=Main_Page/results
}}
</div>
<div style="float: left; width: 100%; margin: 0px 0px 15px">
{{Featurebox
|Wiki Admins
|color=#60cc00
|id=admins
|content={{:Main_Page/admins}}
|view=Main_Page/admins
}}
</div>
{{#seo:
|title=Omnipedia
|title_mode=append
|keywords=ben10,omnipedia
|description='''''Omnipedia''''' is the unofficial wiki and ultimate encyclopedia dedicated to the Ben 10 franchise, with over '''[[Special:Statistics|{{NUMBEROFPAGES}}]]''' that anyone can edit or contribute to!
|image=wiki.png
|image_alt=Wiki Logo
}}
2ea55bf2f7246a415267e34643bc873d02d56895
File:Favicon.ico
6
19
1450
84
2020-10-01T01:02:50Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:Favicon.ico]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
1451
1450
2020-10-01T01:05:25Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:Favicon.ico]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Main Page/disambig
0
89
1455
652
2020-10-01T01:17:12Z
Jaswacker
30585766
wikitext
text/x-wiki
<div style="margin:.5em 1em .5em 1em;padding:.5em;background:#f7f8ff;border:thin solid #aaa;text-align:center;">'''''Omnipedia''''' is the unofficial wiki and ultimate encyclopedia dedicated to the Ben 10 franchise, with over '''[[Special:Statistics|{{NUMBEROFPAGES}}]]''' that anyone can edit or contribute to! <span style="font-size:95%;">
</div>
<noinclude>[[Category: Main Page templates]]</noinclude>
eb35844a6ed741f59fd6301871c9007d28426138
1457
1455
2020-10-01T01:18:53Z
Jaswacker
30585766
wikitext
text/x-wiki
<div style="margin:.5em 1em .5em 1em;padding:.5em;background:#ddf2dd;border:thin solid #aaa;text-align:center;">'''''Omnipedia''''' is the unofficial wiki and ultimate encyclopedia dedicated to the Ben 10 franchise, with over '''[[Special:Statistics|{{NUMBEROFPAGES}}]]''' that anyone can edit or contribute to! <span style="font-size:95%;">
</div>
<noinclude>[[Category: Main Page templates]]</noinclude>
11bc7241e838c59045ef84ee91a9a200bc0e6308
Main Page/disambig
0
89
1458
1457
2020-10-01T01:19:21Z
Jaswacker
30585766
wikitext
text/x-wiki
<div style="margin:.5em 1em .5em 1em;padding:.5em;background:#e8f0e7;border:thin solid #aaa;text-align:center;">'''''Omnipedia''''' is the unofficial wiki and ultimate encyclopedia dedicated to the Ben 10 franchise, with over '''[[Special:Statistics|{{NUMBEROFPAGES}}]]''' that anyone can edit or contribute to! <span style="font-size:95%;">
</div>
<noinclude>[[Category: Main Page templates]]</noinclude>
0ed94b0c810c4c0fc5450d30c7ea9f004b7220da
1459
1458
2020-10-01T01:19:46Z
Jaswacker
30585766
wikitext
text/x-wiki
<div style="margin:.5em 1em .5em 1em;padding:.5em;background:#edf1ec;border:thin solid #aaa;text-align:center;">'''''Omnipedia''''' is the unofficial wiki and ultimate encyclopedia dedicated to the Ben 10 franchise, with over '''[[Special:Statistics|{{NUMBEROFPAGES}}]]''' that anyone can edit or contribute to! <span style="font-size:95%;">
</div>
<noinclude>[[Category: Main Page templates]]</noinclude>
aa14dfbb5d1b47b14d4636d3245e86ace7454550
1461
1459
2020-10-01T01:28:53Z
Jaswacker
30585766
wikitext
text/x-wiki
<div style="margin:.5em 1em .5em 1em;padding:.5em;background:#f4f9f3;border:thin solid #aaa;text-align:center;">'''''Omnipedia''''' is the unofficial wiki and ultimate encyclopedia dedicated to the Ben 10 franchise, with over '''[[Special:Statistics|{{NUMBEROFPAGES}}]]''' that anyone can edit or contribute to! <span style="font-size:95%;">
</div>
<noinclude>[[Category: Main Page templates]]</noinclude>
2d2ba551c58cea404a34ea197ea5fc09a6d6d931
1462
1461
2020-10-01T01:29:54Z
Jaswacker
30585766
wikitext
text/x-wiki
<div style="margin:.5em 1em .5em 1em;padding:.5em;background:#f6f9f6;border:thin solid #aaa;text-align:center;">'''''Omnipedia''''' is the unofficial wiki and ultimate encyclopedia dedicated to the Ben 10 franchise, with over '''[[Special:Statistics|{{NUMBEROFPAGES}}]]''' that anyone can edit or contribute to! <span style="font-size:95%;">
</div>
<noinclude>[[Category: Main Page templates]]</noinclude>
458cc90677ba8a7fd9a438691daee5f0f4c72fc4
Main Page
0
1
1460
1456
2020-10-01T01:27:15Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
<span id="esmeral"></span>
{{-}}
{{:Main Page/disambig}}
<div style="text-align: center; vertical-align: top; float: left; width: 100%">
{{:Main Page/logo}}
<div style="clear:right;"></div>
<div style="float: left; width: 50%; margin: 0px 0px 5px">
{{Featurebox
|The Franchise
|color=#60cc00
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#60cc00
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Featured Article
|color=#60cc00
|id=featured
|content={{:Main_Page/featured5}}<p style="text-align:right">[[:Category:Featured articles|More Featured Articles]]
|view=Main_Page/featured
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Polls and Voting
|color=#60cc00
|id=poll
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Previous Poll Results
|color=#60cc00
|id=results
|content={{:Main_Page/results}}
|view=Main_Page/results
}}
</div>
<div style="float: left; width: 100%; margin: 0px 0px 15px">
{{Featurebox
|Wiki Admins
|color=#60cc00
|id=admins
|content={{:Main_Page/admins}}
|view=Main_Page/admins
}}
</div>
<noinclude>
[[File:WIki.png|thumb|Wiki Logo]]
'''''Omnipedia''''' is the unofficial wiki and ultimate encyclopedia dedicated to the Ben 10 franchise, with over '''[[Special:Statistics|{{NUMBEROFPAGES}}]]''' that anyone can edit or contribute to!
</noinclude>
3e9b26e698905bea304143f1025f4a40e4cb4db1
1463
1460
2020-10-01T01:33:45Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
<span id="esmeral"></span>
{{-}}
{{:Main Page/disambig}}
<div style="text-align: center; vertical-align: top; float: left; width: 100%">
{{:Main Page/logo}}
<div style="clear:right;"></div>
<div style="float: left; width: 50%; margin: 0px 0px 5px">
{{Featurebox
|The Franchise
|color=#60cc00
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#60cc00
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Featured Article
|color=#60cc00
|id=featured
|content={{:Main_Page/featured5}}<p style="text-align:right">[[:Category:Featured articles|More Featured Articles]]
|view=Main_Page/featured
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Polls and Voting
|color=#60cc00
|id=poll
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Previous Poll Results
|color=#60cc00
|id=results
|content={{:Main_Page/results}}
|view=Main_Page/results
}}
</div>
<div style="float: left; width: 100%; margin: 0px 0px 15px">
{{Featurebox
|Wiki Admins
|color=#60cc00
|id=admins
|content={{:Main_Page/admins}}
|view=Main_Page/admins
}}
</div>
<noinclude>
[[File:WIki.png|thumb|Wiki Logo]]
'''''Omnipedia''''' is the unofficial wiki and ultimate encyclopedia dedicated to the Ben 10 franchise, with over '''[[Special:Statistics|{{NUMBEROFPAGES}}]]''' that anyone can edit or contribute to!
<noinclude/>
0278735898f73b88c20ac59c33b2987c252f4539
1464
1463
2020-10-01T01:36:06Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
<span id="esmeral"></span>
{{-}}
{{:Main Page/disambig}}
<div style="text-align: center; vertical-align: top; float: left; width: 100%">
{{:Main Page/logo}}
<div style="clear:right;"></div>
<div style="float: left; width: 50%; margin: 0px 0px 5px">
{{Featurebox
|The Franchise
|color=#60cc00
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#60cc00
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Featured Article
|color=#60cc00
|id=featured
|content={{:Main_Page/featured5}}<p style="text-align:right">[[:Category:Featured articles|More Featured Articles]]
|view=Main_Page/featured
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Polls and Voting
|color=#60cc00
|id=poll
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Previous Poll Results
|color=#60cc00
|id=results
|content={{:Main_Page/results}}
|view=Main_Page/results
}}
</div>
<div style="float: left; width: 100%; margin: 0px 0px 15px">
{{Featurebox
|Wiki Admins
|color=#60cc00
|id=admins
|content={{:Main_Page/admins}}
|view=Main_Page/admins
}}
</div>
<noinclude>
[[File:Wiki.png]]
'''''Omnipedia''''' is the unofficial wiki and ultimate encyclopedia dedicated to the Ben 10 franchise, with over '''[[Special:Statistics|{{NUMBEROFPAGES}}]]''' that anyone can edit or contribute to!
<noinclude/>
f9e82e575407c107327a370b4066b4816fa2feed
1465
1464
2020-10-01T01:36:36Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
<span id="esmeral"></span>
{{-}}
{{:Main Page/disambig}}
<div style="text-align: center; vertical-align: top; float: left; width: 100%">
{{:Main Page/logo}}
<div style="clear:right;"></div>
<div style="float: left; width: 50%; margin: 0px 0px 5px">
{{Featurebox
|The Franchise
|color=#60cc00
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#60cc00
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Featured Article
|color=#60cc00
|id=featured
|content={{:Main_Page/featured}}<p style="text-align:right">[[:Category:Featured articles|More Featured Articles]]
|view=Main_Page/featured
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Polls and Voting
|color=#60cc00
|id=poll
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Previous Poll Results
|color=#60cc00
|id=results
|content={{:Main_Page/results}}
|view=Main_Page/results
}}
</div>
<div style="float: left; width: 100%; margin: 0px 0px 15px">
{{Featurebox
|Wiki Admins
|color=#60cc00
|id=admins
|content={{:Main_Page/admins}}
|view=Main_Page/admins
}}
</div>
<noinclude>
[[File:Wiki.png]]
'''''Omnipedia''''' is the unofficial wiki and ultimate encyclopedia dedicated to the Ben 10 franchise, with over '''[[Special:Statistics|{{NUMBEROFPAGES}}]]''' that anyone can edit or contribute to!
<noinclude/>
4ecf1c5a994d7fb666d4f6e8ed2aae46d363e47d
1466
1465
2020-10-01T01:40:26Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
<span id="esmeral"></span>
{{-}}
{{:Main Page/disambig}}
<div style="text-align: center; vertical-align: top; float: left; width: 100%">
{{:Main Page/logo}}
<div style="clear:right;"></div>
<div style="float: left; width: 50%; margin: 0px 0px 5px">
{{Featurebox
|The Franchise
|color=#60cc00
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#60cc00
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Featured Article
|color=#60cc00
|id=featured
|content={{:Main_Page/featured}}<p style="text-align:right">[[:Category:Featured articles|More Featured Articles]]
|view=Main_Page/featured
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Polls and Voting
|color=#60cc00
|id=poll
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Previous Poll Results
|color=#60cc00
|id=results
|content={{:Main_Page/results}}
|view=Main_Page/results
}}
</div>
<div style="float: left; width: 100%; margin: 0px 0px 15px">
{{Featurebox
|Wiki Admins
|color=#60cc00
|id=admins
|content={{:Main_Page/admins}}
|view=Main_Page/admins
}}
</div>
{HTMLcomment:hidden}
[[File:Wiki.png]]
'''''Omnipedia''''' is the unofficial wiki and ultimate encyclopedia dedicated to the Ben 10 franchise, with over '''[[Special:Statistics|{{NUMBEROFPAGES}}]]''' that anyone can edit or contribute to!
{HTMLcomment}
2d6e34deba32b1ed304fceef9ff7f917c2053c6a
1467
1466
2020-10-01T01:42:36Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
<span id="esmeral"></span>
{{-}}
{{:Main Page/disambig}}
<div style="text-align: center; vertical-align: top; float: left; width: 100%">
{{:Main Page/logo}}
<div style="clear:right;"></div>
<div style="float: left; width: 50%; margin: 0px 0px 5px">
{{Featurebox
|The Franchise
|color=#60cc00
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#60cc00
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Featured Article
|color=#60cc00
|id=featured
|content={{:Main_Page/featured}}<p style="text-align:right">[[:Category:Featured articles|More Featured Articles]]
|view=Main_Page/featured
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Polls and Voting
|color=#60cc00
|id=poll
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Previous Poll Results
|color=#60cc00
|id=results
|content={{:Main_Page/results}}
|view=Main_Page/results
}}
</div>
<div style="float: left; width: 100%; margin: 0px 0px 15px">
{{Featurebox
|Wiki Admins
|color=#60cc00
|id=admins
|content={{:Main_Page/admins}}
|view=Main_Page/admins
}}
</div>
b2d4e6e8fc019d58fc2799827261e22ffd47cb06
1471
1467
2020-10-01T02:12:29Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
<span id="esmeral"></span>
{{-}}
{{:Main Page/disambig}}
<div style="text-align: center; vertical-align: top; float: left; width: 100%">
{{:Main Page/logo}}
<div style="clear:right;"></div>
<div style="float: left; width: 50%; margin: 0px 0px 5px">
{{Featurebox
|The Franchise
|color=#60cc00
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#60cc00
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Featured Article
|color=#60cc00
|id=featured
|content={{:Main_Page/featured}}<p style="text-align:right">[[:Category:Featured articles|More Featured Articles]]
|view=Main_Page/featured
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Polls and Voting
|color=#60cc00
|id=poll
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Previous Poll Results
|color=#60cc00
|id=results
|content={{:Main_Page/results}}
|view=Main_Page/results
}}
</div>
<div style="float: left; width: 100%; margin: 0px 0px 15px">
{{Featurebox
|Wiki Admins
|color=#60cc00
|id=admins
|content={{:Main_Page/admins}}
|view=Main_Page/admins
}}
</div>
<!--'''''Omnipedia''''' is the unofficial wiki and ultimate encyclopedia dedicated to the Ben 10 franchise, with over '''[[Special:Statistics|{{NUMBEROFPAGES}}]]''' that anyone can edit or contribute to!-->
<!--[[File:Wiki.png|thumb]]-->
c6bfde31266c478fb57c9f4a0d7d2a8cb8a544e7
1473
1471
2020-10-01T02:15:59Z
Jaswacker
30585766
wikitext
text/x-wiki
__NOTOC__ __NOEDITSECTION__
<span id="esmeral"></span>
{{-}}
{{:Main Page/disambig}}
<div style="text-align: center; vertical-align: top; float: left; width: 100%">
{{:Main Page/logo}}
<div style="clear:right;"></div>
<div style="float: left; width: 50%; margin: 0px 0px 5px">
{{Featurebox
|The Franchise
|color=#60cc00
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#60cc00
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Featured Article
|color=#60cc00
|id=featured
|content={{:Main_Page/featured}}<p style="text-align:right">[[:Category:Featured articles|More Featured Articles]]
|view=Main_Page/featured
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Polls and Voting
|color=#60cc00
|id=poll
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Previous Poll Results
|color=#60cc00
|id=results
|content={{:Main_Page/results}}
|view=Main_Page/results
}}
</div>
<div style="float: left; width: 100%; margin: 0px 0px 15px">
{{Featurebox
|Wiki Admins
|color=#60cc00
|id=admins
|content={{:Main_Page/admins}}
|view=Main_Page/admins
}}
</div>
b2d4e6e8fc019d58fc2799827261e22ffd47cb06
MediaWiki:Common.css
8
3
1468
1448
2020-10-01T01:44:19Z
Jaswacker
30585766
css
text/css
/* discord embed test */
<title>Omnipedia</title>
<meta content="Embed Title" property="og:title">
<meta content="Omnipedia is the unofficial wiki and ultimate encyclopedia dedicated to the Ben 10 franchise that anyone can edit or contribute to!" property="og:description">
<meta content="http://omnipedia.shoutwiki.com/wiki/Main_Page" property="og:url">
<meta content="http://images.shoutwiki.com/omnipedia/b/bc/Wiki.png" property="og:image">
<meta content="#60cc00" data-react-helmet="true" name="theme-color">
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.3em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:2px;
padding-top:4px;
border-radius:1.5em;
-moz-border-radius:1.5em;
-webkit-border-radius:1.5m;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:125%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:4px;
text-align:center;
border-radius:.7em .7em 0 0;
-moz-border-radius:.7em .7em 0 0;
-webkit-border-radius:.7em .7em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
/* test remove notification icons */
#pt-notification-notice {
display: none !important;
}
#pt-notification-alert {
display: none !important;
}
04161a07bff9f985fff884ada7028a8f89ffca14
1469
1468
2020-10-01T02:08:19Z
Jaswacker
30585766
css
text/css
/* discord embed test */
<title>Omnipedia</title>
<meta content="Embed Title" property="og:title">
<meta content="Omnipedia is the unofficial wiki and ultimate encyclopedia dedicated to the Ben 10 franchise that anyone can edit or contribute to!" property="og:description">
<meta content="http://omnipedia.shoutwiki.com/wiki/Main_Page" property="og:url">
<meta content="http://images.shoutwiki.com/omnipedia/b/bc/Wiki.png" property="og:image">
<meta content="#60cc00" data-react-helmet="true" name="theme-color">
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.3em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:2px;
padding-top:4px;
border-radius:1.5em;
-moz-border-radius:1.5em;
-webkit-border-radius:1.5m;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:125%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:4px;
text-align:center;
border-radius:.7em .7em 0 0;
-moz-border-radius:.7em .7em 0 0;
-webkit-border-radius:.7em .7em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
/* test remove thing */
#p-ShoutWiki_messages-label {
display: none !important;
}
236f661805ba36d9f66b3c240e0f70300a6cdd30
1470
1469
2020-10-01T02:09:59Z
Jaswacker
30585766
css
text/css
/* discord embed test */
<title>Omnipedia</title>
<meta content="Embed Title" property="og:title">
<meta content="Omnipedia is the unofficial wiki and ultimate encyclopedia dedicated to the Ben 10 franchise that anyone can edit or contribute to!" property="og:description">
<meta content="http://omnipedia.shoutwiki.com/wiki/Main_Page" property="og:url">
<meta content="http://images.shoutwiki.com/omnipedia/b/bc/Wiki.png" property="og:image">
<meta content="#60cc00" data-react-helmet="true" name="theme-color">
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.3em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:2px;
padding-top:4px;
border-radius:1.5em;
-moz-border-radius:1.5em;
-webkit-border-radius:1.5m;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:125%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:4px;
text-align:center;
border-radius:.7em .7em 0 0;
-moz-border-radius:.7em .7em 0 0;
-webkit-border-radius:.7em .7em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
/* test remove thing */
#p-ShoutWiki_messages-label {
display: none !important;
}
#p-ShoutWiki_messages.portlet.generated-sidebar {
display: none !important;
}
13c8ee0a1d1947bb08dd17731648ebb389bc2b07
1490
1470
2020-10-02T02:32:40Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
*//*
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
/* test remove thing */
#p-ShoutWiki_messages-label {
display: none !important;
}
#p-ShoutWiki_messages.portlet.generated-sidebar {
display: none !important;
}
87558c83921ce35709f6b443d09ca0383ed958e1
1491
1490
2020-10-02T02:36:19Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.3em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:2px;
padding-top:4px;
border-radius:1.5em;
-moz-border-radius:1.5em;
-webkit-border-radius:1.5m;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:125%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:4px;
text-align:center;
border-radius:.7em .7em 0 0;
-moz-border-radius:.7em .7em 0 0;
-webkit-border-radius:.7em .7em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
/* test remove thing */
#p-ShoutWiki_messages-label {
display: none !important;
}
#p-ShoutWiki_messages.portlet.generated-sidebar {
display: none !important;
}
ac49ed8de3b5f91ab979be371eb1f4e009187397
1492
1491
2020-10-02T02:36:39Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.3em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:2px;
padding-top:3px;
border-radius:1.5em;
-moz-border-radius:1.5em;
-webkit-border-radius:1.5m;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:125%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:4px;
text-align:center;
border-radius:.7em .7em 0 0;
-moz-border-radius:.7em .7em 0 0;
-webkit-border-radius:.7em .7em 0 0;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
/* test remove thing */
#p-ShoutWiki_messages-label {
display: none !important;
}
#p-ShoutWiki_messages.portlet.generated-sidebar {
display: none !important;
}
3db45ee67c7fa754d1e1fc645a53e215e6a8c77a
1493
1492
2020-10-02T02:38:20Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.3em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:2px;
padding-top:2px;
border-radius:1.5em;
-moz-border-radius:1.5em;
-webkit-border-radius:1.5m;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:125%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:4px;
text-align:center;
border-radius:1em;
-moz-border-radius:1em;
-webkit-border-radius:1em;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
/* test remove thing */
#p-ShoutWiki_messages-label {
display: none !important;
}
#p-ShoutWiki_messages.portlet.generated-sidebar {
display: none !important;
}
d1e2fdc67960b091b3703bf2d40d856ab67ea895
1494
1493
2020-10-02T02:39:11Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.3em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:4px;
padding-top:3px;
border-radius:1.5em;
-moz-border-radius:1.5em;
-webkit-border-radius:1.5m;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:125%;
font-weight:900;
margin:-.5em -.5em .5em -.5em;
padding:10px;
text-align:center;
border-radius:1em;
-moz-border-radius:1em;
-webkit-border-radius:1em;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
/* test remove thing */
#p-ShoutWiki_messages-label {
display: none !important;
}
#p-ShoutWiki_messages.portlet.generated-sidebar {
display: none !important;
}
a820feab6c6217e79aba2a1abec9359cb2302ccc
1495
1494
2020-10-02T02:40:28Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.3em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:4px;
padding-top:3px;
border-radius:1.5em;
-moz-border-radius:1.5em;
-webkit-border-radius:1.5m;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:125%;
font-weight:900;
margin:1em -.5em 1em -.5em;
padding:10px;
text-align:center;
border-radius:1em;
-moz-border-radius:1em;
-webkit-border-radius:1em;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
/* test remove thing */
#p-ShoutWiki_messages-label {
display: none !important;
}
#p-ShoutWiki_messages.portlet.generated-sidebar {
display: none !important;
}
8fa3d97102ede387546daf06b91be8918ff0571b
1496
1495
2020-10-02T02:41:59Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.3em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:4px;
padding-top:3px;
border-radius:1.5em;
-moz-border-radius:1.5em;
-webkit-border-radius:1.5m;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:125%;
font-weight:900;
margin:10px;
padding:10px;
text-align:center;
border-radius:1em;
-moz-border-radius:1em;
-webkit-border-radius:1em;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
/* test remove thing */
#p-ShoutWiki_messages-label {
display: none !important;
}
#p-ShoutWiki_messages.portlet.generated-sidebar {
display: none !important;
}
b22a854debb8f3b93bbc3940927090708b6cc8c8
1497
1496
2020-10-02T02:42:20Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.3em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:4px;
padding-top:3px;
border-radius:1.5em;
-moz-border-radius:1.5em;
-webkit-border-radius:1.5m;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:125%;
font-weight:900;
margin:10px;
padding:100px;
text-align:center;
border-radius:1em;
-moz-border-radius:1em;
-webkit-border-radius:1em;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
/* test remove thing */
#p-ShoutWiki_messages-label {
display: none !important;
}
#p-ShoutWiki_messages.portlet.generated-sidebar {
display: none !important;
}
b9e34611652f0419f5a64ae96eba145af88b592b
1499
1497
2020-10-02T02:46:43Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.3em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:4px;
padding-top:3px;
border-radius:1.5em;
-moz-border-radius:1.5em;
-webkit-border-radius:1.5m;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:120%;
font-weight:900;
margin:10px;
padding:1.5em;
text-align:center;
border-radius:1em;
-moz-border-radius:1em;
-webkit-border-radius:1em;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
/* test remove thing */
#p-ShoutWiki_messages-label {
display: none !important;
}
#p-ShoutWiki_messages.portlet.generated-sidebar {
display: none !important;
}
3638c742bc32f8d56705001458e7b3b24ac0f106
1501
1499
2020-10-02T02:47:40Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.3em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:4px;
padding-top:3px;
border-radius:1.5em;
-moz-border-radius:1.5em;
-webkit-border-radius:1.5m;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#000;
font-size:120%;
font-weight:900;
margin:10px;
padding:1.5em;
text-align:center;
border-radius:1em;
-moz-border-radius:1em;
-webkit-border-radius:1em;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
/* test remove thing */
#p-ShoutWiki_messages-label {
display: none !important;
}
#p-ShoutWiki_messages.portlet.generated-sidebar {
display: none !important;
}
d2a9f559c971b29429fd2f55fcac308947b58b3a
1502
1501
2020-10-02T02:48:02Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.3em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:4px;
padding-top:3px;
border-radius:1.5em;
-moz-border-radius:1.5em;
-webkit-border-radius:1.5m;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:125%;
font-weight:1000;
margin:10px;
padding:1.5em;
text-align:center;
border-radius:1em;
-moz-border-radius:1em;
-webkit-border-radius:1em;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
/* test remove thing */
#p-ShoutWiki_messages-label {
display: none !important;
}
#p-ShoutWiki_messages.portlet.generated-sidebar {
display: none !important;
}
8f3f7cf2c8c4ccb4e6221e9b13a9672edc3931e3
MediaWiki:Monobook.css
8
18
1472
1422
2020-10-01T02:15:20Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the Monobook skin */
/* stolen from mariowiki */
/* <h2> All pages </h2> */
#globalWrapper { background: none !important; }
h1 { font-size: 193%; }
p { margin: 0.6em 0 0.7em 0; }
h3 + dl, h4 + dl, h5 + dl {
margin-top: -0.1em;
}
/* <h3> Interface elements </h3> */
body {
background: #f9f9f9 url(http://images.shoutwiki.com/omnipedia/7/7a/Wiki_tile_bg3.png) repeat;
}
.pBody,
.portlet h3,
ul#f-list {
font-family: verdana, sans-serif;
}
#p-personal a.new {
color: #f00;
}
#p-personal a.new:visited {
color: #c00;
}
li#pt-userpage,
li#pt-anonuserpage,
li#pt-login {
color: #606060;
background: url(http://images.shoutwiki.com/omnipedia/e/e1/Trixpixel.png) top left no-repeat;
padding: 1px 0 2px 20px;
line-height: 17px;
}
#siteNotice {
border-top: 2px solid #ccc;
border-bottom: 2px solid #ccc;
padding: 3px 2px 2px 2px;
margin: -2px 0 6px;
}
body.page-Main_Page.action-view #bodyContent {
margin-top: -30px;
}
body.page-Main_Page.action-view #siteNotice {
margin-bottom: 28px;
}
#p-cactions ul li,
#p-cactions ul li a,
#p-cactions li.selected,
#p-cactions li.selected a {
border-top-left-radius: 1em;
border-top-right-radius: 1em;
}
div.pBody {
border-top-right-radius: 1em;
border-bottom-right-radius: 1em;
}
#p-cactions li {
padding-bottom: 1em;
border-top-left-radius: .72em !important;
border-top-right-radius: .72em !important;
}
input.searchButton {
padding: 0 0.4em !important;
cursor: pointer;
background-color: white;
border: 1px solid #2f6fab;
font-weight: normal;
}
#searchGoButton {
font-weight: normal;
}
#searchInput {
border: 1px solid #2f6fab;
padding-right: 0;
}
input[type="radio"],
input[type="checkbox"] {
border: none;
}
select {
border: 1px solid #2f6fab;
color: black;
}
#content {
margin: 2.8em 0 0 12.2em;
border-top-left-radius: 1em;
border-bottom-left-radius: 1em;
border-top-right-radius: 1em;
border-bottom-right-radius: 1em;
}
#p-cactions {
left: 11.7em;
}
.portlet {
width: 11.8em;
}
#p-personal li a:hover {
background-color: none;
text-decoration: underline;
}
#p-cactions li a {
color: #00c;
}
#p-cactions .new a {
color: #c00;
}
.pBody {
z-index: 3 !important;
}
/* <h3> Page content </h3> */
/* Links */
a { color: #00f; }
a:active { color: orange; }
a:visited { color: #00c; }
.mw-parser-output a.extiw { color: #06f; }
.mw-parser-output a.extiw:visited { color: #3366BB; }
.mw-parser-output a.external { color: #06f; }
.mw-parser-output a.external:visited { color: #0044CC; }
/* Fix footer spacing */
#f-list {
line-height: 17px;
}
/* Fix preferences tabs */
.client-js #preftoc a,
.client-js #preftoc a:active {
padding: 0 0.7em;
}
/* Indicator icons */
.mw-indicators {
top: -3px;
}
#mw-indicator-shortcut {
top: 14px;
}
4102a6b39fa032b486343cd386b0b6c87ec4242c
1478
1472
2020-10-01T03:29:46Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the Monobook skin */
/* stolen from mariowiki */
/* <h2> All pages </h2> */
#globalWrapper { background: none !important; }
h1 { font-size: 193%; }
p { margin: 0.6em 0 0.7em 0; }
h3 + dl, h4 + dl, h5 + dl {
margin-top: -0.1em;
}
/* <h3> Interface elements </h3> */
body {
background: #f9f9f9 url(http://images.shoutwiki.com/omnipedia/7/7a/Wiki_tile_bg44.png) repeat;
}
.pBody,
.portlet h3,
ul#f-list {
font-family: verdana, sans-serif;
}
#p-personal a.new {
color: #f00;
}
#p-personal a.new:visited {
color: #c00;
}
li#pt-userpage,
li#pt-anonuserpage,
li#pt-login {
color: #606060;
background: url(http://images.shoutwiki.com/omnipedia/e/e1/Trixpixel.png) top left no-repeat;
padding: 1px 0 2px 20px;
line-height: 17px;
}
#siteNotice {
border-top: 2px solid #ccc;
border-bottom: 2px solid #ccc;
padding: 3px 2px 2px 2px;
margin: -2px 0 6px;
}
body.page-Main_Page.action-view #bodyContent {
margin-top: -30px;
}
body.page-Main_Page.action-view #siteNotice {
margin-bottom: 28px;
}
#p-cactions ul li,
#p-cactions ul li a,
#p-cactions li.selected,
#p-cactions li.selected a {
border-top-left-radius: 1em;
border-top-right-radius: 1em;
}
div.pBody {
border-top-right-radius: 1em;
border-bottom-right-radius: 1em;
}
#p-cactions li {
padding-bottom: 1em;
border-top-left-radius: .72em !important;
border-top-right-radius: .72em !important;
}
input.searchButton {
padding: 0 0.4em !important;
cursor: pointer;
background-color: white;
border: 1px solid #2f6fab;
font-weight: normal;
}
#searchGoButton {
font-weight: normal;
}
#searchInput {
border: 1px solid #2f6fab;
padding-right: 0;
}
input[type="radio"],
input[type="checkbox"] {
border: none;
}
select {
border: 1px solid #2f6fab;
color: black;
}
#content {
margin: 2.8em 0 0 12.2em;
border-top-left-radius: 1em;
border-bottom-left-radius: 1em;
border-top-right-radius: 1em;
border-bottom-right-radius: 1em;
}
#p-cactions {
left: 11.7em;
}
.portlet {
width: 11.8em;
}
#p-personal li a:hover {
background-color: none;
text-decoration: underline;
}
#p-cactions li a {
color: #00c;
}
#p-cactions .new a {
color: #c00;
}
.pBody {
z-index: 3 !important;
}
/* <h3> Page content </h3> */
/* Links */
a { color: #00f; }
a:active { color: orange; }
a:visited { color: #00c; }
.mw-parser-output a.extiw { color: #06f; }
.mw-parser-output a.extiw:visited { color: #3366BB; }
.mw-parser-output a.external { color: #06f; }
.mw-parser-output a.external:visited { color: #0044CC; }
/* Fix footer spacing */
#f-list {
line-height: 17px;
}
/* Fix preferences tabs */
.client-js #preftoc a,
.client-js #preftoc a:active {
padding: 0 0.7em;
}
/* Indicator icons */
.mw-indicators {
top: -3px;
}
#mw-indicator-shortcut {
top: 14px;
}
b5dd0a3f67e194d083727d5cd54536fafd62789b
1479
1478
2020-10-01T03:30:12Z
Jaswacker
30585766
css
text/css
/* CSS placed here will affect users of the Monobook skin */
/* stolen from mariowiki */
/* <h2> All pages </h2> */
#globalWrapper { background: none !important; }
h1 { font-size: 193%; }
p { margin: 0.6em 0 0.7em 0; }
h3 + dl, h4 + dl, h5 + dl {
margin-top: -0.1em;
}
/* <h3> Interface elements </h3> */
body {
background: #f9f9f9 url(http://images.shoutwiki.com/omnipedia/a/a5/Wiki_tile_bg44.png) repeat;
}
.pBody,
.portlet h3,
ul#f-list {
font-family: verdana, sans-serif;
}
#p-personal a.new {
color: #f00;
}
#p-personal a.new:visited {
color: #c00;
}
li#pt-userpage,
li#pt-anonuserpage,
li#pt-login {
color: #606060;
background: url(http://images.shoutwiki.com/omnipedia/e/e1/Trixpixel.png) top left no-repeat;
padding: 1px 0 2px 20px;
line-height: 17px;
}
#siteNotice {
border-top: 2px solid #ccc;
border-bottom: 2px solid #ccc;
padding: 3px 2px 2px 2px;
margin: -2px 0 6px;
}
body.page-Main_Page.action-view #bodyContent {
margin-top: -30px;
}
body.page-Main_Page.action-view #siteNotice {
margin-bottom: 28px;
}
#p-cactions ul li,
#p-cactions ul li a,
#p-cactions li.selected,
#p-cactions li.selected a {
border-top-left-radius: 1em;
border-top-right-radius: 1em;
}
div.pBody {
border-top-right-radius: 1em;
border-bottom-right-radius: 1em;
}
#p-cactions li {
padding-bottom: 1em;
border-top-left-radius: .72em !important;
border-top-right-radius: .72em !important;
}
input.searchButton {
padding: 0 0.4em !important;
cursor: pointer;
background-color: white;
border: 1px solid #2f6fab;
font-weight: normal;
}
#searchGoButton {
font-weight: normal;
}
#searchInput {
border: 1px solid #2f6fab;
padding-right: 0;
}
input[type="radio"],
input[type="checkbox"] {
border: none;
}
select {
border: 1px solid #2f6fab;
color: black;
}
#content {
margin: 2.8em 0 0 12.2em;
border-top-left-radius: 1em;
border-bottom-left-radius: 1em;
border-top-right-radius: 1em;
border-bottom-right-radius: 1em;
}
#p-cactions {
left: 11.7em;
}
.portlet {
width: 11.8em;
}
#p-personal li a:hover {
background-color: none;
text-decoration: underline;
}
#p-cactions li a {
color: #00c;
}
#p-cactions .new a {
color: #c00;
}
.pBody {
z-index: 3 !important;
}
/* <h3> Page content </h3> */
/* Links */
a { color: #00f; }
a:active { color: orange; }
a:visited { color: #00c; }
.mw-parser-output a.extiw { color: #06f; }
.mw-parser-output a.extiw:visited { color: #3366BB; }
.mw-parser-output a.external { color: #06f; }
.mw-parser-output a.external:visited { color: #0044CC; }
/* Fix footer spacing */
#f-list {
line-height: 17px;
}
/* Fix preferences tabs */
.client-js #preftoc a,
.client-js #preftoc a:active {
padding: 0 0.7em;
}
/* Indicator icons */
.mw-indicators {
top: -3px;
}
#mw-indicator-shortcut {
top: 14px;
}
20eab8086f43e431000bc9c1c636f39d0342f092
File:Circuitstrip transparent.png
6
119
1474
483
2020-10-01T03:23:51Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:Circuitstrip transparent.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
1475
1474
2020-10-01T03:27:41Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:Circuitstrip transparent.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
1480
1475
2020-10-01T03:32:01Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:Circuitstrip transparent.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
1481
1480
2020-10-01T03:33:11Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:Circuitstrip transparent.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Main Page/series
0
60
1476
331
2020-10-01T03:29:00Z
Jaswacker
30585766
wikitext
text/x-wiki
<div align="center">
{|cellpadding="5" cellspacing="0" width="100%"
|colspan="2" style="border-bottom:1px solid #ffffff" align="center" valign="top"|
[[File:originalserieslogo.png|100px|link=Ben 10 (2005)]]<br>
'''''[[Ben 10 (2005)]]'''''
|-
|style="border-bottom:1px solid #ffffff;" align="center" valign="top" width="50%"|
[[File:alienforcelogo.png|100px|link=Ben 10: Alien Force]]<br>
'''''[[Ben 10: Alien Force]]'''''
|style="border-bottom:1px solid #ffffff; border-left:1px solid #ffffff" align="center" valign="top" width="50%"|
[[File:ultimatealienlogo.png|100px|link=Ben 10: Ultimate Alien]]<br>
'''''[[Ben 10: Ultimate Alien]]'''''<br>
|-
|style="border-bottom:1px solid #ffffff;" align="center" valign="top" width="50%"|
[[File:omniverselogo.png|100px|link=Ben 10: Omniverse]]<br>
'''''[[Ben 10: Omniverse]]'''''
|style="border-bottom:1px solid #ffffff; border-left:1px solid #ffffff" align="center" valign="top" width="50%"|
[[File:rebootlogo.png|100px|link=Ben 10 (Reboot)]]<br>
'''''[[Ben 10 (2016)]]'''''<br>
|}</div>
718be01c05e2f1250faf287d614734722aa88081
File:Wiki tile bg44.png
6
404
1477
2020-10-01T03:29:45Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Wiki.png
6
20
1482
1453
2020-10-01T03:34:17Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:Wiki.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
1483
1482
2020-10-01T03:34:47Z
Jaswacker
30585766
Jaswacker reverted [[File:Wiki.png]] to an old version
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
1484
1483
2020-10-01T03:36:18Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:Wiki.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
1485
1484
2020-10-01T03:47:48Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:Wiki.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
1487
1485
2020-10-01T03:51:48Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:Wiki.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
1488
1487
2020-10-01T03:56:42Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:Wiki.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Favicon.ico
6
19
1486
1451
2020-10-01T03:51:28Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:Favicon.ico]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
1489
1486
2020-10-01T04:00:33Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:Favicon.ico]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Template:Featurebox
10
57
1498
279
2020-10-02T02:44:00Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div div id="{{{id|}}}" class="featurebox" style="{{#if:{{{table|}}}|display:table;|}}border-color:{{{color|gray}}};"><p class="featurebox-heading" style="background-color:{{{color|gray}}};margin:0;padding:0;">{{#if:{{{view|}}}|<span style="float:right;font-size:small;font-weight:500;">[[{{{view}}}|v ]]</span>|}}{{{title|{{{1|Title}}}}}}</p>
{{{content|{{{2|Content}}}}}}
</div></includeonly><noinclude>{{Featurebox/doc}}
[[Category: Main Page templates]]
</noinclude>
56ccb4d94e33ce18ba4ecb40bf00a9a0bf2adabf
1500
1498
2020-10-02T02:46:46Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div div id="{{{id|}}}" class="featurebox" style="{{#if:{{{table|}}}|display:table;|}}border-color:{{{color|gray}}};"><p class="featurebox-heading" style="background-color:{{{color|gray}}};margin:0;padding:0;">{{#if:{{{view|}}}|<span style="float:right;font-size:small;font-weight:500;">[[{{{view}}}|v]]</span>|}}{{{title|{{{1|Title}}}}}}</p>
{{{content|{{{2|Content}}}}}}
</div></includeonly><noinclude>{{Featurebox/doc}}
[[Category: Main Page templates]]
</noinclude>
f3448bde05a9cdaf1ef728787eaf0bb077e1bd89
1503
1500
2020-10-02T02:50:23Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div div id="{{{id|}}}" class="featurebox" style="{{#if:{{{table|}}}|display:table;|}}border-color:{{{color|gray}}};"><p class="featurebox-heading" style="background-color:{{{color|gray}}};margin:0;padding:0;">{{#if:{{{view|}}}|<span style="float:left;font-size:small;font-weight:500;">[[{{{view}}}|+ ]]</span>|}}{{{title|{{{1|Title}}}}}}</p>
{{{content|{{{2|Content}}}}}}
</div></includeonly><noinclude>{{Featurebox/doc}}
[[Category: Main Page templates]]
</noinclude>
e6ace06cb0a76427d39fb3efcc0e4c666335967a
1504
1503
2020-10-02T02:50:46Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div div id="{{{id|}}}" class="featurebox" style="{{#if:{{{table|}}}|display:table;|}}border-color:{{{color|gray}}};"><p class="featurebox-heading" style="background-color:{{{color|gray}}};margin:0;padding:0;">{{#if:{{{view|}}}|<span style="float:right;font-size:small;font-weight:500;">[[{{{view}}}|+ ]]</span>|}}{{{title|{{{1|Title}}}}}}</p>
{{{content|{{{2|Content}}}}}}
</div></includeonly><noinclude>{{Featurebox/doc}}
[[Category: Main Page templates]]
</noinclude>
5653e44c00155beb45346e10065995e707635371
1505
1504
2020-10-02T02:51:53Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div div id="{{{id|}}}" class="featurebox" style="{{#if:{{{table|}}}|display:table;|}}border-color:{{{color|gray}}};"><p class="featurebox-heading" style="background-color:{{{color|gray}}};margin:0;padding:0;">{{#if:{{{view|}}}|<span style="color:#fff;float:right;font-size:small;font-weight:500;">[[{{{view}}}|+ ]]</span>|}}{{{title|{{{1|Title}}}}}}</p>
{{{content|{{{2|Content}}}}}}
</div></includeonly><noinclude>{{Featurebox/doc}}
[[Category: Main Page templates]]
</noinclude>
fb487dc7e8016e383e8828e7f3350b187076e2ad
1506
1505
2020-10-02T02:53:50Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div div id="{{{id|}}}" class="featurebox" style="{{#if:{{{table|}}}|display:table;|}}border-color:{{{color|gray}}};"><p class="featurebox-heading" style="background-color:{{{color|gray}}};margin:0;padding:0;">{{#if:{{{view|}}}|<span style="float:right;font-size:small;font-weight:500;color:white;">[[{{{view}}}|+ ]]</span>|}}{{{title|{{{1|Title}}}}}}</p>
{{{content|{{{2|Content}}}}}}
</div></includeonly><noinclude>{{Featurebox/doc}}
[[Category: Main Page templates]]
</noinclude>
c98760567806275fe6ede1bac4907357beb0d6ba
Minor Transformations/Prime
0
346
1507
1363
2020-10-02T03:35:55Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:rocks1.png|thumb|200px|caption]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|200px|caption]]
[[File:squidstrictor2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:Antigravitesla.png|thumb|200px|Tally ho!]]
[[File:tesla.png|thumb|200px|djw's postcanon design]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:Bob the Blob.png|thumb|200px|Two heads sometimes aren't that great.]]
[[File:bob.png|thumb|200px|djw's postcanon design]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|200px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|200px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
===Portaler===
[[File:port.png|thumb|200px|djw's postcanon design]]
[[File:portaler.png|thumb|200px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|200px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:squirtapiller1.png|thumb|200px|caption]]
[[File:squirtapiller2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|there is no caption. it's just decimus]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|200px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|200px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|200px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|200px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
11774dbdcd3c4175631cc8d6cf367ded6f6881fa
File:Alien Z.png
6
405
1508
2020-10-02T03:36:29Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Bob.png
6
406
1509
2020-10-02T03:36:56Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Car.png
6
407
1510
2020-10-02T03:37:49Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Decimus.png
6
408
1511
2020-10-02T03:38:13Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Port.png
6
409
1512
2020-10-02T03:38:50Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Snark.png
6
410
1513
2020-10-02T03:42:50Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Squirtapiller.png
6
411
1514
2020-10-02T03:43:10Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Squirtapiller1.jpeg
6
412
1515
2020-10-02T03:43:51Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Tesla.png
6
413
1516
2020-10-02T03:44:10Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Minor Transformations/Prime
0
346
1517
1507
2020-10-02T03:45:25Z
Jaswacker
30585766
/* Squirtapillar */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:rocks1.png|thumb|200px|caption]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|200px|caption]]
[[File:squidstrictor2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:Antigravitesla.png|thumb|200px|Tally ho!]]
[[File:tesla.png|thumb|200px|djw's postcanon design]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:Bob the Blob.png|thumb|200px|Two heads sometimes aren't that great.]]
[[File:bob.png|thumb|200px|djw's postcanon design]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|200px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|200px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
===Portaler===
[[File:port.png|thumb|200px|djw's postcanon design]]
[[File:portaler.png|thumb|200px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|200px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|200px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|there is no caption. it's just decimus]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|200px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|200px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|200px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|200px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
68906a5c201a12578fdf7743fafda87432149f7b
1518
1517
2020-10-02T03:45:54Z
Jaswacker
30585766
/* Bob the Blob */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:rocks1.png|thumb|200px|caption]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|200px|caption]]
[[File:squidstrictor2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:Antigravitesla.png|thumb|200px|Tally ho!]]
[[File:tesla.png|thumb|200px|djw's postcanon design]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:Bob the Blob.png|thumb|300px|Two heads sometimes aren't that great.]]
[[File:bob.png|thumb|300px|djw's postcanon design]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|200px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|200px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
===Portaler===
[[File:port.png|thumb|200px|djw's postcanon design]]
[[File:portaler.png|thumb|200px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|200px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|200px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|there is no caption. it's just decimus]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|200px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|200px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|200px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|200px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
4db4108bde84f44587c2b9f9998b0eb19af96eba
1519
1518
2020-10-02T03:46:37Z
Jaswacker
30585766
/* Portaler */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:rocks1.png|thumb|200px|caption]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|200px|caption]]
[[File:squidstrictor2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:Antigravitesla.png|thumb|200px|Tally ho!]]
[[File:tesla.png|thumb|200px|djw's postcanon design]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:Bob the Blob.png|thumb|300px|Two heads sometimes aren't that great.]]
[[File:bob.png|thumb|300px|djw's postcanon design]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|200px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|200px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|200px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|200px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|there is no caption. it's just decimus]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|200px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|200px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|200px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|200px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
a02126f16d4ea06ea250683eb8c0646220a71bd5
1520
1519
2020-10-02T03:46:58Z
Jaswacker
30585766
/* Snark Tanque */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:rocks1.png|thumb|200px|caption]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|200px|caption]]
[[File:squidstrictor2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:Antigravitesla.png|thumb|200px|Tally ho!]]
[[File:tesla.png|thumb|200px|djw's postcanon design]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:Bob the Blob.png|thumb|300px|Two heads sometimes aren't that great.]]
[[File:bob.png|thumb|300px|djw's postcanon design]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|200px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|200px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|200px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|there is no caption. it's just decimus]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|200px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|200px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|200px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|200px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
00ebc143d3ecbc336bea906403696030331d29e0
1521
1520
2020-10-02T03:47:12Z
Jaswacker
30585766
/* Squirtapillar */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:rocks1.png|thumb|200px|caption]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|200px|caption]]
[[File:squidstrictor2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:Antigravitesla.png|thumb|200px|Tally ho!]]
[[File:tesla.png|thumb|200px|djw's postcanon design]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:Bob the Blob.png|thumb|300px|Two heads sometimes aren't that great.]]
[[File:bob.png|thumb|300px|djw's postcanon design]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|200px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|200px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|there is no caption. it's just decimus]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|200px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|200px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|200px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|200px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
f5afb8436e1b6ad57972c9b7141f807ee427be29
1522
1521
2020-10-02T03:47:43Z
Jaswacker
30585766
/* Decagon Vreedle */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:rocks1.png|thumb|200px|caption]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|200px|caption]]
[[File:squidstrictor2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:Antigravitesla.png|thumb|200px|Tally ho!]]
[[File:tesla.png|thumb|200px|djw's postcanon design]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:Bob the Blob.png|thumb|300px|Two heads sometimes aren't that great.]]
[[File:bob.png|thumb|300px|djw's postcanon design]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|300px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|250px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|there is no caption. it's just decimus]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|200px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|200px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|200px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|200px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
778777ea773ed3b0985db0eac4267dfa743fcffe
1523
1522
2020-10-02T03:48:08Z
Jaswacker
30585766
/* Antigravitesla */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:rocks1.png|thumb|200px|caption]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|200px|caption]]
[[File:squidstrictor2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:Bob the Blob.png|thumb|300px|Two heads sometimes aren't that great.]]
[[File:bob.png|thumb|300px|djw's postcanon design]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|300px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|250px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|there is no caption. it's just decimus]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|200px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|200px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|200px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|200px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
c18ff87cf565c4112985d086a784226be2c7b71a
1524
1523
2020-10-02T03:48:44Z
Jaswacker
30585766
/* Bob the Blob */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:rocks1.png|thumb|200px|caption]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|200px|caption]]
[[File:squidstrictor2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|300px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|250px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|there is no caption. it's just decimus]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|200px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|200px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|200px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|200px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
a5de8ea997fde8ee8c3fb07995020448c45f0b6a
1525
1524
2020-10-02T03:49:26Z
Jaswacker
30585766
/* Ventrilosquid */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:rocks1.png|thumb|200px|caption]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|200px|caption]]
[[File:squidstrictor2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|300px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|250px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|there is no caption. it's just decimus]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|200px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|200px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|200px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|200px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
0ef39873775e0c727ed1050ebbd553aaa74f2191
1526
1525
2020-10-02T03:49:53Z
Jaswacker
30585766
/* Plantapocalypse */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:rocks1.png|thumb|200px|caption]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|200px|caption]]
[[File:squidstrictor2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|300px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|250px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|there is no caption. it's just decimus]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|200px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|200px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|200px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
9258bfc757411bc5315ba4f1d777bff85978df21
1527
1526
2020-10-02T03:50:46Z
Jaswacker
30585766
/* Non-canon */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:rocks1.png|thumb|200px|caption]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|200px|caption]]
[[File:squidstrictor2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|300px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|250px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|there is no caption. it's just decimus]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
placeholder
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
6db6f8ec818a35b8f8ce5609f586878d7a48ef73
1528
1527
2020-10-02T03:51:16Z
Jaswacker
30585766
/* Unseen */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:rocks1.png|thumb|300px|caption]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|300px|caption]]
[[File:squidstrictor2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|300px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|250px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|there is no caption. it's just decimus]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
placeholder
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
9ee698474377108d92112087fd4e9b99a6c77e98
1529
1528
2020-10-02T03:51:36Z
Jaswacker
30585766
/* Unseen */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:rocks1.png|thumb|350px|caption]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|300px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|250px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|there is no caption. it's just decimus]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
placeholder
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
50a056191d96ac6868fd7ccaa60a2478e1c595a8
1533
1529
2020-10-06T10:02:58Z
Carth
30634784
/* Named by Derrick J Wyatt */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:rocks1.png|thumb|350px|caption]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|300px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|250px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|there is no caption. it's just decimus]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
placeholder
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
79d1632216eb58666d055c1bc0b917c094ea4e17
1534
1533
2020-10-06T10:05:48Z
Carth
30634784
/* Unnamed Sonic Screeching Bird Alien */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:rocks1.png|thumb|350px|caption]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|300px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|250px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|there is no caption. it's just decimus]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
60aca886186015c9dc27a01a30890685e74ac631
1535
1534
2020-10-06T10:39:17Z
Carth
30634784
/* Unnamed Sonic Screeching Bird Alien */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:rocks1.png|thumb|350px|caption]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|300px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|250px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|there is no caption. it's just decimus]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
c52b178c4fd5249a46d7557a42a5543b47b957c5
1537
1535
2020-10-06T10:52:34Z
Carth
30634784
/* Squidstrictor */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:rocks1.png|thumb|350px|caption]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|300px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|250px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|there is no caption. it's just decimus]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
4fb61d2c5e3c3de366a9098d9f317f7342353060
1538
1537
2020-10-06T10:55:05Z
Carth
30634784
/* Rocks */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:rocks1.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|300px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|250px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|there is no caption. it's just decimus]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no know Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
9378bc4f7cb7893d46beb0e6a7db3f1948464e6a
1539
1538
2020-10-06T22:12:47Z
Carth
30634784
/* Non-Sapient Animals */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Shellhead===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
{{-}}
===Snakepit===
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
{{-}}
===Rocks===
[[File:rocks1.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|300px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|250px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|caption]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|there is no caption. it's just decimus]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
0bc885b4348ac681db78395711397fcbb9109150
Transformations/Reboot
0
184
1530
1276
2020-10-06T09:55:40Z
Carth
30634784
/* Regular Forms */
wikitext
text/x-wiki
__TOC__
== Regular Forms ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Cannonbolt (Reboot|Cannonbolt]]
File:PLACEHOLDER2.png|[[Overflow]]
File:PLACEHOLDER2.png|[[Heatblast (Reboot)|Heatblast]]
File:PLACEHOLDER2.png|[[XLR8 (Reboot)|XLR8]]
File:PLACEHOLDER2.png|[[Four Arms (Reboot)|Four Arms]]
File:PLACEHOLDER2.png|[[Grey Matter (Reboot)|Grey Matter]]
File:PLACEHOLDER2.png|[[Diamondhead (Reboot)|Diamondhead]]
File:PLACEHOLDER2.png|[[Upgrade (Reboot)|Upgrade]]
File:PLACEHOLDER2.png|[[Stinkfly (Reboot)|Stinkfly]]
File:PLACEHOLDER2.png|[[Wildvine (Reboot)|Wildvine]]
File:PLACEHOLDER2.png|[[Gax]]
File:PLACEHOLDER2.png|[[Shock Rock]]
File:PLACEHOLDER2.png|[[Slapback]]
File:PLACEHOLDER2.png|[[Humungousaur (Reboot)|Humungousaur]]
File:PLACEHOLDER2.png|[[Rath (Reboot)|Rath]]
File:PLACEHOLDER2.png|[[Jetray (Reboot)|Jetray]]
File:PLACEHOLDER2.png|[[Goop (Reboot)|Goop]]
File:PLACEHOLDER2.png|[[Way Big (Reboot)|Way Big]]
</gallery></center>
== Omni-Enhanced ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Diamondhead (Reboot)|Diamondhead]]
File:PLACEHOLDER2.png|[[Grey Matter (Reboot)|Grey Matter]]
File:PLACEHOLDER2.png|[[Wildvine (Reboot)|Wildvine]]
File:PLACEHOLDER2.png|[[Heatblast (Reboot)|Heatblast]]
File:PLACEHOLDER2.png|[[Four Arms (Reboot)|Four Arms]]
File:PLACEHOLDER2.png|[[Cannonbolt (Reboot|Cannonbolt]]
File:PLACEHOLDER2.png|[[Stinkfly (Reboot)|Stinkfly]]
File:PLACEHOLDER2.png|[[Overflow]]
File:PLACEHOLDER2.png|[[XLR8 (Reboot)|XLR8]]
</gallery></center>
== Omni-Kix ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Four Arms (Reboot)|Four Arms]]
File:PLACEHOLDER2.png|[[Heatblast (Reboot)|Heatblast]]
File:PLACEHOLDER2.png|[[Humungousaur (Reboot)|Humungousaur]]
File:PLACEHOLDER2.png|[[Shock Rock]]
File:PLACEHOLDER2.png|[[XLR8 (Reboot)|XLR8]]
File:PLACEHOLDER2.png|[[Rath (Reboot)|Rath]]
File:PLACEHOLDER2.png|[[Cannonbolt (Reboot|Cannonbolt]]
File:PLACEHOLDER2.png|[[Diamondhead (Reboot)|Diamondhead]]
File:PLACEHOLDER2.png|[[Slapback]]
File:PLACEHOLDER2.png|[[Jetray (Reboot)|Jetray]]
</gallery></center>
== Omni-Naut ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Reboot)|Heatblast]]
File:PLACEHOLDER2.png|[[Humungousaur (Reboot)|Humungousaur]]
File:PLACEHOLDER2.png|[[Shock Rock]]
File:PLACEHOLDER2.png|[[Jetray (Reboot)|Jetray]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
a33a6160e99462c96336d5eb64971de43bb9cf81
Transformations/Prime
0
95
1531
1316
2020-10-06T09:56:35Z
Carth
30634784
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
__TOC__
{{-}}
== Introduced in ''[[Ben 10 (2005)|Ben 10]]'' ==
<center><gallery widths="75px" heights="130px">
File:PLACEHOLDER2.png|link=[[Heatblast (Prime)]]|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|link=[[Wildmutt]]|[[Wildmutt]]
File:PLACEHOLDER2.png|link=[[Diamondhead (Prime)]]|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|link=[[XLR8 (Prime)]]|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|link=[[Greymatter (Prime)]]|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|link=[[Four Arms (Prime)]]|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|link=[[Stinkfly (Prime)]]|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|link=[[Ripjaws]]|[[Ripjaws]]
File:PLACEHOLDER2.png|link=[[Upgrade (Prime)]]|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|link=[[Ghostfreak]]|[[Ghostfreak]]
File:PLACEHOLDER2.png|link=[[Cannonbolt (Prime)]]|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|link=[[Wildvine (Prime)]]|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|link=[[Blitzwolfer]]|[[Blitzwolfer]]
File:PLACEHOLDER2.png|link=[[Snare-oh]]|[[Snare-oh]]
File:PLACEHOLDER2.png|link=[[Frankenstrike]]|[[Frankenstrike]]
File:PLACEHOLDER2.png|link=[[Upchuck]]|[[Upchuck]] <small>(Perk)</small>
File:PLACEHOLDER2.png|link=[[Ditto]]|[[Ditto]]
File:PLACEHOLDER2.png|link=[[Eye Guy]]|[[Eye Guy]]
File:PLACEHOLDER2.png|link=[[Way Big (Prime)]]|[[Way Big (Prime)|Way Big]] <br><small>(Introduced in ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'')</small>
File:PLACEHOLDER2.png|link=[[Buzzshock]]|[[Buzzshock]] <br><small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|link=[[Spitter]]|[[Spitter]] <br><small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|link=[[Arctiguana]]|[[Arctiguana]] <br><small>(First used by Ben 10,000)</small>
</gallery></center>
{{-}}
== Introduced in ''[[Ben 10: Alien Force]]'' ==
<center><gallery widths="75px" heights="130px">
File:PLACEHOLDER2.png|link=[[Swampfire]]|[[Swampfire]]
File:PLACEHOLDER2.png|link=[[Echo Echo]]|[[Echo Echo]]
File:PLACEHOLDER2.png|link=[[Humungousaur (Prime)]]|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|link=[[Jetray (Prime)]]|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|link=[[Big Chill]]|[[Big Chill]]
File:PLACEHOLDER2.png|link=[[Chromastone]]|[[Chromastone]]
File:PLACEHOLDER2.png|link=[[Brainstorm]]|[[Brainstorm]]
File:PLACEHOLDER2.png|link=[[Spidermonkey]]|[[Spidermonkey]]
File:PLACEHOLDER2.png|link=[[Goop (Prime)]]|[[Goop]]
File:PLACEHOLDER2.png|link=[[Alien X]]|[[Alien X]]
File:PLACEHOLDER2.png|link=[[Upchuck]]|[[Upchuck]] <small>(Murk)</small>
File:PLACEHOLDER2.png|link=[[Lodestar]]|[[Lodestar]]
File:PLACEHOLDER2.png|link=[[Rath (Prime)]]|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|link=[[Nanomech]]|[[Nanomech]] <br><small>(Introduced in ''[[Ben 10: Alien Swarm|Alien Swarm]]'')</small>
</gallery></center>
{{-}}
== Introduced in ''[[Ben 10: Ultimate Alien]]'' ==
<center><gallery widths="75px" heights="130px">
File:PLACEHOLDER2.png|link=[[Water Hazard]]|[[Water Hazard]]
File:PLACEHOLDER2.png|link=[[AmpFibian]]|[[AmpFibian]]
File:PLACEHOLDER2.png|link=[[Armodrillo]]|[[Armodrillo]]
File:PLACEHOLDER2.png|link=[[Terraspin]]|[[Terraspin]]
File:PLACEHOLDER2.png|link=[[NRG]]|[[NRG]]
File:PLACEHOLDER2.png|link=[Fasttrack]]|[[Fasttrack]]
File:PLACEHOLDER2.png|link=[[Clockwork]]|[[Clockwork]]
File:PLACEHOLDER2.png|link=[[Chamalien]]|[[Chamalien]]
File:PLACEHOLDER2.png|link=[[Shocksquatch]]|[[Shocksquatch]] <br><small>(Introduced in ''[[Ben 10/Generator Rex: Heroes United|Heroes United]]'')</small>
File:PLACEHOLDER2.png|link=[[Eatle]]|[[Eatle]]
File:PLACEHOLDER2.png|link=[[Juryrigg]]|[[Juryrigg]]
</gallery></center>
{{-}}
== Introduced in ''[[Ben 10: Omniverse]]'' ==
<center><gallery widths="75px" heights="130px">
File:PLACEHOLDER2.png|link=[[Feedback]]|[[Feedback]]
File:PLACEHOLDER2.png|link=[[Bloxx]]|[[Bloxx]]
File:PLACEHOLDER2.png|link=[[Gravattack]]|[[Gravattack]]
File:PLACEHOLDER2.png|link=[[Crashhopper]]|[[Crashhopper]]
File:PLACEHOLDER2.png|link=[[Ball Weevil]]|[[Ball Weevil]]
File:PLACEHOLDER2.png|link=[[Walkatrout]]|[[Walkatrout]]
File:PLACEHOLDER2.png|link=[[Pesky Dust]]|[[Pesky Dust]]
File:PLACEHOLDER2.png|link=[[Mole-Stache]]|[[Mole-Stache]]
File:PLACEHOLDER2.png|link=[[The Worst]]|[[The Worst]]
File:PLACEHOLDER2.png|link=[[Kickin Hawk]]|[[Kickin Hawk]]
File:PLACEHOLDER2.png|link=[[Astrodactyl]]|[[Astrodactyl]]
File:PLACEHOLDER2.png|link=[[Toepick]]|[[Toepick]]
File:PLACEHOLDER2.png|link=[[Bullfrag]]|[[Bullfrag]]
File:PLACEHOLDER2.png|link=[[Atomix]]|[[Atomix]]
File:PLACEHOLDER2.png|link=[[Gutrot]]|[[Gutrot]]
File:PLACEHOLDER2.png|link=[[Whampire]]|[[Whampire]]
</gallery></center>
== Unseen ==
<center><gallery widths="75px" heights="130px">
File:PLACEHOLDER2.png|link=[[Sandbox]]|[[Sandbox|Placeholder]]
File:PLACEHOLDER2.png|link=[[Sandbox]]|[[Sandbox|Placeholder]]
</gallery></center>
== Non-canon ==
<center><gallery widths="75px" heights="130px">
File:PLACEHOLDER2.png|link=[[Sandbox]]|[[Sandbox|Placeholder]]
File:PLACEHOLDER2.png|link=[[Sandbox]]|[[Sandbox|Placeholder]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
{{-}}
6d22b577e9497a16d8783a7b6267f607adb26369
1532
1531
2020-10-06T09:57:29Z
Carth
30634784
/* Introduced in Ben 10: Alien Force */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
__TOC__
{{-}}
== Introduced in ''[[Ben 10 (2005)|Ben 10]]'' ==
<center><gallery widths="75px" heights="130px">
File:PLACEHOLDER2.png|link=[[Heatblast (Prime)]]|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|link=[[Wildmutt]]|[[Wildmutt]]
File:PLACEHOLDER2.png|link=[[Diamondhead (Prime)]]|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|link=[[XLR8 (Prime)]]|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|link=[[Greymatter (Prime)]]|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|link=[[Four Arms (Prime)]]|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|link=[[Stinkfly (Prime)]]|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|link=[[Ripjaws]]|[[Ripjaws]]
File:PLACEHOLDER2.png|link=[[Upgrade (Prime)]]|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|link=[[Ghostfreak]]|[[Ghostfreak]]
File:PLACEHOLDER2.png|link=[[Cannonbolt (Prime)]]|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|link=[[Wildvine (Prime)]]|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|link=[[Blitzwolfer]]|[[Blitzwolfer]]
File:PLACEHOLDER2.png|link=[[Snare-oh]]|[[Snare-oh]]
File:PLACEHOLDER2.png|link=[[Frankenstrike]]|[[Frankenstrike]]
File:PLACEHOLDER2.png|link=[[Upchuck]]|[[Upchuck]] <small>(Perk)</small>
File:PLACEHOLDER2.png|link=[[Ditto]]|[[Ditto]]
File:PLACEHOLDER2.png|link=[[Eye Guy]]|[[Eye Guy]]
File:PLACEHOLDER2.png|link=[[Way Big (Prime)]]|[[Way Big (Prime)|Way Big]] <br><small>(Introduced in ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'')</small>
File:PLACEHOLDER2.png|link=[[Buzzshock]]|[[Buzzshock]] <br><small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|link=[[Spitter]]|[[Spitter]] <br><small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|link=[[Arctiguana]]|[[Arctiguana]] <br><small>(First used by Ben 10,000)</small>
</gallery></center>
{{-}}
== Introduced in ''[[Ben 10: Alien Force]]'' ==
<center><gallery widths="75px" heights="130px">
File:PLACEHOLDER2.png|link=[[Swampfire]]|[[Swampfire]]
File:PLACEHOLDER2.png|link=[[Echo Echo]]|[[Echo Echo]]
File:PLACEHOLDER2.png|link=[[Humungousaur (Prime)]]|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|link=[[Jetray (Prime)]]|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|link=[[Big Chill]]|[[Big Chill]]
File:PLACEHOLDER2.png|link=[[Chromastone]]|[[Chromastone]]
File:PLACEHOLDER2.png|link=[[Brainstorm]]|[[Brainstorm]]
File:PLACEHOLDER2.png|link=[[Spidermonkey]]|[[Spidermonkey]]
File:PLACEHOLDER2.png|link=[[Goop (Prime)]]|[[Goop (Prime)|Goop]]
File:PLACEHOLDER2.png|link=[[Alien X]]|[[Alien X]]
File:PLACEHOLDER2.png|link=[[Upchuck]]|[[Upchuck]] <small>(Murk)</small>
File:PLACEHOLDER2.png|link=[[Lodestar]]|[[Lodestar]]
File:PLACEHOLDER2.png|link=[[Rath (Prime)]]|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|link=[[Nanomech]]|[[Nanomech]] <br><small>(Introduced in ''[[Ben 10: Alien Swarm|Alien Swarm]]'')</small>
</gallery></center>
{{-}}
== Introduced in ''[[Ben 10: Ultimate Alien]]'' ==
<center><gallery widths="75px" heights="130px">
File:PLACEHOLDER2.png|link=[[Water Hazard]]|[[Water Hazard]]
File:PLACEHOLDER2.png|link=[[AmpFibian]]|[[AmpFibian]]
File:PLACEHOLDER2.png|link=[[Armodrillo]]|[[Armodrillo]]
File:PLACEHOLDER2.png|link=[[Terraspin]]|[[Terraspin]]
File:PLACEHOLDER2.png|link=[[NRG]]|[[NRG]]
File:PLACEHOLDER2.png|link=[Fasttrack]]|[[Fasttrack]]
File:PLACEHOLDER2.png|link=[[Clockwork]]|[[Clockwork]]
File:PLACEHOLDER2.png|link=[[Chamalien]]|[[Chamalien]]
File:PLACEHOLDER2.png|link=[[Shocksquatch]]|[[Shocksquatch]] <br><small>(Introduced in ''[[Ben 10/Generator Rex: Heroes United|Heroes United]]'')</small>
File:PLACEHOLDER2.png|link=[[Eatle]]|[[Eatle]]
File:PLACEHOLDER2.png|link=[[Juryrigg]]|[[Juryrigg]]
</gallery></center>
{{-}}
== Introduced in ''[[Ben 10: Omniverse]]'' ==
<center><gallery widths="75px" heights="130px">
File:PLACEHOLDER2.png|link=[[Feedback]]|[[Feedback]]
File:PLACEHOLDER2.png|link=[[Bloxx]]|[[Bloxx]]
File:PLACEHOLDER2.png|link=[[Gravattack]]|[[Gravattack]]
File:PLACEHOLDER2.png|link=[[Crashhopper]]|[[Crashhopper]]
File:PLACEHOLDER2.png|link=[[Ball Weevil]]|[[Ball Weevil]]
File:PLACEHOLDER2.png|link=[[Walkatrout]]|[[Walkatrout]]
File:PLACEHOLDER2.png|link=[[Pesky Dust]]|[[Pesky Dust]]
File:PLACEHOLDER2.png|link=[[Mole-Stache]]|[[Mole-Stache]]
File:PLACEHOLDER2.png|link=[[The Worst]]|[[The Worst]]
File:PLACEHOLDER2.png|link=[[Kickin Hawk]]|[[Kickin Hawk]]
File:PLACEHOLDER2.png|link=[[Astrodactyl]]|[[Astrodactyl]]
File:PLACEHOLDER2.png|link=[[Toepick]]|[[Toepick]]
File:PLACEHOLDER2.png|link=[[Bullfrag]]|[[Bullfrag]]
File:PLACEHOLDER2.png|link=[[Atomix]]|[[Atomix]]
File:PLACEHOLDER2.png|link=[[Gutrot]]|[[Gutrot]]
File:PLACEHOLDER2.png|link=[[Whampire]]|[[Whampire]]
</gallery></center>
== Unseen ==
<center><gallery widths="75px" heights="130px">
File:PLACEHOLDER2.png|link=[[Sandbox]]|[[Sandbox|Placeholder]]
File:PLACEHOLDER2.png|link=[[Sandbox]]|[[Sandbox|Placeholder]]
</gallery></center>
== Non-canon ==
<center><gallery widths="75px" heights="130px">
File:PLACEHOLDER2.png|link=[[Sandbox]]|[[Sandbox|Placeholder]]
File:PLACEHOLDER2.png|link=[[Sandbox]]|[[Sandbox|Placeholder]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
{{-}}
0104eefd2171558e8fc3c6661136cced0d6f721e
File:Screechingbird.png
6
414
1536
2020-10-06T10:40:43Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Games
0
198
1540
1294
2020-10-06T23:33:18Z
Carth
30634784
wikitext
text/x-wiki
There have been many video games throughout the Ben 10 franchise, this is a directory for those games.
== Console Games ==
These are the main console games.
=== Original Continuity ===
<center><gallery widths="250px" heights="300px">
File:VG Ben10Hyperscan.png|[[Ben 10 (Mattel HyperScan)|Ben 10]] <small>('''2006''' - Mattel HyperScan)</small>
File:VG Ben10PoE.png |[[Ben 10: Protector of Earth/Console|Ben 10: Protector of Earth]] <small>('''2007''' - PS2, PSP, Wii)</small>
File:VG AlienForce.png |[[Ben 10: Alien Force - The Game]] <small>('''2008''' - PS2, PSP, Wii)</small>
File:VG VilgaxAttacks.png |[[Ben 10: Alien Force - Vilgax Attacks]] <small>('''2009''' - PS2, PSP, Wii, X360)</small>
File:VG RiseOfHex.png |[[Ben 10: Alien Force - The Rise of Hex]] <small>('''2010''' - WiiWare, XBOX Live Arcade)</small>
File:VG CosmicDestruction.png |[[Ben 10: Ultimate Alien - Cosmic Destruction]] <small>('''2010''' - PS3, PS2, PSP, Wii, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10: Galactic Racing]] <small>('''2011''' - PS3, PS Vita, Wii, 3DS)</small>
File:PLACEHOLDER2.png|[[Ben 10: Omniverse (Game)|Ben 10: Omniverse]] <small>('''2012''' - PS3, Wii, Wii U, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10: Omniverse 2]] <small>('''2013''' - PS3, Wii, Wii U, X360)</small>
</gallery></center>
=== Reboot Continuity ===
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben 10 (Reboot Game)|Ben 10]] <small>('''2017''' - PS4, Switch, XBONE)</small>
File:PLACEHOLDER2.png|[[Ben 10: Power Trip]] <small>('''2020''' - Steam, PS4, Switch, XBONE)</small>
</gallery></center>
== Handheld Games ==
The handheld games are often downgraded ports of the original console games, sometimes with different stories and different playable characters.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben 10: Protector of Earth/Handheld|Ben 10: Protector of Earth]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - The Game (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - Vilgax Attacks (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Triple Pack (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Ultimate Alien - Cosmic Destruction (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Galactic Racing (DS/3DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse (DS)|Ben 10: Omniverse]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse 2 (3DS)]]
</gallery></center>
== Mobile Games ==
Games you can play on a phone.
== Flash Games ==
Quick games you can play on your computer, usually from Cartoon Network's website.
dd671dc7790562f400c4ee067021586fb77b1bb4
1543
1540
2020-10-06T23:40:28Z
Carth
30634784
/* Original Continuity */
wikitext
text/x-wiki
There have been many video games throughout the Ben 10 franchise, this is a directory for those games.
== Console Games ==
These are the main console games.
=== Original Continuity ===
<center><gallery widths="250px" heights="300px">
File:VG Ben10Hyperscan.png|[[Ben 10 (Mattel HyperScan)|Ben 10]] <small>('''2006''' - Mattel HyperScan)</small>
File:VG Ben10PoE.png |[[Ben 10: Protector of Earth/Console|Ben 10: Protector of Earth]] <small>('''2007''' - PS2, PSP, Wii)</small>
File:VG AlienForce.png |[[Ben 10: Alien Force - The Game]] <small>('''2008''' - PS2, PSP, Wii)</small>
File:VG VilgaxAttacks.png |[[Ben 10: Alien Force - Vilgax Attacks]] <small>('''2009''' - PS2, PSP, Wii, X360)</small>
File:VG RiseOfHex.png |[[Ben 10: Alien Force - The Rise of Hex]] <small>('''2010''' - WiiWare, XBOX Live Arcade)</small>
File:VG CosmicDestruction.png |[[Ben 10: Ultimate Alien - Cosmic Destruction]] <small>('''2010''' - PS3, PS2, PSP, Wii, X360)</small>
File:PLACEHOLDER2.png|[[Ben 10: Galactic Racing]] <small>('''2011''' - PS3, PS Vita, Wii, 3DS)</small>
File:VG OV1.png |[[Ben 10: Omniverse (Game)|Ben 10: Omniverse]] <small>('''2012''' - PS3, Wii, Wii U, X360)</small>
File:VG.OV2.png |[[Ben 10: Omniverse 2]] <small>('''2013''' - PS3, Wii, Wii U, X360)</small>
</gallery></center>
=== Reboot Continuity ===
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben 10 (Reboot Game)|Ben 10]] <small>('''2017''' - PS4, Switch, XBONE)</small>
File:PLACEHOLDER2.png|[[Ben 10: Power Trip]] <small>('''2020''' - Steam, PS4, Switch, XBONE)</small>
</gallery></center>
== Handheld Games ==
The handheld games are often downgraded ports of the original console games, sometimes with different stories and different playable characters.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben 10: Protector of Earth/Handheld|Ben 10: Protector of Earth]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - The Game (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - Vilgax Attacks (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Triple Pack (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Ultimate Alien - Cosmic Destruction (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Galactic Racing (DS/3DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse (DS)|Ben 10: Omniverse]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse 2 (3DS)]]
</gallery></center>
== Mobile Games ==
Games you can play on a phone.
== Flash Games ==
Quick games you can play on your computer, usually from Cartoon Network's website.
9862f8e69d817eedd4fd3c2b07a83192402b53a6
1546
1543
2020-10-07T00:10:07Z
Carth
30634784
/* Original Continuity */
wikitext
text/x-wiki
There have been many video games throughout the Ben 10 franchise, this is a directory for those games.
== Console Games ==
These are the main console games.
=== Original Continuity ===
<center><gallery widths="250px" heights="300px">
File:VG Ben10Hyperscan.png|[[Ben 10 (Mattel HyperScan)|Ben 10]] <small>('''2006''' - Mattel HyperScan)</small>
File:VG Ben10PoE.png |[[Ben 10: Protector of Earth/Console|Ben 10: Protector of Earth]] <small>('''2007''' - PS2, PSP, Wii)</small>
File:VG AlienForce.png |[[Ben 10: Alien Force - The Game]] <small>('''2008''' - PS2, PSP, Wii)</small>
File:VG VilgaxAttacks.png |[[Ben 10: Alien Force - Vilgax Attacks]] <small>('''2009''' - PS2, PSP, Wii, X360)</small>
File:VG RiseOfHex.png |[[Ben 10: Alien Force - The Rise of Hex]] <small>('''2010''' - WiiWare, XBOX Live Arcade)</small>
File:VG CosmicDestruction.png |[[Ben 10: Ultimate Alien - Cosmic Destruction]] <small>('''2010''' - PS3, PS2, PSP, Wii, X360)</small>
File:VG GalacticRacing.png |[[Ben 10: Galactic Racing]] <small>('''2011''' - PS3, PS Vita, Wii, 3DS)</small>
File:VG OV1.png |[[Ben 10: Omniverse (Game)|Ben 10: Omniverse]] <small>('''2012''' - PS3, Wii, Wii U, X360)</small>
File:VG OV2.png |[[Ben 10: Omniverse 2]] <small>('''2013''' - PS3, Wii, Wii U, X360)</small>
</gallery></center>
=== Reboot Continuity ===
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben 10 (Reboot Game)|Ben 10]] <small>('''2017''' - PS4, Switch, XBONE)</small>
File:PLACEHOLDER2.png|[[Ben 10: Power Trip]] <small>('''2020''' - Steam, PS4, Switch, XBONE)</small>
</gallery></center>
== Handheld Games ==
The handheld games are often downgraded ports of the original console games, sometimes with different stories and different playable characters.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben 10: Protector of Earth/Handheld|Ben 10: Protector of Earth]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - The Game (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - Vilgax Attacks (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Triple Pack (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Ultimate Alien - Cosmic Destruction (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Galactic Racing (DS/3DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse (DS)|Ben 10: Omniverse]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse 2 (3DS)]]
</gallery></center>
== Mobile Games ==
Games you can play on a phone.
== Flash Games ==
Quick games you can play on your computer, usually from Cartoon Network's website.
87e51e6912811670b40257e00af58bab211e99c5
1550
1546
2020-10-07T00:15:01Z
Carth
30634784
/* Reboot Continuity */
wikitext
text/x-wiki
There have been many video games throughout the Ben 10 franchise, this is a directory for those games.
== Console Games ==
These are the main console games.
=== Original Continuity ===
<center><gallery widths="250px" heights="300px">
File:VG Ben10Hyperscan.png|[[Ben 10 (Mattel HyperScan)|Ben 10]] <small>('''2006''' - Mattel HyperScan)</small>
File:VG Ben10PoE.png |[[Ben 10: Protector of Earth/Console|Ben 10: Protector of Earth]] <small>('''2007''' - PS2, PSP, Wii)</small>
File:VG AlienForce.png |[[Ben 10: Alien Force - The Game]] <small>('''2008''' - PS2, PSP, Wii)</small>
File:VG VilgaxAttacks.png |[[Ben 10: Alien Force - Vilgax Attacks]] <small>('''2009''' - PS2, PSP, Wii, X360)</small>
File:VG RiseOfHex.png |[[Ben 10: Alien Force - The Rise of Hex]] <small>('''2010''' - WiiWare, XBOX Live Arcade)</small>
File:VG CosmicDestruction.png |[[Ben 10: Ultimate Alien - Cosmic Destruction]] <small>('''2010''' - PS3, PS2, PSP, Wii, X360)</small>
File:VG GalacticRacing.png |[[Ben 10: Galactic Racing]] <small>('''2011''' - PS3, PS Vita, Wii, 3DS)</small>
File:VG OV1.png |[[Ben 10: Omniverse (Game)|Ben 10: Omniverse]] <small>('''2012''' - PS3, Wii, Wii U, X360)</small>
File:VG OV2.png |[[Ben 10: Omniverse 2]] <small>('''2013''' - PS3, Wii, Wii U, X360)</small>
</gallery></center>
=== Reboot Continuity ===
<center><gallery widths="250px" heights="300px">
File:VG RB1.png |[[Ben 10 (Reboot Game)|Ben 10]] <small>('''2017''' - PS4, Switch, XBONE)</small>
File:VG RB2.png |[[Ben 10: Power Trip]] <small>('''2020''' - Steam, PS4, Switch, XBONE)</small>
</gallery></center>
== Handheld Games ==
The handheld games are often downgraded ports of the original console games, sometimes with different stories and different playable characters.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben 10: Protector of Earth/Handheld|Ben 10: Protector of Earth]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - The Game (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - Vilgax Attacks (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Triple Pack (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Ultimate Alien - Cosmic Destruction (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Galactic Racing (DS/3DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse (DS)|Ben 10: Omniverse]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse 2 (3DS)]]
</gallery></center>
== Mobile Games ==
Games you can play on a phone.
== Flash Games ==
Quick games you can play on your computer, usually from Cartoon Network's website.
f7ed1fab46a0e3d9e4987259e83bd07a554cd1b8
File:VG CosmicDestruction.png
6
415
1541
2020-10-06T23:34:48Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:VG RiseOfHex.png
6
416
1542
2020-10-06T23:35:11Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:VG OV1.png
6
417
1544
2020-10-06T23:51:31Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:VG OV2.png
6
418
1545
2020-10-06T23:52:52Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:VG GalacticRacing.png
6
419
1547
2020-10-07T00:10:28Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:VG RB1.png
6
420
1548
2020-10-07T00:12:42Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:VG RB2.png
6
421
1549
2020-10-07T00:13:14Z
Carth
30634784
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Omnitrix (Completed)
0
422
1551
2020-11-04T05:01:00Z
Jaswacker
30585766
Created page with "[[File:Omnitrix Prime.png|thumb]]"
wikitext
text/x-wiki
[[File:Omnitrix Prime.png|thumb]]
bf537a2c847064ef656b1f3c7ade93e968a41b36
Template:Disambig
10
22
1552
90
2020-11-04T16:47:14Z
Jaswacker
30585766
wikitext
text/x-wiki
{| style="margin:0 1em; text-align:center; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:block;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This is a disambiguation page: a list of articles associated with the same title. If an [[Special:Whatlinkshere/{{NAMESPACE}}:{{PAGENAME}}|internal link]] referred you to this page, you may wish to change the link to point directly to the intended article.''
|}<includeonly>
[[Category:Disambiguation pages]]
</includeonly>
<noinclude>
Use this template at the bottom of a disambiguation page. A disambiguation page lists at least three meanings for the term in question, and the name of the disambiguation page should end with "(disambiguation)".
To include this template in another page, write:
:<nowiki>{{Disambig}}</nowiki>
[[Category:Templates]]
49e05e1787ad8401cda7b770a633a2f829ab357c
1553
1552
2020-11-04T16:48:04Z
Jaswacker
30585766
wikitext
text/x-wiki
{| style="margin:auto; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:block;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This is a disambiguation page: a list of articles associated with the same title. If an [[Special:Whatlinkshere/{{NAMESPACE}}:{{PAGENAME}}|internal link]] referred you to this page, you may wish to change the link to point directly to the intended article.''
|}<includeonly>
[[Category:Disambiguation pages]]
</includeonly>
<noinclude>
Use this template at the bottom of a disambiguation page. A disambiguation page lists at least three meanings for the term in question, and the name of the disambiguation page should end with "(disambiguation)".
To include this template in another page, write:
:<nowiki>{{Disambig}}</nowiki>
[[Category:Templates]]
5bc635d6426445430e1f98b547f2e834ed6aee6e
1554
1553
2020-11-04T16:48:33Z
Jaswacker
30585766
wikitext
text/x-wiki
{| style="margin:0 .1em; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:block; align:center;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This is a disambiguation page: a list of articles associated with the same title. If an [[Special:Whatlinkshere/{{NAMESPACE}}:{{PAGENAME}}|internal link]] referred you to this page, you may wish to change the link to point directly to the intended article.''
|}<includeonly>
[[Category:Disambiguation pages]]
</includeonly>
<noinclude>
Use this template at the bottom of a disambiguation page. A disambiguation page lists at least three meanings for the term in question, and the name of the disambiguation page should end with "(disambiguation)".
To include this template in another page, write:
:<nowiki>{{Disambig}}</nowiki>
[[Category:Templates]]
cf12957cc6c4c7a49cc25bdc85216cc54c4f6020
1555
1554
2020-11-04T16:51:56Z
Jaswacker
30585766
wikitext
text/x-wiki
{| style="margin:0 .1em; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:block;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This is a disambiguation page: a list of articles associated with the same title. If an [[Special:Whatlinkshere/{{NAMESPACE}}:{{PAGENAME}}|internal link]] referred you to this page, you may wish to change the link to point directly to the intended article.''
|}<includeonly>
[[Category:Disambiguation pages]]
</includeonly>
<noinclude>
Use this template at the bottom of a disambiguation page. A disambiguation page lists at least three meanings for the term in question, and the name of the disambiguation page should end with "(disambiguation)".
To include this template in another page, write:
:<nowiki>{{Disambig}}</nowiki>
[[Category:Templates]]
cf56d40c026b54c4267179dc2f4953ff73cc5885
Omnitrix (Reboot)
0
423
1556
2020-11-04T17:00:20Z
Jaswacker
30585766
Created page with "{{itembox |image= {{tabs|{{tab2|Season 4|reboottrix3.png}}{{tab2|Season 3|reboottrix2.png}}{{tab2|Season 2|reboottrix1.png}}{{tab2|Season 1|OmnitrixReboot 1.png}}}} |name= Omn..."
wikitext
text/x-wiki
{{itembox
|image=
{{tabs|{{tab2|Season 4|reboottrix3.png}}{{tab2|Season 3|reboottrix2.png}}{{tab2|Season 2|reboottrix1.png}}{{tab2|Season 1|OmnitrixReboot 1.png}}}}
|name= Omnitrix
|nickname= {{Scroll|h = 80px|
* placeholder <ref>placeholder</ref>
* placeholder
* placeholder
* placeholder
}}
|alias= placeholder <ref>placeholder</ref>
|level= [[Technology Levels#Level_20|20]]
|function= DNA Alterer
|creator= [[Azmuth (Reboot)]]
|user= [[Ben Tennyson (Reboot)]]
|status= Active
|first= [[Waterfilter]]
|last= [[Ben 10 Versus The Universe: The Movie]]
}}
98bb69a4c8be429de0dea837bd0042d524a3c31f
File:Reboottrix1.png
6
424
1557
2020-11-04T17:00:46Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
File:Reboottrix2.png
6
425
1558
2020-11-04T17:01:04Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
File:Reboottrix3.png
6
426
1559
2020-11-04T17:01:18Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
Minor Transformations/Prime
0
346
1560
1539
2020-11-23T01:06:39Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his original take by saying he didn't want to make "Teraspin 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rocks1.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bungee Sponge===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|300px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|250px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|250px|derrick second sketch]]
[[File:PLACEHOLDER2.png|thumb|250px|hologram icon]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on <date>.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
{{-}}
===Funguy===
[[File:PLACEHOLDER2.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Opinicon]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Terrorsaur===
[[File:PLACEHOLDER2.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:PLACEHOLDER2.png|thumb|300px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|there is no caption. it's just decimus]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
7a1b639e26c1e9289df76a5e324992de5917b23d
1561
1560
2020-11-23T01:07:27Z
Jaswacker
30585766
/* Shellhead */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "Teraspin 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rocks1.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bungee Sponge===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|300px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|250px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|250px|derrick second sketch]]
[[File:PLACEHOLDER2.png|thumb|250px|hologram icon]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on <date>.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
{{-}}
===Funguy===
[[File:PLACEHOLDER2.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Opinicon]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Terrorsaur===
[[File:PLACEHOLDER2.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:PLACEHOLDER2.png|thumb|300px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|there is no caption. it's just decimus]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
99d6bca553dc92f80afe868063bdda512cd6eae9
1562
1561
2020-11-23T01:07:51Z
Jaswacker
30585766
/* Shellhead */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rocks1.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bungee Sponge===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|300px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|250px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|250px|derrick second sketch]]
[[File:PLACEHOLDER2.png|thumb|250px|hologram icon]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on <date>.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
{{-}}
===Funguy===
[[File:PLACEHOLDER2.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Opinicon]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Terrorsaur===
[[File:PLACEHOLDER2.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:PLACEHOLDER2.png|thumb|300px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|there is no caption. it's just decimus]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
5ec3a672e15940e3d2f513f081271cd393936ff9
1563
1562
2020-11-23T01:08:28Z
Jaswacker
30585766
/* Bungee Sponge */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rocks1.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bungee Sponge===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|300px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|250px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|250px|derrick second sketch]]
[[File:PLACEHOLDER2.png|thumb|250px|hologram icon]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on <date>.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
{{-}}
===Funguy===
[[File:PLACEHOLDER2.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Opinicon]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Terrorsaur===
[[File:PLACEHOLDER2.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:PLACEHOLDER2.png|thumb|300px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|there is no caption. it's just decimus]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
53e4d56701915307fde570fa3dc91516ac4b1141
1564
1563
2020-11-23T01:08:41Z
Jaswacker
30585766
/* Decagon Vreedle */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rocks1.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bungee Sponge===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|300px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|250px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|250px|derrick second sketch]]
[[File:PLACEHOLDER2.png|thumb|250px|hologram icon]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on <date>.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
{{-}}
===Funguy===
[[File:PLACEHOLDER2.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Opinicon]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Terrorsaur===
[[File:PLACEHOLDER2.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:PLACEHOLDER2.png|thumb|300px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|there is no caption. it's just decimus]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
cbaed50d71392e52dd9103cc588d32616364b2c0
1565
1564
2020-11-23T01:09:10Z
Jaswacker
30585766
/* Funguy */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rocks1.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bungee Sponge===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|300px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|250px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|250px|derrick second sketch]]
[[File:PLACEHOLDER2.png|thumb|250px|hologram icon]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on <date>.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
{{-}}
===Funguy===
[[File:PLACEHOLDER2.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Opinicon]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation.
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Terrorsaur===
[[File:PLACEHOLDER2.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:PLACEHOLDER2.png|thumb|300px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|there is no caption. it's just decimus]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
5d4a83367b0813bdac7a11d0e00ec2ce076b171a
1566
1565
2020-11-23T01:09:46Z
Jaswacker
30585766
/* Snark Tanque */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rocks1.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bungee Sponge===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|300px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|250px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|250px|derrick second sketch]]
[[File:PLACEHOLDER2.png|thumb|250px|hologram icon]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on <date>.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
{{-}}
===Funguy===
[[File:PLACEHOLDER2.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Opinicon]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Squirtapiller]].
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Terrorsaur===
[[File:PLACEHOLDER2.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:PLACEHOLDER2.png|thumb|300px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|there is no caption. it's just decimus]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
12aec6e765c8dc844b471361ba5ca7502718833a
1567
1566
2020-11-23T01:10:00Z
Jaswacker
30585766
/* Snark Tanque */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rocks1.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bungee Sponge===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|300px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|250px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|250px|derrick second sketch]]
[[File:PLACEHOLDER2.png|thumb|250px|hologram icon]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on <date>.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
{{-}}
===Funguy===
[[File:PLACEHOLDER2.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Opinicon]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Squirtapiller|Squirtapiller]].
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Terrorsaur===
[[File:PLACEHOLDER2.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:PLACEHOLDER2.png|thumb|300px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|there is no caption. it's just decimus]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
8eb11163655a5e43da516b15f5e301ee0cd28e95
1568
1567
2020-11-23T01:10:14Z
Jaswacker
30585766
/* Snark Tanque */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rocks1.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bungee Sponge===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|300px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|250px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|250px|derrick second sketch]]
[[File:PLACEHOLDER2.png|thumb|250px|hologram icon]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on <date>.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
{{-}}
===Funguy===
[[File:PLACEHOLDER2.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Opinicon]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Squirtapillar|Squirtapillar]].
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation.
{{-}}
===Terrorsaur===
[[File:PLACEHOLDER2.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:PLACEHOLDER2.png|thumb|300px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|there is no caption. it's just decimus]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
05954b361d22ca91edca0cd30b88ea5ec6baf4b7
1569
1568
2020-11-23T01:10:36Z
Jaswacker
30585766
/* Squirtapillar */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rocks1.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bungee Sponge===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|300px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|250px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|250px|derrick second sketch]]
[[File:PLACEHOLDER2.png|thumb|250px|hologram icon]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on <date>.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
{{-}}
===Funguy===
[[File:PLACEHOLDER2.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Opinicon]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Squirtapillar|Squirtapillar]].
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Snark Tanque|Snark Tanque]]
{{-}}
===Terrorsaur===
[[File:PLACEHOLDER2.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:PLACEHOLDER2.png|thumb|300px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|there is no caption. it's just decimus]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
dff4a239daf0e831843cbb1a41615348129cf1d3
1570
1569
2020-11-23T01:13:09Z
Jaswacker
30585766
/* Decimus Prime */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rocks1.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bungee Sponge===
[[File:PLACEHOLDER2.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|300px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|250px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|250px|derrick second sketch]]
[[File:PLACEHOLDER2.png|thumb|250px|hologram icon]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on <date>.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
{{-}}
===Funguy===
[[File:PLACEHOLDER2.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Opinicon]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Squirtapillar|Squirtapillar]].
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Snark Tanque|Snark Tanque]]
{{-}}
===Terrorsaur===
[[File:PLACEHOLDER2.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:PLACEHOLDER2.png|thumb|300px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|well this is just prime]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
b68f789a744a5fe7be376265cc2547726d96acb6
1571
1570
2020-11-23T02:14:54Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:sandboks.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:shellhed.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:snackpit.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rocks1.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bungee Sponge===
[[File:bunjee.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|300px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|250px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|250px|derrick second sketch]]
[[File:PLACEHOLDER2.png|thumb|250px|hologram icon]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on <date>.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
{{-}}
===Funguy===
[[File:fungi.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Opinicon]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Squirtapillar|Squirtapillar]].
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Snark Tanque|Snark Tanque]]
{{-}}
===Terrorsaur===
[[File:terrorsor.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:PLACEHOLDER2.png|thumb|300px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|well this is just prime]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
814d517957b40ee0e423b8e46f648a5968e48b3f
1578
1571
2020-11-23T02:17:23Z
Jaswacker
30585766
/* Terrorsaur */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:sandboks.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:shellhed.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:snackpit.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rocks1.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bungee Sponge===
[[File:bunjee.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|300px|gofundme design]]
[[File:PLACEHOLDER2.png|thumb|250px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
[[File:PLACEHOLDER2.png|thumb|250px|derrick second sketch]]
[[File:PLACEHOLDER2.png|thumb|250px|hologram icon]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on <date>.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
{{-}}
===Funguy===
[[File:fungi.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Opinicon]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Squirtapillar|Squirtapillar]].
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Snark Tanque|Snark Tanque]]
{{-}}
===Terrorsaur===
[[File:terrorsor.png|thumb|350px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:PLACEHOLDER2.png|thumb|300px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|well this is just prime]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
3dfc490fa469ccbb099cfd40e17164304f086cfb
1581
1578
2020-11-23T02:25:19Z
Jaswacker
30585766
/* Decagon Vreedle */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:sandboks.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:shellhed.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:snackpit.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rocks1.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bungee Sponge===
[[File:bunjee.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|300px|gofundme design]]
[[File:decagram2.gif|thumb|200px|hologram icon]]
[[File:PLACEHOLDER2.png|thumb|300px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
[[File:decasketch2.jpeg|thumb|200px|derrick second sketch]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
He did the same thing on 20 November 2020. <ref>https://twitter.com/DerrickJWyatt/status/1329964762403274753?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on <date>.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
{{-}}
===Funguy===
[[File:fungi.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Opinicon]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Squirtapillar|Squirtapillar]].
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Snark Tanque|Snark Tanque]]
{{-}}
===Terrorsaur===
[[File:terrorsor.png|thumb|350px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:PLACEHOLDER2.png|thumb|300px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|well this is just prime]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
2ba0e0978b6556e89608bc3eba3d780539556b06
1584
1581
2020-11-23T02:28:57Z
Jaswacker
30585766
/* Ventrilosquid */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:sandboks.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:shellhed.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:snackpit.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rocks1.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bungee Sponge===
[[File:bunjee.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|300px|gofundme design]]
[[File:decagram2.gif|thumb|200px|hologram icon]]
[[File:PLACEHOLDER2.png|thumb|300px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
[[File:decasketch2.jpeg|thumb|200px|derrick second sketch]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
He did the same thing on 20 November 2020. <ref>https://twitter.com/DerrickJWyatt/status/1329964762403274753?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on <date>.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
{{-}}
===Funguy===
[[File:fungi.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Opinicon]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Squirtapillar|Squirtapillar]].
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Snark Tanque|Snark Tanque]]
{{-}}
===Terrorsaur===
[[File:terrorsor.png|thumb|350px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:ventrosketch.jpeg|thumb|250px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
On 17 November 2020, Derrick posted a concept sketch of Ventrilosquid to Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1328780285324902403</ref>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|well this is just prime]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
ddfeade7fcfbe27967b0d5451b6839ad520f9019
1585
1584
2020-11-23T02:29:14Z
Jaswacker
30585766
/* Decagon Vreedle */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:sandboks.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:shellhed.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:snackpit.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rocks1.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bungee Sponge===
[[File:bunjee.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|300px|gofundme design]]
[[File:decagif.gif|thumb|150px|hologram icon]]
[[File:PLACEHOLDER2.png|thumb|300px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
[[File:decasketch2.jpeg|thumb|200px|derrick second sketch]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
He did the same thing on 20 November 2020. <ref>https://twitter.com/DerrickJWyatt/status/1329964762403274753?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on <date>.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
{{-}}
===Funguy===
[[File:fungi.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Opinicon]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Squirtapillar|Squirtapillar]].
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Snark Tanque|Snark Tanque]]
{{-}}
===Terrorsaur===
[[File:terrorsor.png|thumb|350px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:ventrosketch.jpeg|thumb|250px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
On 17 November 2020, Derrick posted a concept sketch of Ventrilosquid to Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1328780285324902403</ref>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|well this is just prime]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
7c951539c712614bc34110cbe7399b0386e6500a
1586
1585
2020-11-23T17:10:12Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:sandboks.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:shellhed.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:snackpit.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rocks1.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Braindrain===
[[File:braind.png|thumb|350px|Thomas Perkins' post-canon design.]]
[[File:drainb.png|thumb|350px|Thomas Perkins' second design.]]
[[Thomas Perkins]] designed this transformation in November 2020 at the request of [[Derrick J Wyatt]],<ref>https://twitter.com/DerrickJWyatt/status/1330684556744159233?s=20</ref> and [https://twitter.com/TNPerkins4/status/1330799183104622592?s=20 posted it to Twitter].
This alien is meant to be Ben's [[Ormerowon]] form. Perkins designs two distinct versions of this.
He described Braindrain as "shambling about in all his undead goodness" and "absorbing life energy and creating temporarily zombified minions."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Bungee Sponge===
[[File:bunjee.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|300px|gofundme design]]
[[File:decagif.gif|thumb|150px|hologram icon]]
[[File:PLACEHOLDER2.png|thumb|300px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
[[File:decasketch2.jpeg|thumb|200px|derrick second sketch]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
He did the same thing on 20 November 2020. <ref>https://twitter.com/DerrickJWyatt/status/1329964762403274753?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on <date>.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
{{-}}
===Funguy===
[[File:fungi.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Opinicon]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Squirtapillar|Squirtapillar]].
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Snark Tanque|Snark Tanque]]
{{-}}
===Terrorsaur===
[[File:terrorsor.png|thumb|350px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:ventrosketch.jpeg|thumb|250px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
On 17 November 2020, Derrick posted a concept sketch of Ventrilosquid to Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1328780285324902403</ref>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|well this is just prime]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
c71b1b5077e67a077ac78d609d2f717e86f01b70
1589
1586
2020-11-23T17:55:39Z
Jaswacker
30585766
/* Braindrain */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:sandboks.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:shellhed.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:snackpit.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rocks1.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Braindrain===
[[File:braind.png|thumb|300px|Thomas Perkins' post-canon design.]]
[[File:drainb.png|thumb|300px|Thomas Perkins' second design.]]
[[Thomas Perkins]] designed this transformation in November 2020 at the request of [[Derrick J Wyatt]],<ref>https://twitter.com/DerrickJWyatt/status/1330684556744159233?s=20</ref> and [https://twitter.com/TNPerkins4/status/1330799183104622592?s=20 posted it to Twitter].
This alien is meant to be Ben's [[Ormerowon]] form. Perkins designs two distinct versions of this.
He described Braindrain as "shambling about in all his undead goodness" and "absorbing life energy and creating temporarily zombified minions."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Bungee Sponge===
[[File:bunjee.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|300px|gofundme design]]
[[File:decagif.gif|thumb|150px|hologram icon]]
[[File:PLACEHOLDER2.png|thumb|300px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
[[File:decasketch2.jpeg|thumb|200px|derrick second sketch]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
He did the same thing on 20 November 2020. <ref>https://twitter.com/DerrickJWyatt/status/1329964762403274753?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on <date>.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
{{-}}
===Funguy===
[[File:fungi.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Opinicon]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Squirtapillar|Squirtapillar]].
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Snark Tanque|Snark Tanque]]
{{-}}
===Terrorsaur===
[[File:terrorsor.png|thumb|350px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:ventrosketch.jpeg|thumb|250px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
On 17 November 2020, Derrick posted a concept sketch of Ventrilosquid to Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1328780285324902403</ref>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|well this is just prime]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
35db45fe615fabe304b0d80fe4941c19d4c83d10
1590
1589
2020-11-23T17:59:34Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:sandboks.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:shellhed.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:snackpit.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rocks1.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Braindrain===
[[File:braind.png|thumb|300px|Thomas Perkins' post-canon design.]]
[[File:drainb.png|thumb|300px|Thomas Perkins' second design.]]
[[Thomas Perkins]] designed this transformation in November 2020 at the request of [[Derrick J Wyatt]],<ref>https://twitter.com/DerrickJWyatt/status/1330684556744159233?s=20</ref> and [https://twitter.com/TNPerkins4/status/1330799183104622592?s=20 posted it to Twitter].
This alien is meant to be Ben's transformation of an [[Ormerowon]] from [[Anur Ormerow]]. Perkins designs two distinct versions of this.
He described Braindrain as "shambling about in all his undead goodness" and "absorbing life energy and creating temporarily zombified minions."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Bungee Sponge===
[[File:bunjee.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:PLACEHOLDER2.png|thumb|300px|gofundme design]]
[[File:decagif.gif|thumb|150px|hologram icon]]
[[File:PLACEHOLDER2.png|thumb|300px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
[[File:decasketch2.jpeg|thumb|200px|derrick second sketch]]
placeholder
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
He did the same thing on 20 November 2020. <ref>https://twitter.com/DerrickJWyatt/status/1329964762403274753?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on <date>.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
{{-}}
===Funguy===
[[File:fungi.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Opinicon]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Squirtapillar|Squirtapillar]].
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Snark Tanque|Snark Tanque]]
{{-}}
===Terrorsaur===
[[File:terrorsor.png|thumb|350px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:ventrosketch.jpeg|thumb|250px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
On 17 November 2020, Derrick posted a concept sketch of Ventrilosquid to Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1328780285324902403</ref>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|well this is just prime]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
09962cbc7d4371d7a9af74ecf8c38f29dcc1edb7
1592
1590
2020-11-23T18:06:19Z
Jaswacker
30585766
/* Decagon Vreedle */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:sandboks.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:shellhed.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:snackpit.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rocks1.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Braindrain===
[[File:braind.png|thumb|300px|Thomas Perkins' post-canon design.]]
[[File:drainb.png|thumb|300px|Thomas Perkins' second design.]]
[[Thomas Perkins]] designed this transformation in November 2020 at the request of [[Derrick J Wyatt]],<ref>https://twitter.com/DerrickJWyatt/status/1330684556744159233?s=20</ref> and [https://twitter.com/TNPerkins4/status/1330799183104622592?s=20 posted it to Twitter].
This alien is meant to be Ben's transformation of an [[Ormerowon]] from [[Anur Ormerow]]. Perkins designs two distinct versions of this.
He described Braindrain as "shambling about in all his undead goodness" and "absorbing life energy and creating temporarily zombified minions."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Bungee Sponge===
[[File:bunjee.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:decapose.png|thumb|300px|gofundme design]]
[[File:decagif.gif|thumb|150px|hologram icon]]
[[File:PLACEHOLDER2.png|thumb|300px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
[[File:decasketch2.jpeg|thumb|200px|derrick second sketch]]
Decagon Vreedle is [[Ben Tennyson (Prime)|Ben's]] transformation of a [[Vreedle]].
He has proficiency with explosives "and the English vernacular" just like his "[[Vreedle Brothers|siblings]]."<ref>https://twitter.com/DerrickJWyatt/status/1330767497323110400?s=20</ref>
[[Derrick J Wyatt]] imagines him with a Southern accent, and being voiced by [[Bill Fagerbakke]].<ref>https://twitter.com/DerrickJWyatt/status/1330893112256782336?s=20</ref>
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
He did the same thing on 20 November 2020. <ref>https://twitter.com/DerrickJWyatt/status/1329964762403274753?s=20</ref>
In September 2020, Decagon Vreedle (and a group pick with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on <date>.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
He is also, canonically, a [https://www.urbandictionary.com/define.php?term=Himbo himbo].<ref>https://www.twitch.tv/videos/812693703</ref>
{{-}}
===Funguy===
[[File:fungi.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Opinicon]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Squirtapillar|Squirtapillar]].
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Snark Tanque|Snark Tanque]]
{{-}}
===Terrorsaur===
[[File:terrorsor.png|thumb|350px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:ventrosketch.jpeg|thumb|250px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
On 17 November 2020, Derrick posted a concept sketch of Ventrilosquid to Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1328780285324902403</ref>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|well this is just prime]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
384a349bec4dcfd5c5e79cd22b66efe81bd4ae25
1593
1592
2020-11-23T18:07:04Z
Jaswacker
30585766
/* Decagon Vreedle */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:sandboks.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:shellhed.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:snackpit.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rocks1.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Braindrain===
[[File:braind.png|thumb|300px|Thomas Perkins' post-canon design.]]
[[File:drainb.png|thumb|300px|Thomas Perkins' second design.]]
[[Thomas Perkins]] designed this transformation in November 2020 at the request of [[Derrick J Wyatt]],<ref>https://twitter.com/DerrickJWyatt/status/1330684556744159233?s=20</ref> and [https://twitter.com/TNPerkins4/status/1330799183104622592?s=20 posted it to Twitter].
This alien is meant to be Ben's transformation of an [[Ormerowon]] from [[Anur Ormerow]]. Perkins designs two distinct versions of this.
He described Braindrain as "shambling about in all his undead goodness" and "absorbing life energy and creating temporarily zombified minions."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Bungee Sponge===
[[File:bunjee.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:decapose.png|thumb|300px|gofundme design]]
[[File:decagif.gif|thumb|150px|hologram icon]]
[[File:PLACEHOLDER2.png|thumb|300px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
[[File:decasketch2.jpeg|thumb|200px|derrick second sketch]]
Decagon Vreedle is [[Ben Tennyson (Prime)|Ben's]] transformation of a [[Vreedle]].
He has proficiency with explosives "and the English vernacular" just like his "[[Vreedle Brothers|siblings]]."<ref>https://twitter.com/DerrickJWyatt/status/1330767497323110400?s=20</ref>
[[Derrick J Wyatt]] imagines him with a Southern accent, and being voiced by [[Bill Fagerbakke]].<ref>https://twitter.com/DerrickJWyatt/status/1330893112256782336?s=20</ref>
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
He did the same thing on 20 November 2020. <ref>https://twitter.com/DerrickJWyatt/status/1329964762403274753?s=20</ref>
In September 2020, Decagon Vreedle (and a group pic with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on <date>.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
He is also, canonically, a [https://www.urbandictionary.com/define.php?term=Himbo himbo].<ref>https://www.twitch.tv/videos/812693703</ref>
{{-}}
===Funguy===
[[File:fungi.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Opinicon]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Squirtapillar|Squirtapillar]].
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Snark Tanque|Snark Tanque]]
{{-}}
===Terrorsaur===
[[File:terrorsor.png|thumb|350px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:ventrosketch.jpeg|thumb|250px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
On 17 November 2020, Derrick posted a concept sketch of Ventrilosquid to Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1328780285324902403</ref>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|well this is just prime]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
e4ea633a0ce68d2dc05110aaf6c1909055ff01af
1594
1593
2020-11-23T18:08:31Z
Jaswacker
30585766
/* Decagon Vreedle */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:sandboks.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:shellhed.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:snackpit.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rocks1.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Braindrain===
[[File:braind.png|thumb|300px|Thomas Perkins' post-canon design.]]
[[File:drainb.png|thumb|300px|Thomas Perkins' second design.]]
[[Thomas Perkins]] designed this transformation in November 2020 at the request of [[Derrick J Wyatt]],<ref>https://twitter.com/DerrickJWyatt/status/1330684556744159233?s=20</ref> and [https://twitter.com/TNPerkins4/status/1330799183104622592?s=20 posted it to Twitter].
This alien is meant to be Ben's transformation of an [[Ormerowon]] from [[Anur Ormerow]]. Perkins designs two distinct versions of this.
He described Braindrain as "shambling about in all his undead goodness" and "absorbing life energy and creating temporarily zombified minions."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Bungee Sponge===
[[File:bunjee.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:decapose.png|thumb|300px|gofundme design]]
[[File:decagif.gif|thumb|150px|hologram icon]]
[[File:PLACEHOLDER2.png|thumb|300px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
[[File:decasketch2.jpeg|thumb|200px|derrick second sketch]]
Decagon Vreedle is [[Ben Tennyson (Prime)|Ben's]] transformation of a [[Vreedle]].
He has proficiency with explosives "and the English vernacular" just like his "[[Vreedle Brothers|siblings]]."<ref>https://twitter.com/DerrickJWyatt/status/1330767497323110400?s=20</ref>
[[Derrick J Wyatt]] imagines him with a Southern accent, and being voiced by [[Bill Fagerbakke]].<ref>https://twitter.com/DerrickJWyatt/status/1330893112256782336?s=20</ref>
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
He did the same thing on 20 November 2020. <ref>https://twitter.com/DerrickJWyatt/status/1329964762403274753?s=20</ref>
In September 2020, Decagon Vreedle (and a group pic with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on 22 November 2020.<ref>https://twitter.com/DerrickJWyatt/status/1330753305337757698?s=20</ref>
The final design was drawn by Derrick, and the linework and colouring were done by [https://twitter.com/dyemooch Josh Perez] on a Twitch stream.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
He is also, canonically, a [https://www.urbandictionary.com/define.php?term=Himbo himbo].<ref>https://www.twitch.tv/videos/812693703</ref>
{{-}}
===Funguy===
[[File:fungi.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Opinicon]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Squirtapillar|Squirtapillar]].
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Snark Tanque|Snark Tanque]]
{{-}}
===Terrorsaur===
[[File:terrorsor.png|thumb|350px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:ventrosketch.jpeg|thumb|250px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
On 17 November 2020, Derrick posted a concept sketch of Ventrilosquid to Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1328780285324902403</ref>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|well this is just prime]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
e1ca60e95e01760744865506de7909d238ea5406
1596
1594
2020-11-23T18:52:11Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:sandboks.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:shellhed.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:snackpit.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rockshd.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidstrictor1.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Braindrain===
[[File:braind.png|thumb|300px|Thomas Perkins' post-canon design.]]
[[File:drainb.png|thumb|300px|Thomas Perkins' second design.]]
[[Thomas Perkins]] designed this transformation in November 2020 at the request of [[Derrick J Wyatt]],<ref>https://twitter.com/DerrickJWyatt/status/1330684556744159233?s=20</ref> and [https://twitter.com/TNPerkins4/status/1330799183104622592?s=20 posted it to Twitter].
This alien is meant to be Ben's transformation of an [[Ormerowon]] from [[Anur Ormerow]]. Perkins designs two distinct versions of this.
He described Braindrain as "shambling about in all his undead goodness" and "absorbing life energy and creating temporarily zombified minions."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Bungee Sponge===
[[File:bunjee.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:decapose.png|thumb|300px|gofundme design]]
[[File:decagif.gif|thumb|150px|hologram icon]]
[[File:PLACEHOLDER2.png|thumb|300px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
[[File:decasketch2.jpeg|thumb|200px|derrick second sketch]]
Decagon Vreedle is [[Ben Tennyson (Prime)|Ben's]] transformation of a [[Vreedle]].
He has proficiency with explosives "and the English vernacular" just like his "[[Vreedle Brothers|siblings]]."<ref>https://twitter.com/DerrickJWyatt/status/1330767497323110400?s=20</ref>
[[Derrick J Wyatt]] imagines him with a Southern accent, and being voiced by [[Bill Fagerbakke]].<ref>https://twitter.com/DerrickJWyatt/status/1330893112256782336?s=20</ref>
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
He did the same thing on 20 November 2020. <ref>https://twitter.com/DerrickJWyatt/status/1329964762403274753?s=20</ref>
In September 2020, Decagon Vreedle (and a group pic with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on 22 November 2020.<ref>https://twitter.com/DerrickJWyatt/status/1330753305337757698?s=20</ref>
The final design was drawn by Derrick, and the linework and colouring were done by [https://twitter.com/dyemooch Josh Perez] on a Twitch stream.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
He is also, canonically, a [https://www.urbandictionary.com/define.php?term=Himbo himbo].<ref>https://www.twitch.tv/videos/812693703</ref>
{{-}}
===Funguy===
[[File:fungi.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Opinicon]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Squirtapillar|Squirtapillar]].
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Snark Tanque|Snark Tanque]]
{{-}}
===Terrorsaur===
[[File:terrorsor.png|thumb|350px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:ventrosketch.jpeg|thumb|250px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
On 17 November 2020, Derrick posted a concept sketch of Ventrilosquid to Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1328780285324902403</ref>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|well this is just prime]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
41973b86273f6da19650821cf829a2f689459279
1598
1596
2020-11-23T19:14:22Z
Jaswacker
30585766
/* Squidstrictor */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:sandboks.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:shellhed.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:snackpit.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rockshd.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidyhd.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Braindrain===
[[File:braind.png|thumb|300px|Thomas Perkins' post-canon design.]]
[[File:drainb.png|thumb|300px|Thomas Perkins' second design.]]
[[Thomas Perkins]] designed this transformation in November 2020 at the request of [[Derrick J Wyatt]],<ref>https://twitter.com/DerrickJWyatt/status/1330684556744159233?s=20</ref> and [https://twitter.com/TNPerkins4/status/1330799183104622592?s=20 posted it to Twitter].
This alien is meant to be Ben's transformation of an [[Ormerowon]] from [[Anur Ormerow]]. Perkins designs two distinct versions of this.
He described Braindrain as "shambling about in all his undead goodness" and "absorbing life energy and creating temporarily zombified minions."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Bungee Sponge===
[[File:bunjee.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:decapose.png|thumb|300px|gofundme design]]
[[File:decagif.gif|thumb|150px|hologram icon]]
[[File:PLACEHOLDER2.png|thumb|300px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
[[File:decasketch2.jpeg|thumb|200px|derrick second sketch]]
Decagon Vreedle is [[Ben Tennyson (Prime)|Ben's]] transformation of a [[Vreedle]].
He has proficiency with explosives "and the English vernacular" just like his "[[Vreedle Brothers|siblings]]."<ref>https://twitter.com/DerrickJWyatt/status/1330767497323110400?s=20</ref>
[[Derrick J Wyatt]] imagines him with a Southern accent, and being voiced by [[Bill Fagerbakke]].<ref>https://twitter.com/DerrickJWyatt/status/1330893112256782336?s=20</ref>
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
He did the same thing on 20 November 2020. <ref>https://twitter.com/DerrickJWyatt/status/1329964762403274753?s=20</ref>
In September 2020, Decagon Vreedle (and a group pic with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on 22 November 2020.<ref>https://twitter.com/DerrickJWyatt/status/1330753305337757698?s=20</ref>
The final design was drawn by Derrick, and the linework and colouring were done by [https://twitter.com/dyemooch Josh Perez] on a Twitch stream.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
He is also, canonically, a [https://www.urbandictionary.com/define.php?term=Himbo himbo].<ref>https://www.twitch.tv/videos/812693703</ref>
{{-}}
===Funguy===
[[File:fungi.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Opinicon]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Squirtapillar|Squirtapillar]].
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Snark Tanque|Snark Tanque]]
{{-}}
===Terrorsaur===
[[File:terrorsor.png|thumb|350px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:ventrosketch.jpeg|thumb|250px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
On 17 November 2020, Derrick posted a concept sketch of Ventrilosquid to Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1328780285324902403</ref>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|well this is just prime]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
ad74af0b07efbc64a07e54683e70bcecbccaa92a
1599
1598
2020-11-23T19:16:50Z
Jaswacker
30585766
/* Unnamed Orange Robot Alien */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:sandboks.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:shellhed.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:snackpit.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rockshd.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidyhd.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Braindrain===
[[File:braind.png|thumb|300px|Thomas Perkins' post-canon design.]]
[[File:drainb.png|thumb|300px|Thomas Perkins' second design.]]
[[Thomas Perkins]] designed this transformation in November 2020 at the request of [[Derrick J Wyatt]],<ref>https://twitter.com/DerrickJWyatt/status/1330684556744159233?s=20</ref> and [https://twitter.com/TNPerkins4/status/1330799183104622592?s=20 posted it to Twitter].
This alien is meant to be Ben's transformation of an [[Ormerowon]] from [[Anur Ormerow]]. Perkins designs two distinct versions of this.
He described Braindrain as "shambling about in all his undead goodness" and "absorbing life energy and creating temporarily zombified minions."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Bungee Sponge===
[[File:bunjee.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:decapose.png|thumb|300px|gofundme design]]
[[File:decagif.gif|thumb|150px|hologram icon]]
[[File:PLACEHOLDER2.png|thumb|300px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
[[File:decasketch2.jpeg|thumb|200px|derrick second sketch]]
Decagon Vreedle is [[Ben Tennyson (Prime)|Ben's]] transformation of a [[Vreedle]].
He has proficiency with explosives "and the English vernacular" just like his "[[Vreedle Brothers|siblings]]."<ref>https://twitter.com/DerrickJWyatt/status/1330767497323110400?s=20</ref>
[[Derrick J Wyatt]] imagines him with a Southern accent, and being voiced by [[Bill Fagerbakke]].<ref>https://twitter.com/DerrickJWyatt/status/1330893112256782336?s=20</ref>
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
He did the same thing on 20 November 2020. <ref>https://twitter.com/DerrickJWyatt/status/1329964762403274753?s=20</ref>
In September 2020, Decagon Vreedle (and a group pic with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on 22 November 2020.<ref>https://twitter.com/DerrickJWyatt/status/1330753305337757698?s=20</ref>
The final design was drawn by Derrick, and the linework and colouring were done by [https://twitter.com/dyemooch Josh Perez] on a Twitch stream.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
He is also, canonically, a [https://www.urbandictionary.com/define.php?term=Himbo himbo].<ref>https://www.twitch.tv/videos/812693703</ref>
{{-}}
===Funguy===
[[File:fungi.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Opinicon]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Squirtapillar|Squirtapillar]].
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Snark Tanque|Snark Tanque]]
{{-}}
===Terrorsaur===
[[File:terrorsor.png|thumb|350px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:ventrosketch.jpeg|thumb|250px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
On 17 November 2020, Derrick posted a concept sketch of Ventrilosquid to Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1328780285324902403</ref>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|well this is just prime]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
mention that this possibly isnt a transformation, could just be a robot
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
placeholder
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
placeholder, also known as Math Man and Doctor Boring Farmer
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
4450c5d4902ea0b690b1fd7757af2b4b39a664f4
1600
1599
2020-11-23T19:19:59Z
Jaswacker
30585766
/* Crew Statements and Jokes (Non-canon) */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
__NOTOC__
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:sandboks.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:shellhed.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:snackpit.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rockshd.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidyhd.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Braindrain===
[[File:braind.png|thumb|300px|Thomas Perkins' post-canon design.]]
[[File:drainb.png|thumb|300px|Thomas Perkins' second design.]]
[[Thomas Perkins]] designed this transformation in November 2020 at the request of [[Derrick J Wyatt]],<ref>https://twitter.com/DerrickJWyatt/status/1330684556744159233?s=20</ref> and [https://twitter.com/TNPerkins4/status/1330799183104622592?s=20 posted it to Twitter].
This alien is meant to be Ben's transformation of an [[Ormerowon]] from [[Anur Ormerow]]. Perkins designs two distinct versions of this.
He described Braindrain as "shambling about in all his undead goodness" and "absorbing life energy and creating temporarily zombified minions."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Bungee Sponge===
[[File:bunjee.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:decapose.png|thumb|300px|gofundme design]]
[[File:decagif.gif|thumb|150px|hologram icon]]
[[File:PLACEHOLDER2.png|thumb|300px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
[[File:decasketch2.jpeg|thumb|200px|derrick second sketch]]
Decagon Vreedle is [[Ben Tennyson (Prime)|Ben's]] transformation of a [[Vreedle]].
He has proficiency with explosives "and the English vernacular" just like his "[[Vreedle Brothers|siblings]]."<ref>https://twitter.com/DerrickJWyatt/status/1330767497323110400?s=20</ref>
[[Derrick J Wyatt]] imagines him with a Southern accent, and being voiced by [[Bill Fagerbakke]].<ref>https://twitter.com/DerrickJWyatt/status/1330893112256782336?s=20</ref>
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
He did the same thing on 20 November 2020. <ref>https://twitter.com/DerrickJWyatt/status/1329964762403274753?s=20</ref>
In September 2020, Decagon Vreedle (and a group pic with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on 22 November 2020.<ref>https://twitter.com/DerrickJWyatt/status/1330753305337757698?s=20</ref>
The final design was drawn by Derrick, and the linework and colouring were done by [https://twitter.com/dyemooch Josh Perez] on a Twitch stream.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
He is also, canonically, a [https://www.urbandictionary.com/define.php?term=Himbo himbo].<ref>https://www.twitch.tv/videos/812693703</ref>
{{-}}
===Funguy===
[[File:fungi.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Opinicon]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Squirtapillar|Squirtapillar]].
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Snark Tanque|Snark Tanque]]
{{-}}
===Terrorsaur===
[[File:terrorsor.png|thumb|350px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:ventrosketch.jpeg|thumb|250px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
On 17 November 2020, Derrick posted a concept sketch of Ventrilosquid to Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1328780285324902403</ref>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|well this is just prime]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
mention that this possibly isnt a transformation, could just be a robot
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
Deejay Emcee was the hypothetical name of a [[Pugnavore]] transformation, named by [[Derrick J Wyatt]].
Derrick specifically said that [[Ben Tennyson (Prime)|Ben]] does ''not'' have access to a Pugnavore transformation, but this is what he would name it if he did.
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
This is Ben's hypothetical [[Revonnahgander]] transformation, named by Derrick J Wyatt.
At other times, Derrick also called this alien 'Math Man,' and 'Doctor Boring Farmer.'
It is very likely the name is like this to make fun of [[Rook]].
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
0fbe82c7ea9a66de4cb4722d1a7d01ba821bb907
1602
1600
2020-11-23T19:23:32Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:sandboks.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:shellhed.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:snackpit.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rockshd.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidyhd.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Braindrain===
[[File:braind.png|thumb|300px|Thomas Perkins' post-canon design.]]
[[File:drainb.png|thumb|300px|Thomas Perkins' second design.]]
[[Thomas Perkins]] designed this transformation in November 2020 at the request of [[Derrick J Wyatt]],<ref>https://twitter.com/DerrickJWyatt/status/1330684556744159233?s=20</ref> and [https://twitter.com/TNPerkins4/status/1330799183104622592?s=20 posted it to Twitter].
This alien is meant to be Ben's transformation of an [[Ormerowon]] from [[Anur Ormerow]]. Perkins designs two distinct versions of this.
He described Braindrain as "shambling about in all his undead goodness" and "absorbing life energy and creating temporarily zombified minions."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Bungee Sponge===
[[File:bunjee.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:decapose.png|thumb|300px|gofundme design]]
[[File:decagif.gif|thumb|150px|hologram icon]]
[[File:PLACEHOLDER2.png|thumb|300px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
[[File:decasketch2.jpeg|thumb|200px|derrick second sketch]]
Decagon Vreedle is [[Ben Tennyson (Prime)|Ben's]] transformation of a [[Vreedle]].
He has proficiency with explosives "and the English vernacular" just like his "[[Vreedle Brothers|siblings]]."<ref>https://twitter.com/DerrickJWyatt/status/1330767497323110400?s=20</ref>
[[Derrick J Wyatt]] imagines him with a Southern accent, and being voiced by [[Bill Fagerbakke]].<ref>https://twitter.com/DerrickJWyatt/status/1330893112256782336?s=20</ref>
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
He did the same thing on 20 November 2020. <ref>https://twitter.com/DerrickJWyatt/status/1329964762403274753?s=20</ref>
In September 2020, Decagon Vreedle (and a group pic with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on 22 November 2020.<ref>https://twitter.com/DerrickJWyatt/status/1330753305337757698?s=20</ref>
The final design was drawn by Derrick, and the linework and colouring were done by [https://twitter.com/dyemooch Josh Perez] on a Twitch stream.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
He is also, canonically, a [https://www.urbandictionary.com/define.php?term=Himbo himbo].<ref>https://www.twitch.tv/videos/812693703</ref>
{{-}}
===Funguy===
[[File:fungi.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Opinicon]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Squirtapillar|Squirtapillar]].
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Snark Tanque|Snark Tanque]]
{{-}}
===Terrorsaur===
[[File:terrorsor.png|thumb|350px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:ventrosketch.jpeg|thumb|250px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
On 17 November 2020, Derrick posted a concept sketch of Ventrilosquid to Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1328780285324902403</ref>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|well this is just prime]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
mention that this possibly isnt a transformation, could just be a robot
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
Deejay Emcee was the hypothetical name of a [[Pugnavore]] transformation, named by [[Derrick J Wyatt]].
Derrick specifically said that [[Ben Tennyson (Prime)|Ben]] does ''not'' have access to a Pugnavore transformation, but this is what he would name it if he did.
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
This is Ben's hypothetical [[Revonnahgander]] transformation, named by Derrick J Wyatt.
At other times, Derrick also called this alien 'Math Man,' and 'Doctor Boring Farmer.'
It is very likely the name is like this to make fun of [[Rook]].
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
af7611c558eb3f378174ff91987da4904016d3a0
1607
1602
2020-11-24T20:07:04Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:sandboks.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Sandbox is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:shellhed.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:snackpit.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rockshd.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidyhd.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Braindrain===
[[File:braind.png|thumb|300px|Thomas Perkins' post-canon design.]]
[[File:drainb.png|thumb|300px|Thomas Perkins' second design.]]
[[Thomas Perkins]] designed this transformation in November 2020 at the request of [[Derrick J Wyatt]],<ref>https://twitter.com/DerrickJWyatt/status/1330684556744159233?s=20</ref> and [https://twitter.com/TNPerkins4/status/1330799183104622592?s=20 posted it to Twitter].
This alien is meant to be Ben's transformation of an [[Ormerowon]] from [[Anur Ormerow]]. Perkins designs two distinct versions of this.
He described Braindrain as "shambling about in all his undead goodness" and "absorbing life energy and creating temporarily zombified minions."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Bungee Sponge===
[[File:bunjee.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:decapose.png|thumb|300px|gofundme design]]
[[File:decagif.gif|thumb|150px|hologram icon]]
[[File:decagroup.jpg|thumb|300px|group photo]]
[[File:decagonsketch.png|thumb|200px|caption]]
[[File:decasketch2.jpeg|thumb|200px|derrick second sketch]]
Decagon Vreedle is [[Ben Tennyson (Prime)|Ben's]] transformation of a [[Vreedle]].
He has proficiency with explosives "and the English vernacular" just like his "[[Vreedle Brothers|siblings]]."<ref>https://twitter.com/DerrickJWyatt/status/1330767497323110400?s=20</ref>
[[Derrick J Wyatt]] imagines him with a Southern accent, and being voiced by [[Bill Fagerbakke]].<ref>https://twitter.com/DerrickJWyatt/status/1330893112256782336?s=20</ref>
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
He did the same thing on 20 November 2020. <ref>https://twitter.com/DerrickJWyatt/status/1329964762403274753?s=20</ref>
In September 2020, Decagon Vreedle (and a group pic with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on 22 November 2020.<ref>https://twitter.com/DerrickJWyatt/status/1330753305337757698?s=20</ref>
The final design was drawn by Derrick, and the linework and colouring were done by [https://twitter.com/dyemooch Josh Perez] on a Twitch stream.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
He is also, canonically, a [https://www.urbandictionary.com/define.php?term=Himbo himbo].<ref>https://www.twitch.tv/videos/812693703</ref>
{{-}}
===Funguy===
[[File:fungi.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Fear]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Hippopotamass===
[[File:hippo1.png|thumb|350px|Thomas Perkins' post-canon design.]]
[[File:hippo2.png|thumb|350px|Thomas Perkins' second design.]]
Hippopotamass was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1331113674707070976?s=20 design to Twitter] of this alien.
He described this alien as a "density controlling Hippo Alien."
His powers may be similar to that of [[Gravattack]], but there might be [https://powerlisting.fandom.com/wiki/Density_Manipulation#Applications more applications].
Although Hippopotamass was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Squirtapillar|Squirtapillar]].
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Snark Tanque|Snark Tanque]]
{{-}}
===Terrorsaur===
[[File:terrorsor.png|thumb|350px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:ventrosketch.jpeg|thumb|250px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
On 17 November 2020, Derrick posted a concept sketch of Ventrilosquid to Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1328780285324902403</ref>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|well this is just prime]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
mention that this possibly isnt a transformation, could just be a robot
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
Deejay Emcee was the hypothetical name of a [[Pugnavore]] transformation, named by [[Derrick J Wyatt]].
Derrick specifically said that [[Ben Tennyson (Prime)|Ben]] does ''not'' have access to a Pugnavore transformation, but this is what he would name it if he did.
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
This is Ben's hypothetical [[Revonnahgander]] transformation, named by Derrick J Wyatt.
At other times, Derrick also called this alien 'Math Man,' and 'Doctor Boring Farmer.'
It is very likely the name is like this to make fun of [[Rook]].
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
94f4ed7f5d32378a7213e8d3fe0d1e3846bb743e
File:Bunjee.png
6
427
1572
2020-11-23T02:15:21Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Fungi.png
6
428
1573
2020-11-23T02:15:33Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Sandboks.png
6
429
1574
2020-11-23T02:15:43Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Shellhed.png
6
430
1575
2020-11-23T02:15:53Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Snackpit.png
6
431
1576
2020-11-23T02:16:05Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Terrorsor.png
6
432
1577
2020-11-23T02:16:15Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Decagram2.gif
6
433
1579
2020-11-23T02:24:37Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Decasketch2.jpeg
6
434
1580
2020-11-23T02:24:47Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Ventrosketch.jpeg
6
435
1582
2020-11-23T02:27:52Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Decagif.gif
6
436
1583
2020-11-23T02:28:55Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Braind.png
6
437
1587
2020-11-23T17:54:23Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Drainb.png
6
438
1588
2020-11-23T17:54:33Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Decapose.png
6
439
1591
2020-11-23T18:05:36Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Rockshd.png
6
440
1595
2020-11-23T18:51:42Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
File:Squidyhd.png
6
441
1597
2020-11-23T19:14:19Z
Jaswacker
30585766
This is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
Minor Transformations/Other
0
181
1601
790
2020-11-23T19:23:18Z
Jaswacker
30585766
wikitext
text/x-wiki
<sup>[[Minor_Transformations/Other|Full page link.]]</sup>
{{-}}
==Ben Tennyson (Race Against Time)==
The following are forms used by Ben Tennyson in [[Ben 10: Race Against Time|Race Against Time]]. It's also known that he has access to '''Wildmutt''', '''XLR8''', '''Four Arms''', '''Stinkfly''', '''Ripjaws''', '''Upgrade''' and '''Cannonbolt''', but these go unseen, only being confirmed by the presence of their icons.
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Grey Matter===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Diamondhead===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Wildmutt===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Eon===
[[File:Eon_Transformation.png|thumb|200px|caption]]
'''Eon''' is a [[Chronian]] from the planet [[Chronia]].
After hacking his way through the Omnitrix's firewalls, Eon forced [[Ben Tennyson (Race Against Time)|Ben]] to transform into a copy of himself. His appearance (sans helmet) and powers are identical to Eon's except amplified due to the rebirth.
The form was lost the moment Ben transformed back into himself with the help of [[Gwen Tennyson (Race Against Time)|Gwen]] coaching him to break free from Eon's control.
This form is treated as non-canonical due to Eon's origins changing in ''[[Ben 10,000 Returns|Ultimate Alien]]'' and ''[[Ben Again|Omniverse]]''.
<small>For more information on his multiversal counterparts, see [[Eon (Disambiguation)|Eon]].</small>
{{-}}
== Deefus Veeblepister ==
===Slapstrike===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Unitaur===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==Alpha==
===Heatblast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Four Arms===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Humungousaur===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
0b3d65715b03cc304ef566bb04bec6900692215a
Minor Transformations/Reboot
0
372
1603
1378
2020-11-23T19:23:54Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|rbt}}
<sup>[[Minor_Transformations/Reboot|Full page link.]]</sup>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Banana Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===''DNA Decode'' Alien Fusion===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Hotdawg===
[[File:Hotdawg.png|thumb|200px|caption]]
[[File:Hotdawgguitar.png|thumb|200px|caption]]
placeholder
{{-}}
===Mole-Stache===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Rath Arms===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Shock Blast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==''Crossover Nexus'' Transformations (Non-canon)==
These transformations appeared in [[Crossover Nexus]], and are each [[Ben Tennyson (Reboot)|Ben's]] forms of popular [[Cartoon Network]] characters. They have not appeared in any proper continuity, and are therefore not-canon.
<div class="thumb tright" style="width:500px;">
<caption>[https://archive.org/details/the-cartoon-cartoon-punch Archive Link]</caption>
<youtube width="500" height="300">ldDawUFYqrM</youtube>
</div>
If one of these transformations appears in any official media, they will be moved.
The full list of characters Ben turns into is:
* [https://en.wikipedia.org/wiki/Jake_the_Dog Jake the Dog] ([https://en.wikipedia.org/wiki/Adventure_Time Adventure Time])
* Prohyas ([https://en.wikipedia.org/wiki/Mighty_Magiswords Mighty Magiswords])
* Robot Jones (Whatever Happened To Robot Jones?)
* Festro (Super Mountain Fort Awesome)
* Uncle Grandpa (Uncle Grandpa)
* Gumball Watterson (The Amazing World of Gumball)
* Mordecai (Regular Show)
* Double-D (Ed, Edd, and Eddy)
* Wirt (Over The Garden Wall)
* Moxy (The Moxy Show)
* Grizz (We Bare Bears)
* Jeff (Clarance)
* Grim (The Grim Adventure of Billy and Mandy)
* Chowder (Chowder)
* K’nuckles (The Misadventure of Flapjack)
* Monkey (Dial M for Monkey)
* Cow (Cow and Chicken)
* Johnny Bravo (Johnny Bravo)
* Buttercup (The Powerpuff Girls)
* Dexter (Dexter’s Laboratory)
* Finn the Human (Adventure Time)
{{-}}
==''Villainous Guide for a Successful Evil Conquest'' Transformations (Non-canon)==
placeholder
If one of these transformations appears in any official media, they will be moved.
[[File:PLACEHOLDER2.png|thumb|200px|gif of omnitrix dial + transformations]]
The full list of characters Vilgax turns into is:
* Instant Martian
* The Great Gazoo
* Zorak
* Dalek
* Black Hat Alien
{{-}}
e150c84b0991d03dafe2e33aceed76ccc7e04855
File:Decagroup.jpg
6
442
1604
2020-11-24T19:58:34Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Hippo1.png
6
443
1605
2020-11-24T19:58:46Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Hippo2.png
6
444
1606
2020-11-24T19:59:02Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Minor Transformations/Prime
0
346
1608
1607
2020-11-24T20:07:52Z
Jaswacker
30585766
/* Decagon Vreedle */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:sandboks.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Sandbox is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:shellhed.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:snackpit.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rockshd.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidyhd.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Braindrain===
[[File:braind.png|thumb|300px|Thomas Perkins' post-canon design.]]
[[File:drainb.png|thumb|300px|Thomas Perkins' second design.]]
[[Thomas Perkins]] designed this transformation in November 2020 at the request of [[Derrick J Wyatt]],<ref>https://twitter.com/DerrickJWyatt/status/1330684556744159233?s=20</ref> and [https://twitter.com/TNPerkins4/status/1330799183104622592?s=20 posted it to Twitter].
This alien is meant to be Ben's transformation of an [[Ormerowon]] from [[Anur Ormerow]]. Perkins designs two distinct versions of this.
He described Braindrain as "shambling about in all his undead goodness" and "absorbing life energy and creating temporarily zombified minions."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Bungee Sponge===
[[File:bunjee.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:decapose.png|thumb|300px|gofundme design]]
[[File:decagroup.jpg|thumb|400px|group photo]]
[[File:decagif.gif|thumb|100px|hologram icon]]
[[File:decagonsketch.png|thumb|150px|caption]]
[[File:decasketch2.jpeg|thumb|150px|derrick second sketch]]
Decagon Vreedle is [[Ben Tennyson (Prime)|Ben's]] transformation of a [[Vreedle]].
He has proficiency with explosives "and the English vernacular" just like his "[[Vreedle Brothers|siblings]]."<ref>https://twitter.com/DerrickJWyatt/status/1330767497323110400?s=20</ref>
[[Derrick J Wyatt]] imagines him with a Southern accent, and being voiced by [[Bill Fagerbakke]].<ref>https://twitter.com/DerrickJWyatt/status/1330893112256782336?s=20</ref>
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
He did the same thing on 20 November 2020. <ref>https://twitter.com/DerrickJWyatt/status/1329964762403274753?s=20</ref>
In September 2020, Decagon Vreedle (and a group pic with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on 22 November 2020.<ref>https://twitter.com/DerrickJWyatt/status/1330753305337757698?s=20</ref>
The final design was drawn by Derrick, and the linework and colouring were done by [https://twitter.com/dyemooch Josh Perez] on a Twitch stream.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
He is also, canonically, a [https://www.urbandictionary.com/define.php?term=Himbo himbo].<ref>https://www.twitch.tv/videos/812693703</ref>
{{-}}
===Funguy===
[[File:fungi.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Fear]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Hippopotamass===
[[File:hippo1.png|thumb|350px|Thomas Perkins' post-canon design.]]
[[File:hippo2.png|thumb|350px|Thomas Perkins' second design.]]
Hippopotamass was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1331113674707070976?s=20 design to Twitter] of this alien.
He described this alien as a "density controlling Hippo Alien."
His powers may be similar to that of [[Gravattack]], but there might be [https://powerlisting.fandom.com/wiki/Density_Manipulation#Applications more applications].
Although Hippopotamass was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Squirtapillar|Squirtapillar]].
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Snark Tanque|Snark Tanque]]
{{-}}
===Terrorsaur===
[[File:terrorsor.png|thumb|350px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:ventrosketch.jpeg|thumb|250px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
On 17 November 2020, Derrick posted a concept sketch of Ventrilosquid to Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1328780285324902403</ref>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|well this is just prime]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
mention that this possibly isnt a transformation, could just be a robot
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
Deejay Emcee was the hypothetical name of a [[Pugnavore]] transformation, named by [[Derrick J Wyatt]].
Derrick specifically said that [[Ben Tennyson (Prime)|Ben]] does ''not'' have access to a Pugnavore transformation, but this is what he would name it if he did.
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
This is Ben's hypothetical [[Revonnahgander]] transformation, named by Derrick J Wyatt.
At other times, Derrick also called this alien 'Math Man,' and 'Doctor Boring Farmer.'
It is very likely the name is like this to make fun of [[Rook]].
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
85733ca8bb84a79d9b896716c8f7dd57a9457557
1609
1608
2020-11-24T20:50:52Z
Jaswacker
30585766
/* Decagon Vreedle */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:sandboks.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Sandbox is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:shellhed.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:snackpit.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rockshd.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidyhd.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Braindrain===
[[File:braind.png|thumb|300px|Thomas Perkins' post-canon design.]]
[[File:drainb.png|thumb|300px|Thomas Perkins' second design.]]
[[Thomas Perkins]] designed this transformation in November 2020 at the request of [[Derrick J Wyatt]],<ref>https://twitter.com/DerrickJWyatt/status/1330684556744159233?s=20</ref> and [https://twitter.com/TNPerkins4/status/1330799183104622592?s=20 posted it to Twitter].
This alien is meant to be Ben's transformation of an [[Ormerowon]] from [[Anur Ormerow]]. Perkins designs two distinct versions of this.
He described Braindrain as "shambling about in all his undead goodness" and "absorbing life energy and creating temporarily zombified minions."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Bungee Sponge===
[[File:bunjee.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:decapose.png|thumb|300px|gofundme design]]
[[File:decagroup.jpg|thumb|400px|group photo]]
[[File:decagif.gif|thumb|100px|hologram icon]]
[[File:decagonsketch.png|thumb|150px|caption]]
[[File:decasketch2.jpeg|thumb|150px|derrick second sketch]]
Decagon Vreedle is [[Ben Tennyson (Prime)|Ben's]] transformation of a [[Vreedle]].
He has proficiency with explosives "and the English vernacular" just like his "[[Vreedle Brothers|siblings]]."<ref>https://twitter.com/DerrickJWyatt/status/1330767497323110400?s=20</ref>
If Decagon were to die, he would be re-cloned by the [[Vreedle Cloning Machine|Vreedle tanks]].<ref>https://ask.fm/DerrickJWyatt/answers/165704929140#_=_</ref>
[[Derrick J Wyatt]] imagines him with a Southern accent, and being voiced by [[Bill Fagerbakke]].<ref>https://twitter.com/DerrickJWyatt/status/1330893112256782336?s=20</ref>
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
He did the same thing on 20 November 2020. <ref>https://twitter.com/DerrickJWyatt/status/1329964762403274753?s=20</ref>
In September 2020, Decagon Vreedle (and a group pic with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on 22 November 2020.<ref>https://twitter.com/DerrickJWyatt/status/1330753305337757698?s=20</ref>
The final design was drawn by Derrick, and the linework and colouring were done by [https://twitter.com/dyemooch Josh Perez] on a Twitch stream.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
He is also, canonically, a [https://www.urbandictionary.com/define.php?term=Himbo himbo].<ref>https://www.twitch.tv/videos/812693703</ref>
{{-}}
===Funguy===
[[File:fungi.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Fear]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Hippopotamass===
[[File:hippo1.png|thumb|350px|Thomas Perkins' post-canon design.]]
[[File:hippo2.png|thumb|350px|Thomas Perkins' second design.]]
Hippopotamass was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1331113674707070976?s=20 design to Twitter] of this alien.
He described this alien as a "density controlling Hippo Alien."
His powers may be similar to that of [[Gravattack]], but there might be [https://powerlisting.fandom.com/wiki/Density_Manipulation#Applications more applications].
Although Hippopotamass was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Squirtapillar|Squirtapillar]].
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Snark Tanque|Snark Tanque]]
{{-}}
===Terrorsaur===
[[File:terrorsor.png|thumb|350px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:ventrosketch.jpeg|thumb|250px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
On 17 November 2020, Derrick posted a concept sketch of Ventrilosquid to Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1328780285324902403</ref>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|well this is just prime]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
mention that this possibly isnt a transformation, could just be a robot
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
Deejay Emcee was the hypothetical name of a [[Pugnavore]] transformation, named by [[Derrick J Wyatt]].
Derrick specifically said that [[Ben Tennyson (Prime)|Ben]] does ''not'' have access to a Pugnavore transformation, but this is what he would name it if he did.
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
This is Ben's hypothetical [[Revonnahgander]] transformation, named by Derrick J Wyatt.
At other times, Derrick also called this alien 'Math Man,' and 'Doctor Boring Farmer.'
It is very likely the name is like this to make fun of [[Rook]].
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
28dea7949e5bca37389f48abf13b4ce017a8c842
1610
1609
2020-11-25T18:00:02Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:sandboks.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Sandbox is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:shellhed.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:snackpit.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rockshd.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidyhd.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Braindrain===
[[File:braind.png|thumb|300px|Thomas Perkins' post-canon design.]]
[[File:drainb.png|thumb|300px|Thomas Perkins' second design.]]
[[Thomas Perkins]] designed this transformation in November 2020 at the request of [[Derrick J Wyatt]],<ref>https://twitter.com/DerrickJWyatt/status/1330684556744159233?s=20</ref> and [https://twitter.com/TNPerkins4/status/1330799183104622592?s=20 posted it to Twitter].
This alien is meant to be Ben's transformation of an [[Ormerowon]] from [[Anur Ormerow]]. Perkins designs two distinct versions of this.
He described Braindrain as "shambling about in all his undead goodness" and "absorbing life energy and creating temporarily zombified minions."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Bungee Sponge===
[[File:bunjee.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:decapose.png|thumb|300px|gofundme design]]
[[File:decagroup.jpg|thumb|400px|group photo]]
[[File:decagif.gif|thumb|100px|hologram icon]]
[[File:decagonsketch.png|thumb|150px|caption]]
[[File:decasketch2.jpeg|thumb|150px|derrick second sketch]]
Decagon Vreedle is [[Ben Tennyson (Prime)|Ben's]] transformation of a [[Vreedle]].
He has proficiency with explosives "and the English vernacular" just like his "[[Vreedle Brothers|siblings]]."<ref>https://twitter.com/DerrickJWyatt/status/1330767497323110400?s=20</ref>
If Decagon were to die, he would be re-cloned by the [[Vreedle Cloning Machine|Vreedle tanks]].<ref>https://ask.fm/DerrickJWyatt/answers/165704929140#_=_</ref>
[[Derrick J Wyatt]] imagines him with a Southern accent, and being voiced by [[Bill Fagerbakke]].<ref>https://twitter.com/DerrickJWyatt/status/1330893112256782336?s=20</ref>
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
He did the same thing on 20 November 2020. <ref>https://twitter.com/DerrickJWyatt/status/1329964762403274753?s=20</ref>
In September 2020, Decagon Vreedle (and a group pic with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on 22 November 2020.<ref>https://twitter.com/DerrickJWyatt/status/1330753305337757698?s=20</ref>
The final design was drawn by Derrick, and the linework and colouring were done by [https://twitter.com/dyemooch Josh Perez] on a Twitch stream.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
He is also, canonically, a [https://www.urbandictionary.com/define.php?term=Himbo himbo].<ref>https://www.twitch.tv/videos/812693703</ref>
{{-}}
===Funguy===
[[File:fungi.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Fear]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
((-))
===Gurge===
[[File:gurj.png|thumb|350px|Thomas Perkins' post-canon design.]]
Gurge is [[Ben Tennyson (Prime)|Ben's]] transformation of the [[Nightmarish Alien]] from ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]], who was a prisoner on [[Incarcecon]].
This alien was designed by [[Thomas Perkins]] and [https://twitter.com/TNPerkins4/status/1331521236023734273?s=20 posted to Twitter] in November 2020.
Perkins described this form as "an alien that may be capable of inducing weapons grade nausea."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Hippopotamass===
[[File:hippo1.png|thumb|350px|Thomas Perkins' post-canon design.]]
[[File:hippo2.png|thumb|350px|Thomas Perkins' second design.]]
Hippopotamass was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1331113674707070976?s=20 design to Twitter] of this alien.
He described this alien as a "density controlling Hippo Alien."
His powers may be similar to that of [[Gravattack]], but there might be [https://powerlisting.fandom.com/wiki/Density_Manipulation#Applications more applications].
Although Hippopotamass was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Squirtapillar|Squirtapillar]].
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Snark Tanque|Snark Tanque]]
{{-}}
===Terrorsaur===
[[File:terrorsor.png|thumb|350px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:ventrosketch.jpeg|thumb|250px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
On 17 November 2020, Derrick posted a concept sketch of Ventrilosquid to Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1328780285324902403</ref>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|well this is just prime]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
mention that this possibly isnt a transformation, could just be a robot
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
Deejay Emcee was the hypothetical name of a [[Pugnavore]] transformation, named by [[Derrick J Wyatt]].
Derrick specifically said that [[Ben Tennyson (Prime)|Ben]] does ''not'' have access to a Pugnavore transformation, but this is what he would name it if he did.
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
This is Ben's hypothetical [[Revonnahgander]] transformation, named by Derrick J Wyatt.
At other times, Derrick also called this alien 'Math Man,' and 'Doctor Boring Farmer.'
It is very likely the name is like this to make fun of [[Rook]].
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
2e11fb117f33294a2ab107eae8a8c10c620fa30f
1612
1610
2020-11-25T18:01:07Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:sandboks.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Sandbox is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:shellhed.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:snackpit.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rockshd.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidyhd.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Braindrain===
[[File:braind.png|thumb|300px|Thomas Perkins' post-canon design.]]
[[File:drainb.png|thumb|300px|Thomas Perkins' second design.]]
[[Thomas Perkins]] designed this transformation in November 2020 at the request of [[Derrick J Wyatt]],<ref>https://twitter.com/DerrickJWyatt/status/1330684556744159233?s=20</ref> and [https://twitter.com/TNPerkins4/status/1330799183104622592?s=20 posted it to Twitter].
This alien is meant to be Ben's transformation of an [[Ormerowon]] from [[Anur Ormerow]]. Perkins designs two distinct versions of this.
He described Braindrain as "shambling about in all his undead goodness" and "absorbing life energy and creating temporarily zombified minions."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Bungee Sponge===
[[File:bunjee.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:decapose.png|thumb|300px|gofundme design]]
[[File:decagroup.jpg|thumb|400px|group photo]]
[[File:decagif.gif|thumb|100px|hologram icon]]
[[File:decagonsketch.png|thumb|150px|caption]]
[[File:decasketch2.jpeg|thumb|150px|derrick second sketch]]
Decagon Vreedle is [[Ben Tennyson (Prime)|Ben's]] transformation of a [[Vreedle]].
He has proficiency with explosives "and the English vernacular" just like his "[[Vreedle Brothers|siblings]]."<ref>https://twitter.com/DerrickJWyatt/status/1330767497323110400?s=20</ref>
If Decagon were to die, he would be re-cloned by the [[Vreedle Cloning Machine|Vreedle tanks]].<ref>https://ask.fm/DerrickJWyatt/answers/165704929140#_=_</ref>
[[Derrick J Wyatt]] imagines him with a Southern accent, and being voiced by [[Bill Fagerbakke]].<ref>https://twitter.com/DerrickJWyatt/status/1330893112256782336?s=20</ref>
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
He did the same thing on 20 November 2020. <ref>https://twitter.com/DerrickJWyatt/status/1329964762403274753?s=20</ref>
In September 2020, Decagon Vreedle (and a group pic with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on 22 November 2020.<ref>https://twitter.com/DerrickJWyatt/status/1330753305337757698?s=20</ref>
The final design was drawn by Derrick, and the linework and colouring were done by [https://twitter.com/dyemooch Josh Perez] on a Twitch stream.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
He is also, canonically, a [https://www.urbandictionary.com/define.php?term=Himbo himbo].<ref>https://www.twitch.tv/videos/812693703</ref>
{{-}}
===Funguy===
[[File:fungi.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Fear]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Gurge===
[[File:gurj.png|thumb|350px|Thomas Perkins' post-canon design.]]
Gurge is [[Ben Tennyson (Prime)|Ben's]] transformation of the [[Nightmarish Alien]] from ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]], who was a prisoner on [[Incarcecon]].
This alien was designed by [[Thomas Perkins]] and [https://twitter.com/TNPerkins4/status/1331521236023734273?s=20 posted to Twitter] in November 2020.
Perkins described this form as "an alien that may be capable of inducing weapons grade nausea."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Hippopotamass===
[[File:hippo1.png|thumb|350px|Thomas Perkins' post-canon design.]]
[[File:hippo2.png|thumb|350px|Thomas Perkins' second design.]]
Hippopotamass was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1331113674707070976?s=20 design to Twitter] of this alien.
He described this alien as a "density controlling Hippo Alien."
His powers may be similar to that of [[Gravattack]], but there might be [https://powerlisting.fandom.com/wiki/Density_Manipulation#Applications more applications].
Although Hippopotamass was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Squirtapillar|Squirtapillar]].
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Snark Tanque|Snark Tanque]]
{{-}}
===Terrorsaur===
[[File:terrorsor.png|thumb|350px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:ventrosketch.jpeg|thumb|250px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
On 17 November 2020, Derrick posted a concept sketch of Ventrilosquid to Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1328780285324902403</ref>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|well this is just prime]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
mention that this possibly isnt a transformation, could just be a robot
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
Deejay Emcee was the hypothetical name of a [[Pugnavore]] transformation, named by [[Derrick J Wyatt]].
Derrick specifically said that [[Ben Tennyson (Prime)|Ben]] does ''not'' have access to a Pugnavore transformation, but this is what he would name it if he did.
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
This is Ben's hypothetical [[Revonnahgander]] transformation, named by Derrick J Wyatt.
At other times, Derrick also called this alien 'Math Man,' and 'Doctor Boring Farmer.'
It is very likely the name is like this to make fun of [[Rook]].
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
eb76be07a38d8a4f6d5bb5306c9bc6a50adecc5d
1613
1612
2020-11-25T18:01:50Z
Jaswacker
30585766
/* Gurge */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:sandboks.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Sandbox is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:shellhed.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:snackpit.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rockshd.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidyhd.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Braindrain===
[[File:braind.png|thumb|300px|Thomas Perkins' post-canon design.]]
[[File:drainb.png|thumb|300px|Thomas Perkins' second design.]]
[[Thomas Perkins]] designed this transformation in November 2020 at the request of [[Derrick J Wyatt]],<ref>https://twitter.com/DerrickJWyatt/status/1330684556744159233?s=20</ref> and [https://twitter.com/TNPerkins4/status/1330799183104622592?s=20 posted it to Twitter].
This alien is meant to be Ben's transformation of an [[Ormerowon]] from [[Anur Ormerow]]. Perkins designs two distinct versions of this.
He described Braindrain as "shambling about in all his undead goodness" and "absorbing life energy and creating temporarily zombified minions."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Bungee Sponge===
[[File:bunjee.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:decapose.png|thumb|300px|gofundme design]]
[[File:decagroup.jpg|thumb|400px|group photo]]
[[File:decagif.gif|thumb|100px|hologram icon]]
[[File:decagonsketch.png|thumb|150px|caption]]
[[File:decasketch2.jpeg|thumb|150px|derrick second sketch]]
Decagon Vreedle is [[Ben Tennyson (Prime)|Ben's]] transformation of a [[Vreedle]].
He has proficiency with explosives "and the English vernacular" just like his "[[Vreedle Brothers|siblings]]."<ref>https://twitter.com/DerrickJWyatt/status/1330767497323110400?s=20</ref>
If Decagon were to die, he would be re-cloned by the [[Vreedle Cloning Machine|Vreedle tanks]].<ref>https://ask.fm/DerrickJWyatt/answers/165704929140#_=_</ref>
[[Derrick J Wyatt]] imagines him with a Southern accent, and being voiced by [[Bill Fagerbakke]].<ref>https://twitter.com/DerrickJWyatt/status/1330893112256782336?s=20</ref>
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
He did the same thing on 20 November 2020. <ref>https://twitter.com/DerrickJWyatt/status/1329964762403274753?s=20</ref>
In September 2020, Decagon Vreedle (and a group pic with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on 22 November 2020.<ref>https://twitter.com/DerrickJWyatt/status/1330753305337757698?s=20</ref>
The final design was drawn by Derrick, and the linework and colouring were done by [https://twitter.com/dyemooch Josh Perez] on a Twitch stream.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
He is also, canonically, a [https://www.urbandictionary.com/define.php?term=Himbo himbo].<ref>https://www.twitch.tv/videos/812693703</ref>
{{-}}
===Funguy===
[[File:fungi.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Fear]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Gurge===
[[File:gurj.png|thumb|350px|Thomas Perkins' post-canon design.]]
Gurge is [[Ben Tennyson (Prime)|Ben's]] transformation of the [[Nightmarish Alien]] from ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'', who was a prisoner on [[Incarcecon]].
This alien was designed by [[Thomas Perkins]] and [https://twitter.com/TNPerkins4/status/1331521236023734273?s=20 posted to Twitter] in November 2020.
Perkins described this form as "an alien that may be capable of inducing weapons grade nausea."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Hippopotamass===
[[File:hippo1.png|thumb|350px|Thomas Perkins' post-canon design.]]
[[File:hippo2.png|thumb|350px|Thomas Perkins' second design.]]
Hippopotamass was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1331113674707070976?s=20 design to Twitter] of this alien.
He described this alien as a "density controlling Hippo Alien."
His powers may be similar to that of [[Gravattack]], but there might be [https://powerlisting.fandom.com/wiki/Density_Manipulation#Applications more applications].
Although Hippopotamass was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Squirtapillar|Squirtapillar]].
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Snark Tanque|Snark Tanque]]
{{-}}
===Terrorsaur===
[[File:terrorsor.png|thumb|350px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:ventrosketch.jpeg|thumb|250px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
On 17 November 2020, Derrick posted a concept sketch of Ventrilosquid to Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1328780285324902403</ref>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|well this is just prime]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
mention that this possibly isnt a transformation, could just be a robot
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
Deejay Emcee was the hypothetical name of a [[Pugnavore]] transformation, named by [[Derrick J Wyatt]].
Derrick specifically said that [[Ben Tennyson (Prime)|Ben]] does ''not'' have access to a Pugnavore transformation, but this is what he would name it if he did.
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
This is Ben's hypothetical [[Revonnahgander]] transformation, named by Derrick J Wyatt.
At other times, Derrick also called this alien 'Math Man,' and 'Doctor Boring Farmer.'
It is very likely the name is like this to make fun of [[Rook]].
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
f337d35c0bd07f8dd1f140522dad38ec17c21b6f
1614
1613
2020-11-25T18:02:28Z
Jaswacker
30585766
/* Gurge */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:sandboks.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Sandbox is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:shellhed.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:snackpit.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rockshd.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidyhd.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Braindrain===
[[File:braind.png|thumb|300px|Thomas Perkins' post-canon design.]]
[[File:drainb.png|thumb|300px|Thomas Perkins' second design.]]
[[Thomas Perkins]] designed this transformation in November 2020 at the request of [[Derrick J Wyatt]],<ref>https://twitter.com/DerrickJWyatt/status/1330684556744159233?s=20</ref> and [https://twitter.com/TNPerkins4/status/1330799183104622592?s=20 posted it to Twitter].
This alien is meant to be Ben's transformation of an [[Ormerowon]] from [[Anur Ormerow]]. Perkins designs two distinct versions of this.
He described Braindrain as "shambling about in all his undead goodness" and "absorbing life energy and creating temporarily zombified minions."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Bungee Sponge===
[[File:bunjee.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:decapose.png|thumb|300px|gofundme design]]
[[File:decagroup.jpg|thumb|400px|group photo]]
[[File:decagif.gif|thumb|100px|hologram icon]]
[[File:decagonsketch.png|thumb|150px|caption]]
[[File:decasketch2.jpeg|thumb|150px|derrick second sketch]]
Decagon Vreedle is [[Ben Tennyson (Prime)|Ben's]] transformation of a [[Vreedle]].
He has proficiency with explosives "and the English vernacular" just like his "[[Vreedle Brothers|siblings]]."<ref>https://twitter.com/DerrickJWyatt/status/1330767497323110400?s=20</ref>
If Decagon were to die, he would be re-cloned by the [[Vreedle Cloning Machine|Vreedle tanks]].<ref>https://ask.fm/DerrickJWyatt/answers/165704929140#_=_</ref>
[[Derrick J Wyatt]] imagines him with a Southern accent, and being voiced by [[Bill Fagerbakke]].<ref>https://twitter.com/DerrickJWyatt/status/1330893112256782336?s=20</ref>
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
He did the same thing on 20 November 2020. <ref>https://twitter.com/DerrickJWyatt/status/1329964762403274753?s=20</ref>
In September 2020, Decagon Vreedle (and a group pic with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on 22 November 2020.<ref>https://twitter.com/DerrickJWyatt/status/1330753305337757698?s=20</ref>
The final design was drawn by Derrick, and the linework and colouring were done by [https://twitter.com/dyemooch Josh Perez] on a Twitch stream.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
He is also, canonically, a [https://www.urbandictionary.com/define.php?term=Himbo himbo].<ref>https://www.twitch.tv/videos/812693703</ref>
{{-}}
===Funguy===
[[File:fungi.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Fear]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Gurge===
[[File:gurj.png|thumb|350px|Thomas Perkins' post-canon design.]]
Gurge is [[Ben Tennyson (Prime)|Ben's]] transformation of the same species as the [[Nightmarish Alien]] from ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'', who was a prisoner on [[Incarcecon]].
This alien was designed by [[Thomas Perkins]] and [https://twitter.com/TNPerkins4/status/1331521236023734273?s=20 posted to Twitter] in November 2020.
Perkins described this form as "an alien that may be capable of inducing weapons grade nausea."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Hippopotamass===
[[File:hippo1.png|thumb|350px|Thomas Perkins' post-canon design.]]
[[File:hippo2.png|thumb|350px|Thomas Perkins' second design.]]
Hippopotamass was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1331113674707070976?s=20 design to Twitter] of this alien.
He described this alien as a "density controlling Hippo Alien."
His powers may be similar to that of [[Gravattack]], but there might be [https://powerlisting.fandom.com/wiki/Density_Manipulation#Applications more applications].
Although Hippopotamass was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Squirtapillar|Squirtapillar]].
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Snark Tanque|Snark Tanque]]
{{-}}
===Terrorsaur===
[[File:terrorsor.png|thumb|350px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:ventrosketch.jpeg|thumb|250px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
On 17 November 2020, Derrick posted a concept sketch of Ventrilosquid to Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1328780285324902403</ref>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|well this is just prime]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
mention that this possibly isnt a transformation, could just be a robot
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
Deejay Emcee was the hypothetical name of a [[Pugnavore]] transformation, named by [[Derrick J Wyatt]].
Derrick specifically said that [[Ben Tennyson (Prime)|Ben]] does ''not'' have access to a Pugnavore transformation, but this is what he would name it if he did.
{{-}}
===Elast-Elk===
placeholder
{{-}}
===Farmer BoringJeans===
This is Ben's hypothetical [[Revonnahgander]] transformation, named by Derrick J Wyatt.
At other times, Derrick also called this alien 'Math Man,' and 'Doctor Boring Farmer.'
It is very likely the name is like this to make fun of [[Rook]].
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
d2a66743c8c09c9d6dd86cfe75a93ce5a0ef72d6
File:Gurj.png
6
445
1611
2020-11-25T18:00:17Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Sandbox
0
240
1615
1429
2020-11-25T18:03:51Z
Jaswacker
30585766
Redirected page to [[Minor Transformations#Sandbox]]
wikitext
text/x-wiki
#REDIRECT [[Minor_Transformations#Sandbox]]
__NOTOC__ __NOEDITSECTION__
<span id="esmeral"></span>
{{:Main Page/disambig}}
<div style="text-align: center; vertical-align: top; float: left; width: 50%">
{{:Main Page/logo}}
<div id="mpexternaliconssocmed">
<imagemap>
File:discord_pakmar2.png|250px
rect 160 65 325 190 [http://discord.com Invite currently unavailable!]
rect 15 105 165 280 [[Pakmar|Don't ruin Pakmar's new business venture! Again!]]
desc none
</imagemap>
</div>
</div>
<div style="float: right; width: 50%; margin: 0px 0px 5px">
{{Featurebox
|The Franchise
|color=#02b70c
|id=series
|view=Main Page/series
|content={{:Main Page/series}}
}}
</div>
<div style="clear:right;"></div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Fundamentals
|color=#02b70c
|id=fundamentals
|content={{:Main_Page/fundamentals}}
|view=Main_Page/fundamentals
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Featured Article
|color=#02b70c
|id=featured
|content={{:Main_Page/featured}}<p style="text-align:right">[[:Category:Featured articles|More Featured Articles]]
|view=Main_Page/featured
}}
</div>
<div style="float: right; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Polls and Voting
|color=#02b70c
|id=poll
|content={{:Main_Page/poll}}
|view=Main_Page/poll
}}
</div>
<div style="float: left; width: 50%; margin: 0px 0px 15px">
{{Featurebox
|Previous Poll Results
|color=#02b70c
|id=results
|content={{:Main_Page/results}}
|view=Main_Page/results
}}
</div>
<div style="float: left; width: 100%; margin: 0px 0px 15px">
{{Featurebox
|Wiki Admins
|color=#02b70c
|id=admins
|content={{:Main_Page/admins}}
|view=Main_Page/admins
}}
</div>
ea99af1c7cb96501769e21695593df71b8fb9a11
Shellhead
0
446
1616
2020-11-25T18:04:17Z
Jaswacker
30585766
Redirected page to [[Minor Transformations#Shellhead]]
wikitext
text/x-wiki
#REDIRECT [[Minor_Transformations#Shellhead]]
f99612822c578e49d0a48b9c72eafd93f035575e
Snakepit
0
447
1617
2020-11-25T18:04:33Z
Jaswacker
30585766
Redirected page to [[Minor Transformations#Snakepit]]
wikitext
text/x-wiki
#REDIRECT [[Minor_Transformations#Snakepit]]
60bb38c825c1cd80d05a3df5aff43aee5ecf87c2
Rocks
0
448
1618
2020-11-25T18:04:56Z
Jaswacker
30585766
Redirected page to [[Minor Transformations#Rocks]]
wikitext
text/x-wiki
#REDIRECT [[Minor_Transformations#Rocks]]
12df7ec19da6eb752197995f4de153795a7e60f7
Squidstrictor
0
449
1619
2020-11-25T18:05:14Z
Jaswacker
30585766
Redirected page to [[Minor Transformations#Squidstrictor]]
wikitext
text/x-wiki
#REDIRECT [[Minor_Transformations#Squidstrictor]]
1c10a7d1a99021d920c511a806d40afc526c5f84
Decagon Vreedle
0
450
1620
2020-11-25T18:05:32Z
Jaswacker
30585766
Redirected page to [[Minor Transformations#Decagon Vreedle]]
wikitext
text/x-wiki
#REDIRECT [[Minor_Transformations#Decagon_Vreedle]]
1a6027d48cd300b435be9dd81dd0b16c33eeb37c
Transformations/Reboot
0
184
1623
1530
2021-04-18T08:58:52Z
Carth
30634784
/* Regular Forms */
wikitext
text/x-wiki
__TOC__
== Regular Forms ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Cannonbolt (Reboot|Cannonbolt]]
File:PLACEHOLDER2.png|[[Overflow]]
File:PLACEHOLDER2.png|[[Heatblast (Reboot)|Heatblast]]
File:PLACEHOLDER2.png|[[XLR8 (Reboot)|XLR8]]
File:PLACEHOLDER2.png|[[Four Arms (Reboot)|Four Arms]]
File:PLACEHOLDER2.png|[[Grey Matter (Reboot)|Grey Matter]]
File:PLACEHOLDER2.png|[[Diamondhead (Reboot)|Diamondhead]]
File:PLACEHOLDER2.png|[[Upgrade (Reboot)|Upgrade]]
File:PLACEHOLDER2.png|[[Stinkfly (Reboot)|Stinkfly]]
File:PLACEHOLDER2.png|[[Wildvine (Reboot)|Wildvine]]
File:PLACEHOLDER2.png|[[Gax]]
File:PLACEHOLDER2.png|[[Shock Rock]]
File:PLACEHOLDER2.png|[[Slapback]]
File:PLACEHOLDER2.png|[[Humungousaur (Reboot)|Humungousaur]]
File:PLACEHOLDER2.png|[[Rath (Reboot)|Rath]]
File:PLACEHOLDER2.png|[[Jetray (Reboot)|Jetray]]
File:PLACEHOLDER2.png|[[Goop (Reboot)|Goop]]
File:PLACEHOLDER2.png|[[Way Big (Reboot)|Way Big]]
File:PLACEHOLDER2.png|[[Surge]]
</gallery></center>
== Omni-Enhanced ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Diamondhead (Reboot)|Diamondhead]]
File:PLACEHOLDER2.png|[[Grey Matter (Reboot)|Grey Matter]]
File:PLACEHOLDER2.png|[[Wildvine (Reboot)|Wildvine]]
File:PLACEHOLDER2.png|[[Heatblast (Reboot)|Heatblast]]
File:PLACEHOLDER2.png|[[Four Arms (Reboot)|Four Arms]]
File:PLACEHOLDER2.png|[[Cannonbolt (Reboot|Cannonbolt]]
File:PLACEHOLDER2.png|[[Stinkfly (Reboot)|Stinkfly]]
File:PLACEHOLDER2.png|[[Overflow]]
File:PLACEHOLDER2.png|[[XLR8 (Reboot)|XLR8]]
</gallery></center>
== Omni-Kix ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Four Arms (Reboot)|Four Arms]]
File:PLACEHOLDER2.png|[[Heatblast (Reboot)|Heatblast]]
File:PLACEHOLDER2.png|[[Humungousaur (Reboot)|Humungousaur]]
File:PLACEHOLDER2.png|[[Shock Rock]]
File:PLACEHOLDER2.png|[[XLR8 (Reboot)|XLR8]]
File:PLACEHOLDER2.png|[[Rath (Reboot)|Rath]]
File:PLACEHOLDER2.png|[[Cannonbolt (Reboot|Cannonbolt]]
File:PLACEHOLDER2.png|[[Diamondhead (Reboot)|Diamondhead]]
File:PLACEHOLDER2.png|[[Slapback]]
File:PLACEHOLDER2.png|[[Jetray (Reboot)|Jetray]]
</gallery></center>
== Omni-Naut ==
<center><gallery widths="60px" heights="110px">
File:PLACEHOLDER2.png|[[Heatblast (Reboot)|Heatblast]]
File:PLACEHOLDER2.png|[[Humungousaur (Reboot)|Humungousaur]]
File:PLACEHOLDER2.png|[[Shock Rock]]
File:PLACEHOLDER2.png|[[Jetray (Reboot)|Jetray]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
3a07f3ec8c7ce2dd7bb598ec83d45a20c1a7c42d
Minor Transformations/Reboot
0
372
1624
1603
2021-04-18T09:06:48Z
Carth
30634784
wikitext
text/x-wiki
{{trix|rbt}}
<sup>[[Minor_Transformations/Reboot|Full page link.]]</sup>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Banana Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===''DNA Decode'' Alien Fusion===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Hotdawg===
[[File:Hotdawg.png|thumb|200px|caption]]
[[File:Hotdawgguitar.png|thumb|200px|caption]]
placeholder
{{-}}
===Mole-Stache===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Rath Arms===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Shock Blast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==''Crossover Nexus'' Transformations (Non-canon)==
These transformations appeared in [[Crossover Nexus]], and are each [[Ben Tennyson (Reboot)|Ben's]] forms of popular [[Cartoon Network]] characters. They have not appeared in any proper continuity, and are therefore not-canon.
<div class="thumb tright" style="width:500px;">
<caption>[https://archive.org/details/the-cartoon-cartoon-punch Archive Link]</caption>
<youtube width="500" height="300">ldDawUFYqrM</youtube>
</div>
If one of these transformations appears in any official media, they will be moved.
The full list of characters Ben turns into is:
* [https://en.wikipedia.org/wiki/Jake_the_Dog Jake the Dog] ([https://en.wikipedia.org/wiki/Adventure_Time Adventure Time])
* Prohyas ([https://en.wikipedia.org/wiki/Mighty_Magiswords Mighty Magiswords])
* Robot Jones (Whatever Happened To Robot Jones?)
* Festro (Super Mountain Fort Awesome)
* Uncle Grandpa (Uncle Grandpa)
* Gumball Watterson (The Amazing World of Gumball)
* Mordecai (Regular Show)
* Double-D (Ed, Edd, and Eddy)
* Wirt (Over The Garden Wall)
* Moxy (The Moxy Show)
* Grizz (We Bare Bears)
* Jeff (Clarance)
* Grim (The Grim Adventure of Billy and Mandy)
* Chowder (Chowder)
* K’nuckles (The Misadventure of Flapjack)
* Monkey (Dial M for Monkey)
* Cow (Cow and Chicken)
* Johnny Bravo (Johnny Bravo)
* Buttercup (The Powerpuff Girls)
* Dexter (Dexter’s Laboratory)
* Finn the Human (Adventure Time)
{{-}}
==''Villainous Guide for a Successful Evil Conquest'' Transformations (Non-canon)==
placeholder
If one of these transformations appears in any official media, they will be moved.
[[File:PLACEHOLDER2.png|thumb|200px|gif of omnitrix dial + transformations]]
The full list of characters Vilgax turns into is:
* Instant Martian
* The Great Gazoo
* Zorak
* Dalek
* Black Hat Alien
{{-}}
==Gwen Transformations=
* Stinkfly
* Four Arms
{{-}}
==Max Transformations=
* Cannonbolt
{{-}}
==Billy Billions Transformations=
* Four Arms
{{-}}
==Alternate Ben Transformations==
* Heatblast (Ben 10,000)
* Four Arms (Ben 10,000)
* Buzzshock (Ben 10,000)
* Spidermonkey (Ben 10,000)
* Surge (Ben 10,000)
* Heatblast (Original Series Dimension)
* Big Chill (Alien Force Dimension)
* Chromastone (Alien Force Dimension)
* Bloxx (Omniverse Dimension)
* Ripjaws (Gwen 10 Dimension
* Alien X (Evil Ben Dimension)
472509e0812a2d364fcdd4cb83c77aed095130b9
1625
1624
2021-04-18T09:07:28Z
Carth
30634784
wikitext
text/x-wiki
{{trix|rbt}}
<sup>[[Minor_Transformations/Reboot|Full page link.]]</sup>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Banana Alien===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===''DNA Decode'' Alien Fusion===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Hotdawg===
[[File:Hotdawg.png|thumb|200px|caption]]
[[File:Hotdawgguitar.png|thumb|200px|caption]]
placeholder
{{-}}
===Mole-Stache===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Rath Arms===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
===Shock Blast===
[[File:PLACEHOLDER2.png|thumb|200px|caption]]
placeholder
{{-}}
==''Crossover Nexus'' Transformations (Non-canon)==
These transformations appeared in [[Crossover Nexus]], and are each [[Ben Tennyson (Reboot)|Ben's]] forms of popular [[Cartoon Network]] characters. They have not appeared in any proper continuity, and are therefore not-canon.
<div class="thumb tright" style="width:500px;">
<caption>[https://archive.org/details/the-cartoon-cartoon-punch Archive Link]</caption>
<youtube width="500" height="300">ldDawUFYqrM</youtube>
</div>
If one of these transformations appears in any official media, they will be moved.
The full list of characters Ben turns into is:
* [https://en.wikipedia.org/wiki/Jake_the_Dog Jake the Dog] ([https://en.wikipedia.org/wiki/Adventure_Time Adventure Time])
* Prohyas ([https://en.wikipedia.org/wiki/Mighty_Magiswords Mighty Magiswords])
* Robot Jones (Whatever Happened To Robot Jones?)
* Festro (Super Mountain Fort Awesome)
* Uncle Grandpa (Uncle Grandpa)
* Gumball Watterson (The Amazing World of Gumball)
* Mordecai (Regular Show)
* Double-D (Ed, Edd, and Eddy)
* Wirt (Over The Garden Wall)
* Moxy (The Moxy Show)
* Grizz (We Bare Bears)
* Jeff (Clarance)
* Grim (The Grim Adventure of Billy and Mandy)
* Chowder (Chowder)
* K’nuckles (The Misadventure of Flapjack)
* Monkey (Dial M for Monkey)
* Cow (Cow and Chicken)
* Johnny Bravo (Johnny Bravo)
* Buttercup (The Powerpuff Girls)
* Dexter (Dexter’s Laboratory)
* Finn the Human (Adventure Time)
{{-}}
==''Villainous Guide for a Successful Evil Conquest'' Transformations (Non-canon)==
placeholder
If one of these transformations appears in any official media, they will be moved.
[[File:PLACEHOLDER2.png|thumb|200px|gif of omnitrix dial + transformations]]
The full list of characters Vilgax turns into is:
* Instant Martian
* The Great Gazoo
* Zorak
* Dalek
* Black Hat Alien
{{-}}
==Gwen Transformations==
* Stinkfly
* Four Arms
{{-}}
==Max Transformations==
* Cannonbolt
{{-}}
==Billy Billions Transformations==
* Four Arms
{{-}}
==Alternate Ben Transformations==
* Heatblast (Ben 10,000)
* Four Arms (Ben 10,000)
* Buzzshock (Ben 10,000)
* Spidermonkey (Ben 10,000)
* Surge (Ben 10,000)
* Heatblast (Original Series Dimension)
* Big Chill (Alien Force Dimension)
* Chromastone (Alien Force Dimension)
* Bloxx (Omniverse Dimension)
* Ripjaws (Gwen 10 Dimension
* Alien X (Evil Ben Dimension)
72d024e1bca1cb9b59cffbc89903d7cf42a58a5c
Ben Tennyson (Disambiguation)
0
24
1626
1320
2021-04-24T01:06:18Z
Jaswacker
30585766
/* Future Versions of Ben Tennyson */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
File:Eon_UltimateAlien.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
</gallery></center>
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Character/Aliens#Argit 10|"Argit 10"]]
</gallery></center>
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
==Other==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
749a672e8221755664cf49e26e3563fbab1668ac
1627
1626
2021-04-24T01:07:07Z
Jaswacker
30585766
/* Future Versions of Ben Tennyson */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
</gallery>
<center><gallery widths="150px" heights="200px">
File:Eon_UltimateAlien.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
</gallery></center>
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Character/Aliens#Argit 10|"Argit 10"]]
</gallery></center>
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
==Other==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
8577a3fddd105f48d42bd086e95596188ad8ac1a
1628
1627
2021-04-24T01:07:20Z
Jaswacker
30585766
/* Future Versions of Ben Tennyson */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
</gallery>
<center><gallery widths="150px" heights="200px">
File:Eon_UltimateAlien.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
</gallery>
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Character/Aliens#Argit 10|"Argit 10"]]
</gallery></center>
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
==Other==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
0e02f64615b09a6877ddc1b05251b3fdd7f6f9bb
1629
1628
2021-04-24T01:14:46Z
Jaswacker
30585766
/* The Greater Multiverse */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
</gallery>
<center><gallery widths="150px" heights="200px">
File:Eon_UltimateAlien.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
</gallery>
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Character/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|Evil Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson ('Original Series' Dimension)]]|[[Ben Tennyson ('Original Series' Dimension)|One of the many Bens in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson ('Alien Force' Dimension)]]|[[Ben Tennyson ('Alien Force' Dimension)|One of the many Bens in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson ('Ultimate Alien' Dimension)]]|[[Ben Tennyson ('Ultimate Alien' Dimension)|One of the many Bens in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson ('Omniverse' Dimension)]]|[[Ben Tennyson ('Omniverse' Dimension)|One of the many Bens in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Maximillian's Dimension)]]|[[Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 12041.5)]]|[[Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
==Other==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
40274fa6c5f36b02759be101dcc61b4a13db67eb
1630
1629
2021-04-24T01:16:31Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
</gallery>
<center><gallery widths="150px" heights="200px">
File:Eon_UltimateAlien.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
</gallery></center>
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Character/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|Evil Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson ('Original Series' Dimension)]]|[[Ben Tennyson ('Original Series' Dimension)|One of the many Bens in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson ('Alien Force' Dimension)]]|[[Ben Tennyson ('Alien Force' Dimension)|One of the many Bens in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson ('Ultimate Alien' Dimension)]]|[[Ben Tennyson ('Ultimate Alien' Dimension)|One of the many Bens in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson ('Omniverse' Dimension)]]|[[Ben Tennyson ('Omniverse' Dimension)|One of the many Bens in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Maximillian's Dimension)]]|[[Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 12041.5)]]|[[Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
==Other==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
d7a0c5831d98ba967da720ef0f48b29a49a8b1ba
1631
1630
2021-04-24T01:17:36Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
File:Eon_UltimateAlien.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
</gallery></center>
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Character/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|Evil Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson ('Original Series' Dimension)]]|[[Ben Tennyson ('Original Series' Dimension)|One of the many Bens in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson ('Alien Force' Dimension)]]|[[Ben Tennyson ('Alien Force' Dimension)|One of the many Bens in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson ('Ultimate Alien' Dimension)]]|[[Ben Tennyson ('Ultimate Alien' Dimension)|One of the many Bens in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson ('Omniverse' Dimension)]]|[[Ben Tennyson ('Omniverse' Dimension)|One of the many Bens in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Maximillian's Dimension)]]|[[Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 12041.5)]]|[[Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
==Other==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
0ef977e7e88685bc8797945031ecb34043d6a032
1632
1631
2021-04-24T01:26:37Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
File:Eon_UltimateAlien.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
</gallery></center>
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Character/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|Evil Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|The ''Original Series'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|The ''Alien Force'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|The ''Ultimate Alien'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|The ''Omniverse'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Maximillian's Dimension)]]|[[Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 12041.5)]]|[[Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
==Other==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the Omnitrix-less version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Ben Tennyson (Goodbye and Good Riddance)]].
* To see Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Ben Tennyson (Hex Timeline)]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* To see Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
8b28c1e97822d798d078f0e70cd1ea1fbc8cb6e7
1633
1632
2021-04-24T01:44:12Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
File:Eon_UltimateAlien.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
</gallery></center>
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Characters/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|Evil Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|The ''Original Series'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|The ''Alien Force'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|The ''Ultimate Alien'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|The ''Omniverse'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Maximillian's Dimension)]]|[[Minor Characters/Humans#Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Dimension 12041.5)]]|[[Minor Characters/Humans#Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
==Other==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the Omnitrix-less version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
857524db1b195fe738fcbae71eb61d262ff01fe3
1635
1633
2021-04-24T01:58:01Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
</gallery></center>
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Characters/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|Evil Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|The ''Original Series'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|The ''Alien Force'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|The ''Ultimate Alien'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|The ''Omniverse'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Maximillian's Dimension)]]|[[Minor Characters/Humans#Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Dimension 12041.5)]]|[[Minor Characters/Humans#Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
==Other==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the Omnitrix-less version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
8bbee79ad2d1bab9f2291e5bdda168c9119df305
1637
1635
2021-04-24T04:09:17Z
Jaswacker
30585766
/* Other */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
</gallery></center>
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Characters/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|Evil Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|The ''Original Series'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|The ''Alien Force'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|The ''Ultimate Alien'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|The ''Omniverse'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Maximillian's Dimension)]]|[[Minor Characters/Humans#Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Dimension 12041.5)]]|[[Minor Characters/Humans#Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
==Other==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
78a92beb2759b24149916ef251a9863bf6c3f4e3
1641
1637
2021-04-25T00:08:25Z
Jaswacker
30585766
/* Future Versions of Ben Tennyson */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
</gallery></center>
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Characters/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|Evil Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|The ''Original Series'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|The ''Alien Force'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|The ''Ultimate Alien'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|The ''Omniverse'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Maximillian's Dimension)]]|[[Minor Characters/Humans#Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Dimension 12041.5)]]|[[Minor Characters/Humans#Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
==Other==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
b5ef6944bb586b7c75c8f060fab14f52c0cc6cb9
1644
1641
2021-04-25T00:44:55Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|Evil Ben from ''Alien X-Tinction'']]
</gallery></center>
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Characters/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|The ''Original Series'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|The ''Alien Force'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|The ''Ultimate Alien'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|The ''Omniverse'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Maximillian's Dimension)]]|[[Minor Characters/Humans#Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Dimension 12041.5)]]|[[Minor Characters/Humans#Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
==Other==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
1e1d0c8f1c4555c4a30e793265768fe2ed6bbd32
1645
1644
2021-04-25T02:07:58Z
Jaswacker
30585766
/* Other */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|Evil Ben from ''Alien X-Tinction'']]
</gallery></center>
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Characters/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|The ''Original Series'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|The ''Alien Force'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|The ''Ultimate Alien'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|The ''Omniverse'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Maximillian's Dimension)]]|[[Minor Characters/Humans#Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Dimension 12041.5)]]|[[Minor Characters/Humans#Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
==Other==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In [[Ben 10,000 Returns]], [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
5a3837befc917d461c3f77841c54bde9d795d3d1
1646
1645
2021-04-25T02:09:38Z
Jaswacker
30585766
/* Other */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|Evil Ben from ''Alien X-Tinction'']]
</gallery></center>
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Characters/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|The ''Original Series'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|The ''Alien Force'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|The ''Ultimate Alien'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|The ''Omniverse'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Maximillian's Dimension)]]|[[Minor Characters/Humans#Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Dimension 12041.5)]]|[[Minor Characters/Humans#Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|''Alien Swarm'']]
</gallery></center>
==Other==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
0728a42e14c658ae4bcf7ffab0e12d8f747fe88a
1647
1646
2021-04-25T02:23:37Z
Jaswacker
30585766
/* Live Action */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|Evil Ben from ''Alien X-Tinction'']]
</gallery></center>
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Characters/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|The ''Original Series'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|The ''Alien Force'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|The ''Ultimate Alien'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|The ''Omniverse'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Maximillian's Dimension)]]|[[Minor Characters/Humans#Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Dimension 12041.5)]]|[[Minor Characters/Humans#Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'']]
</gallery></center>
==Other==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
c0971fae79dc01f19ec700b80cddd33d573417d1
Omnitrix (Disambiguation)
0
303
1634
1324
2021-04-24T01:51:55Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth]] of the [[Galvan]], in an effort to make peace among varying species. The original found its way onto the wrist of then 10-year-old [[Ben Tennyson]], who would go then use he device to save the world, universe, and multiverse, many times over. Throughout the greater multiverse, many versions of the Omnitrix have been seen.
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:af trix.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:10kreturnstrix.png|link=[[Ultimatrix]]|[[Ben 10,000 (Ultimate Alien|Ben 10,000]]'s Ultimatrix that turns him into [[Ultimate Ben]]
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biotrix2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:stabilizergif.gif|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:Omnitrix-reboot.gif|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Reboot Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix in the ''Reboot''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Dimension 12041.5)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Maximillian's Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Original Series Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Alien Force Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Ultimatrix of [[Ben Tennyson (Ultimate Alien Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Gwen Tennyson (Alien X-Tinction)|Gwen 10]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Omniverse Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]''.
</gallery></center>
36f045054db009d04a0ab261dab4ee0169a2d493
1657
1634
2021-06-25T16:00:12Z
88.230.162.99
0
/* Ben 10: Alien Force */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth]] of the [[Galvan]], in an effort to make peace among varying species. The original found its way onto the wrist of then 10-year-old [[Ben Tennyson]], who would go then use he device to save the world, universe, and multiverse, many times over. Throughout the greater multiverse, many versions of the Omnitrix have been seen.
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:af trix.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:10kreturnstrix.png|link=[[Ultimatrix]]|[[Ben 10,000 (Ultimate Alien|Ben 10,000]]'s Ultimatrix that turns him into [[Ultimate Ben]]
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biotrix2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:stabilizergif.gif|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:Omnitrix-reboot.gif|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Reboot Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix in the ''Reboot''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Dimension 12041.5)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Maximillian's Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Original Series Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Alien Force Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Ultimatrix of [[Ben Tennyson (Ultimate Alien Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Gwen Tennyson (Alien X-Tinction)|Gwen 10]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Omniverse Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]''.
</gallery></center>
7d142d65892f1716b2e5a6a0d2715d437f0ce29e
File:Uaeon.png
6
452
1636
2021-04-24T01:58:15Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:10kov.png
6
453
1638
2021-04-25T00:07:25Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Ultben.png
6
454
1639
2021-04-25T00:07:45Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Os10k.png
6
455
1640
2021-04-25T00:08:06Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Benx.png
6
456
1642
2021-04-25T00:24:32Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Benx2.png
6
457
1643
2021-04-25T00:44:30Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Cannonbolt (Prime)
0
153
1648
1379
2021-04-25T02:43:18Z
Jaswacker
30585766
wikitext
text/x-wiki
{{stub}}
{{Chargallery}}
<noinclude>[[Category:Transformations]]</noinclude>
bd9b9bde8b4a2a7ab43cada0bfc9c87488b0aaae
Heatblast (Prime)
0
149
1649
1001
2021-04-25T02:43:32Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{stub}}
{{charbox
|image={{tabs|{{tab2|OV|PLACEHOLDER2.png}}{{tab2|UA|PLACEHOLDER2.png}}{{tab2|OS|PLACEHOLDER2.png}}}}
|nickname=test
|species=[[Pyronite (Prime)|Pyronite]]
|homeworld=[[Pyros (Prime)|Pyros]]
|affiliations=test
|equipment=[[Omnitrix]]
|first=test
|last=test
}}
Placeholder, general bio/description of Heatblast.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Steve Blum]] (English)|[[Taketora]] (Japanese)}}
Entire history of Heatblast in the Original Series. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Liron Lev]] (Hebrew)}}
Entire history of Heatblast in UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[David Kaye]] (English)|[[Liron Lev]] (Hebrew)}}
Entire history of Heatblast in OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== TOYLINE ===
[[File:PLACEHOLDER2.png|thumb|250px|CAPTION]]
*'''TOYNAME''' (WAVE, YEAR)
: TOY DESC
{{quote|''TOYBIO''}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Transformations]]</noinclude>
29accb76f6345fb16a5df22738649bdf808cbf57
1650
1649
2021-04-25T02:43:50Z
Jaswacker
30585766
wikitext
text/x-wiki
{{stub}}
{{trix|ogs|alf|ula|onv}}
{{charbox
|image={{tabs|{{tab2|OV|PLACEHOLDER2.png}}{{tab2|UA|PLACEHOLDER2.png}}{{tab2|OS|PLACEHOLDER2.png}}}}
|nickname=test
|species=[[Pyronite (Prime)|Pyronite]]
|homeworld=[[Pyros (Prime)|Pyros]]
|affiliations=test
|equipment=[[Omnitrix]]
|first=test
|last=test
}}
Placeholder, general bio/description of Heatblast.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Steve Blum]] (English)|[[Taketora]] (Japanese)}}
Entire history of Heatblast in the Original Series. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Liron Lev]] (Hebrew)}}
Entire history of Heatblast in UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[David Kaye]] (English)|[[Liron Lev]] (Hebrew)}}
Entire history of Heatblast in OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== TOYLINE ===
[[File:PLACEHOLDER2.png|thumb|250px|CAPTION]]
*'''TOYNAME''' (WAVE, YEAR)
: TOY DESC
{{quote|''TOYBIO''}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Transformations]]</noinclude>
a85937f7505c9f43338ab2e4f0e8cc3dc9c7b35d
Ben Tennyson (Prime)
0
93
1651
1059
2021-04-25T02:44:26Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{stub}}
{{charbox
|image={{tabs|{{tab2|OV|PLACEHOLDER2.png}}{{tab2|AF|PLACEHOLDER2.png}}{{tab2|OS|PLACEHOLDER2.png}}}}
|fullname=Benjamin Kirby Tennyson
|nickname=Ben
|alias=test
|species=Human
|homeworld=Earth
|residence=Bellwood
|affiliations=test
|relationships=test
|equipment=test
|status=Alive
|first=test
|last=test
}}
placeholder!!
ef612bd8e6cceb79572f143c2a690871064fc187
1655
1651
2021-04-25T03:15:21Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{stub}}
{{charbox
|image={{tabs|{{tab2|OV|tempovben.png}}{{tab2|AF|modelben.png}}{{tab2|OS|osben.png}}}}
|fullname=Benjamin Kirby Tennyson
|nickname=Ben
|alias=test
|species=Human
|homeworld=Earth
|residence=Bellwood
|affiliations=test
|relationships=test
|equipment=test
|status=Alive
|first=test
|last=test
}}
placeholder!!
aac5dfd6732d82ed22b34a7fa964531c65caca98
File:Osben.png
6
458
1652
2021-04-25T03:14:23Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Tempovben.png
6
459
1653
2021-04-25T03:14:34Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Modelben.png
6
460
1654
2021-04-25T03:14:45Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Omnitober
0
461
1656
2021-04-26T22:15:07Z
Jaswacker
30585766
Created page with "<iframe src="https://null.perchance.org/omnitober"></iframe>"
wikitext
text/x-wiki
<iframe src="https://null.perchance.org/omnitober"></iframe>
c966c47ee313f89bf2296ba44e428c28c2221d36
Omnitrix (Reboot)
0
423
1658
1556
2021-06-25T17:02:44Z
5.173.202.25
0
wikitext
text/x-wiki
{{itembox
|image=
{{tabs|{{tab2|Season 4|reboottrix3.png}}{{tab2|Season 3|reboottrix2.png}}{{tab2|Season 2|reboottrix1.png}}{{tab2|Season 1|OmnitrixReboot 1.png}}}}
|name= Omnitrix
|nickname= {{Scroll|h = 80px|
* placeholder <ref>placeholder</ref>
* placeholder
* placeholder
* placeholder
}}
|alias= placeholder <ref>placeholder</ref>
|level= [[Technology Levels#Level_20|20]]
|function= DNA Alterer
|creator= [[Azmuth (Reboot)]]
|user= [[Ben Tennyson (Reboot)]]
|status= Active
|first= [[Waterfilter]]
|last= [[Alien X-Tinction]]
}}
7b5ab0869569100d99fadadd904c82318c5904f6
Fandom
0
237
1659
1216
2021-06-26T09:45:09Z
Carth
30634784
/* Ben 10: Lost and Found */
wikitext
text/x-wiki
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Roxy, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Ben10toys.net (2006-2018) ===
Hosted on a service called Ning, the forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally run by a user named Agent Spectre, and later given to toy reviewer Stu Carter of Atamaii.com, who maintained the site until sometime in 2018.
<center><gallery widths="110px" heights="110px">
File:Toysdotnet_2006.png| Ben10toys.net circa 2006.
File:Toysdotnet_2010_banner.png| The site's banner circa 2010.
File:Toysdotnet_Final.png| Ben10toys.net in its final years.
</gallery></center>
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
4297a375076a1472079fe291ab0655d727b44db2
Fandom
0
237
1660
1659
2021-06-26T09:50:04Z
Carth
30634784
/* Defunct Sites */
wikitext
text/x-wiki
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Roxy, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Heatblast.net (2006-2008?) ===
One of the earliest fansites, having originated in 2006 but ceasing to exist around a month before Alien Force premiered.
=== Ben10toys.net (2006-2018) ===
Hosted on a service called Ning, the forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally run by a user named Agent Spectre, and later given to toy reviewer Stu Carter of Atamaii.com, who maintained the site until sometime in 2018.
<center><gallery widths="110px" heights="110px">
File:Toysdotnet_2006.png| Ben10toys.net circa 2006.
File:Toysdotnet_2010_banner.png| The site's banner circa 2010.
File:Toysdotnet_Final.png| Ben10toys.net in its final years.
</gallery></center>
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
04e199a6aa400d440bd2f73ed6be3261a8a8863a
Games
0
198
1663
1550
2021-08-23T19:18:15Z
Carth
30634784
/* Flash Games */
wikitext
text/x-wiki
There have been many video games throughout the Ben 10 franchise, this is a directory for those games.
== Console Games ==
These are the main console games.
=== Original Continuity ===
<center><gallery widths="250px" heights="300px">
File:VG Ben10Hyperscan.png|[[Ben 10 (Mattel HyperScan)|Ben 10]] <small>('''2006''' - Mattel HyperScan)</small>
File:VG Ben10PoE.png |[[Ben 10: Protector of Earth/Console|Ben 10: Protector of Earth]] <small>('''2007''' - PS2, PSP, Wii)</small>
File:VG AlienForce.png |[[Ben 10: Alien Force - The Game]] <small>('''2008''' - PS2, PSP, Wii)</small>
File:VG VilgaxAttacks.png |[[Ben 10: Alien Force - Vilgax Attacks]] <small>('''2009''' - PS2, PSP, Wii, X360)</small>
File:VG RiseOfHex.png |[[Ben 10: Alien Force - The Rise of Hex]] <small>('''2010''' - WiiWare, XBOX Live Arcade)</small>
File:VG CosmicDestruction.png |[[Ben 10: Ultimate Alien - Cosmic Destruction]] <small>('''2010''' - PS3, PS2, PSP, Wii, X360)</small>
File:VG GalacticRacing.png |[[Ben 10: Galactic Racing]] <small>('''2011''' - PS3, PS Vita, Wii, 3DS)</small>
File:VG OV1.png |[[Ben 10: Omniverse (Game)|Ben 10: Omniverse]] <small>('''2012''' - PS3, Wii, Wii U, X360)</small>
File:VG OV2.png |[[Ben 10: Omniverse 2]] <small>('''2013''' - PS3, Wii, Wii U, X360)</small>
</gallery></center>
=== Reboot Continuity ===
<center><gallery widths="250px" heights="300px">
File:VG RB1.png |[[Ben 10 (Reboot Game)|Ben 10]] <small>('''2017''' - PS4, Switch, XBONE)</small>
File:VG RB2.png |[[Ben 10: Power Trip]] <small>('''2020''' - Steam, PS4, Switch, XBONE)</small>
</gallery></center>
== Handheld Games ==
The handheld games are often downgraded ports of the original console games, sometimes with different stories and different playable characters.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben 10: Protector of Earth/Handheld|Ben 10: Protector of Earth]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - The Game (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - Vilgax Attacks (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Triple Pack (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Ultimate Alien - Cosmic Destruction (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Galactic Racing (DS/3DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse (DS)|Ben 10: Omniverse]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse 2 (3DS)]]
</gallery></center>
== Mobile Games ==
Games you can play on a phone.
== Web Games ==
Games that you used to be able to play on various Cartoon Network websites, but due to the ongoing depreciation of older plugins, a lot of these games can't be played anymore... except on [https://bluemaxima.org/flashpoint/ BlueMaxima's Flashpoint] program.
6042c0fd610747365b079c495b49a58b996d8612
1664
1663
2021-08-23T19:18:40Z
Carth
30634784
/* Console Games */
wikitext
text/x-wiki
There have been many video games throughout the Ben 10 franchise, this is a directory for those games.
== Console Games ==
These are the main console games! Their canonicity is dubious sometimes!
=== Original Continuity ===
<center><gallery widths="250px" heights="300px">
File:VG Ben10Hyperscan.png|[[Ben 10 (Mattel HyperScan)|Ben 10]] <small>('''2006''' - Mattel HyperScan)</small>
File:VG Ben10PoE.png |[[Ben 10: Protector of Earth/Console|Ben 10: Protector of Earth]] <small>('''2007''' - PS2, PSP, Wii)</small>
File:VG AlienForce.png |[[Ben 10: Alien Force - The Game]] <small>('''2008''' - PS2, PSP, Wii)</small>
File:VG VilgaxAttacks.png |[[Ben 10: Alien Force - Vilgax Attacks]] <small>('''2009''' - PS2, PSP, Wii, X360)</small>
File:VG RiseOfHex.png |[[Ben 10: Alien Force - The Rise of Hex]] <small>('''2010''' - WiiWare, XBOX Live Arcade)</small>
File:VG CosmicDestruction.png |[[Ben 10: Ultimate Alien - Cosmic Destruction]] <small>('''2010''' - PS3, PS2, PSP, Wii, X360)</small>
File:VG GalacticRacing.png |[[Ben 10: Galactic Racing]] <small>('''2011''' - PS3, PS Vita, Wii, 3DS)</small>
File:VG OV1.png |[[Ben 10: Omniverse (Game)|Ben 10: Omniverse]] <small>('''2012''' - PS3, Wii, Wii U, X360)</small>
File:VG OV2.png |[[Ben 10: Omniverse 2]] <small>('''2013''' - PS3, Wii, Wii U, X360)</small>
</gallery></center>
=== Reboot Continuity ===
<center><gallery widths="250px" heights="300px">
File:VG RB1.png |[[Ben 10 (Reboot Game)|Ben 10]] <small>('''2017''' - PS4, Switch, XBONE)</small>
File:VG RB2.png |[[Ben 10: Power Trip]] <small>('''2020''' - Steam, PS4, Switch, XBONE)</small>
</gallery></center>
== Handheld Games ==
The handheld games are often downgraded ports of the original console games, sometimes with different stories and different playable characters.
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben 10: Protector of Earth/Handheld|Ben 10: Protector of Earth]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - The Game (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - Vilgax Attacks (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Triple Pack (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Ultimate Alien - Cosmic Destruction (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Galactic Racing (DS/3DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse (DS)|Ben 10: Omniverse]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse 2 (3DS)]]
</gallery></center>
== Mobile Games ==
Games you can play on a phone.
== Web Games ==
Games that you used to be able to play on various Cartoon Network websites, but due to the ongoing depreciation of older plugins, a lot of these games can't be played anymore... except on [https://bluemaxima.org/flashpoint/ BlueMaxima's Flashpoint] program.
1e780debfae40cae64ab5c0693d1a99e57129bd3
1665
1664
2021-08-23T19:19:08Z
Carth
30634784
/* Handheld Games */
wikitext
text/x-wiki
There have been many video games throughout the Ben 10 franchise, this is a directory for those games.
== Console Games ==
These are the main console games! Their canonicity is dubious sometimes!
=== Original Continuity ===
<center><gallery widths="250px" heights="300px">
File:VG Ben10Hyperscan.png|[[Ben 10 (Mattel HyperScan)|Ben 10]] <small>('''2006''' - Mattel HyperScan)</small>
File:VG Ben10PoE.png |[[Ben 10: Protector of Earth/Console|Ben 10: Protector of Earth]] <small>('''2007''' - PS2, PSP, Wii)</small>
File:VG AlienForce.png |[[Ben 10: Alien Force - The Game]] <small>('''2008''' - PS2, PSP, Wii)</small>
File:VG VilgaxAttacks.png |[[Ben 10: Alien Force - Vilgax Attacks]] <small>('''2009''' - PS2, PSP, Wii, X360)</small>
File:VG RiseOfHex.png |[[Ben 10: Alien Force - The Rise of Hex]] <small>('''2010''' - WiiWare, XBOX Live Arcade)</small>
File:VG CosmicDestruction.png |[[Ben 10: Ultimate Alien - Cosmic Destruction]] <small>('''2010''' - PS3, PS2, PSP, Wii, X360)</small>
File:VG GalacticRacing.png |[[Ben 10: Galactic Racing]] <small>('''2011''' - PS3, PS Vita, Wii, 3DS)</small>
File:VG OV1.png |[[Ben 10: Omniverse (Game)|Ben 10: Omniverse]] <small>('''2012''' - PS3, Wii, Wii U, X360)</small>
File:VG OV2.png |[[Ben 10: Omniverse 2]] <small>('''2013''' - PS3, Wii, Wii U, X360)</small>
</gallery></center>
=== Reboot Continuity ===
<center><gallery widths="250px" heights="300px">
File:VG RB1.png |[[Ben 10 (Reboot Game)|Ben 10]] <small>('''2017''' - PS4, Switch, XBONE)</small>
File:VG RB2.png |[[Ben 10: Power Trip]] <small>('''2020''' - Steam, PS4, Switch, XBONE)</small>
</gallery></center>
== Handheld Games ==
The handheld games are often downgraded ports of the original console games, sometimes with different stories and different playable characters. One of them is technically canon!
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben 10: Protector of Earth/Handheld|Ben 10: Protector of Earth]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - The Game (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - Vilgax Attacks (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Triple Pack (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Ultimate Alien - Cosmic Destruction (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Galactic Racing (DS/3DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse (DS)|Ben 10: Omniverse]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse 2 (3DS)]]
</gallery></center>
== Mobile Games ==
Games you can play on a phone.
== Web Games ==
Games that you used to be able to play on various Cartoon Network websites, but due to the ongoing depreciation of older plugins, a lot of these games can't be played anymore... except on [https://bluemaxima.org/flashpoint/ BlueMaxima's Flashpoint] program.
e595a8c6fa3dd95faa98f23864723993dc295419
1666
1665
2021-08-23T19:19:34Z
Carth
30634784
/* Mobile Games */
wikitext
text/x-wiki
There have been many video games throughout the Ben 10 franchise, this is a directory for those games.
== Console Games ==
These are the main console games! Their canonicity is dubious sometimes!
=== Original Continuity ===
<center><gallery widths="250px" heights="300px">
File:VG Ben10Hyperscan.png|[[Ben 10 (Mattel HyperScan)|Ben 10]] <small>('''2006''' - Mattel HyperScan)</small>
File:VG Ben10PoE.png |[[Ben 10: Protector of Earth/Console|Ben 10: Protector of Earth]] <small>('''2007''' - PS2, PSP, Wii)</small>
File:VG AlienForce.png |[[Ben 10: Alien Force - The Game]] <small>('''2008''' - PS2, PSP, Wii)</small>
File:VG VilgaxAttacks.png |[[Ben 10: Alien Force - Vilgax Attacks]] <small>('''2009''' - PS2, PSP, Wii, X360)</small>
File:VG RiseOfHex.png |[[Ben 10: Alien Force - The Rise of Hex]] <small>('''2010''' - WiiWare, XBOX Live Arcade)</small>
File:VG CosmicDestruction.png |[[Ben 10: Ultimate Alien - Cosmic Destruction]] <small>('''2010''' - PS3, PS2, PSP, Wii, X360)</small>
File:VG GalacticRacing.png |[[Ben 10: Galactic Racing]] <small>('''2011''' - PS3, PS Vita, Wii, 3DS)</small>
File:VG OV1.png |[[Ben 10: Omniverse (Game)|Ben 10: Omniverse]] <small>('''2012''' - PS3, Wii, Wii U, X360)</small>
File:VG OV2.png |[[Ben 10: Omniverse 2]] <small>('''2013''' - PS3, Wii, Wii U, X360)</small>
</gallery></center>
=== Reboot Continuity ===
<center><gallery widths="250px" heights="300px">
File:VG RB1.png |[[Ben 10 (Reboot Game)|Ben 10]] <small>('''2017''' - PS4, Switch, XBONE)</small>
File:VG RB2.png |[[Ben 10: Power Trip]] <small>('''2020''' - Steam, PS4, Switch, XBONE)</small>
</gallery></center>
== Handheld Games ==
The handheld games are often downgraded ports of the original console games, sometimes with different stories and different playable characters. One of them is technically canon!
<center><gallery widths="250px" heights="300px">
File:PLACEHOLDER2.png|[[Ben 10: Protector of Earth/Handheld|Ben 10: Protector of Earth]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - The Game (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Alien Force - Vilgax Attacks (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Triple Pack (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Ultimate Alien - Cosmic Destruction (DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Galactic Racing (DS/3DS)]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse (DS)|Ben 10: Omniverse]]
File:PLACEHOLDER2.png|[[Ben 10: Omniverse 2 (3DS)]]
</gallery></center>
== Mobile Games ==
Games you can play on a phone, though most of these probably don't work anymore.
== Web Games ==
Games that you used to be able to play on various Cartoon Network websites, but due to the ongoing depreciation of older plugins, a lot of these games can't be played anymore... except on [https://bluemaxima.org/flashpoint/ BlueMaxima's Flashpoint] program.
1f4c6a8de6701f7c83d25e4793396740bfc8e8eb
User:Roxalotl
2
462
1667
2021-08-23T19:38:38Z
Roxalotl
30644625
Created page with "Hi there! Name's Roxy <3"
wikitext
text/x-wiki
Hi there! Name's Roxy <3
756d5d3bad47bda2a115c51f716718e5a9ee3abd
Main Page/series
0
60
1668
1476
2021-08-26T02:54:12Z
Roxalotl
30644625
wikitext
text/x-wiki
<div align="center">
{|cellpadding="5" cellspacing="0" width="100%"
|colspan="2" style="border-bottom:1px solid #ffffff" align="center" valign="top"|
|-
|style="border-bottom:1px solid #ffffff; border-left:1px solid #ffffff" align="center" valign="top" width="50%"|
[[File:originalserieslogo.png|100px|link=Ben 10 (2005)]]<br>
'''''[[Ben 10 (2005)]]'''''
|style="border-bottom:1px solid #ffffff;" align="center" valign="top" width="50%"|
[[File:alienforcelogo.png|100px|link=Ben 10: Alien Force]]<br>
'''''[[Ben 10: Alien Force]]''''''
|-
|style="border-bottom:1px solid #ffffff; border-left:1px solid #ffffff" align="center" valign="top" width="50%"|
[[File:ultimatealienlogo.png|100px|link=Ben 10: Ultimate Alien]]<br>
'''''[[Ben 10: Ultimate Alien]]'''''<br>
|style="border-bottom:1px solid #ffffff;" align="center" valign="top" width="50%"|
[[File:omniverselogo.png|100px|link=Ben 10: Omniverse]]<br>
'''''[[Ben 10: Omniverse]]'''''
|-
|style="border-bottom:1px solid #ffffff; border-left:1px solid #ffffff" align="center" valign="top" width="50%"|
[[File:rebootlogo.png|100px|link=Ben 10 (Reboot)]]<br>
'''''[[Ben 10 (2016)]]'''''<br>
|style="border-bottom:1px solid #ffffff;" align="center" valign="top" width="50%"|
[[File:upcomingplacehold.png|100px|link=Ben 10 (Upcoming Series)]]<br>
'''''[[Ben 10 (Upcoming Series)]]'''''
|}</div>
21ae710489b32cfa7919362f9938b8d15844476d
1670
1668
2021-08-26T02:55:07Z
Roxalotl
30644625
wikitext
text/x-wiki
<div align="center">
{|cellpadding="5" cellspacing="0" width="100%"
|colspan="2" style="border-bottom:1px solid #ffffff" align="center" valign="top"|
|-
|style="border-bottom:1px solid #ffffff; border-left:1px solid #ffffff" align="center" valign="top" width="50%"|
[[File:originalserieslogo.png|100px|link=Ben 10 (2005)]]<br>
'''''[[Ben 10 (2005)]]'''''
|style="border-bottom:1px solid #ffffff;" align="center" valign="top" width="50%"|
[[File:alienforcelogo.png|100px|link=Ben 10: Alien Force]]<br>
'''''[[Ben 10: Alien Force]]''''''
|-
|style="border-bottom:1px solid #ffffff; border-left:1px solid #ffffff" align="center" valign="top" width="50%"|
[[File:ultimatealienlogo.png|100px|link=Ben 10: Ultimate Alien]]<br>
'''''[[Ben 10: Ultimate Alien]]'''''<br>
|style="border-bottom:1px solid #ffffff;" align="center" valign="top" width="50%"|
[[File:omniverselogo.png|100px|link=Ben 10: Omniverse]]<br>
'''''[[Ben 10: Omniverse]]'''''
|-
|style="border-bottom:1px solid #ffffff; border-left:1px solid #ffffff" align="center" valign="top" width="50%"|
[[File:rebootlogo.png|100px|link=Ben 10 (Reboot)]]<br>
'''''[[Ben 10 (2016)]]'''''<br>
|style="border-bottom:1px solid #ffffff;" align="center" valign="top" width="50%"|
[[File:Upcomingplacehold.png|100px|link=Ben 10 (Upcoming Series)]]<br>
'''''[[Ben 10 (Upcoming Series)]]'''''
|}</div>
daf41bdb2b4d16e0c1e3d8ee19fe9e541c9767af
File:Upcomingplacehold.png
6
463
1669
2021-08-26T02:54:31Z
Roxalotl
30644625
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Omnitrix (Disambiguation)
0
303
1673
1657
2021-09-05T09:02:30Z
Roxalotl
30644625
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth]] of the [[Galvan]], in an effort to make peace among varying species. The original found its way onto the wrist of then 10-year-old [[Ben Tennyson]], who would go then use he device to save the world, universe, and multiverse, many times over. Throughout the greater multiverse, many versions of the Omnitrix have been seen.
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:af trix.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:10kreturnstrix.png|link=[[Ultimatrix]]|[[Ben 10,000 (Ultimate Alien|Ben 10,000]]'s Ultimatrix that turns him into [[Ultimate Ben]]
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biotrix2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:stabilizergif.gif|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:Omnitrix-reboot.gif|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Reboot Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix in the ''Reboot''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Dimension 12041.5)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Maximillian's Dimension)]] in ''[[Alien X-Tinction]]''.
File:axt-os.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Original Series Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Alien Force Dimension)]] in ''[[Alien X-Tinction]]''.
File:axt-ua.png|link=[[sandbox]]|The Ultimatrix of [[Ben Tennyson (Ultimate Alien Dimension)]] in ''[[Alien X-Tinction]]''.
File:axt-g.png|link=[[sandbox]]|The Omnitrix of [[Gwen Tennyson (Alien X-Tinction)|Gwen 10]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Omniverse Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]''.
</gallery></center>
8022ec3b7a035db4f05ba74a32b24679e002ae44
1677
1673
2021-09-05T09:04:57Z
Roxalotl
30644625
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth]] of the [[Galvan]], in an effort to make peace among varying species. The original found its way onto the wrist of then 10-year-old [[Ben Tennyson]], who would go then use he device to save the world, universe, and multiverse, many times over. Throughout the greater multiverse, many versions of the Omnitrix have been seen.
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:af trix.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:10kreturnstrix.png|link=[[Ultimatrix]]|[[Ben 10,000 (Ultimate Alien|Ben 10,000]]'s Ultimatrix that turns him into [[Ultimate Ben]]
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biotrix2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:stabilizergif.gif|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:Omnitrix-reboot.gif|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Reboot Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix in the ''Reboot''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Dimension 12041.5)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Maximillian's Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-os.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Original Series Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Alien Force Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-ua.png|link=[[sandbox]]|The Ultimatrix of [[Ben Tennyson (Ultimate Alien Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-g.png|link=[[sandbox]]|The Omnitrix of [[Gwen Tennyson (Alien X-Tinction)|Gwen 10]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Omniverse Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]''.
</gallery></center>
5c0c42de55f1c7b6ae585920bb2ee279b07024e0
1678
1677
2021-09-05T09:22:41Z
Roxalotl
30644625
/* Ben 10 (2016) */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth]] of the [[Galvan]], in an effort to make peace among varying species. The original found its way onto the wrist of then 10-year-old [[Ben Tennyson]], who would go then use he device to save the world, universe, and multiverse, many times over. Throughout the greater multiverse, many versions of the Omnitrix have been seen.
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:af trix.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:10kreturnstrix.png|link=[[Ultimatrix]]|[[Ben 10,000 (Ultimate Alien|Ben 10,000]]'s Ultimatrix that turns him into [[Ultimate Ben]]
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biotrix2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:stabilizergif.gif|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:Omnitrix-reboot.gif|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Reboot Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix in the ''Reboot''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Dimension 12041.5)]] in ''[[Alien X-Tinction]]''.
File:Axt-ov1.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Maximillian's Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-os.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Original Series Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Alien Force Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-ua.png|link=[[sandbox]]|The Ultimatrix of [[Ben Tennyson (Ultimate Alien Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-g.png|link=[[sandbox]]|The Omnitrix of [[Gwen Tennyson (Alien X-Tinction)|Gwen 10]] in ''[[Alien X-Tinction]]''.
File:Axt-ov2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Omniverse Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]''.
</gallery></center>
835de9b895ce21aa349536a561e5cb5d7be092c7
1682
1678
2021-09-05T09:25:46Z
Roxalotl
30644625
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth]] of the [[Galvan]], in an effort to make peace among varying species. The original found its way onto the wrist of then 10-year-old [[Ben Tennyson]], who would go then use he device to save the world, universe, and multiverse, many times over. Throughout the greater multiverse, many versions of the Omnitrix have been seen.
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:af trix.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:10kreturnstrix.png|link=[[Ultimatrix]]|[[Ben 10,000 (Ultimate Alien|Ben 10,000]]'s Ultimatrix that turns him into [[Ultimate Ben]]
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biotrix2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:stabilizergif.gif|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:Omnitrix-reboot.gif|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Reboot Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix in the ''Reboot''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Dimension 12041.5)]] in ''[[Alien X-Tinction]]''.
File:axt-ov1.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Maximillian's Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-os.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Original Series Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Alien Force Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-ua.png|link=[[sandbox]]|The Ultimatrix of [[Ben Tennyson (Ultimate Alien Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-g.png|link=[[sandbox]]|The Omnitrix of [[Gwen Tennyson (Alien X-Tinction)|Gwen 10]] in ''[[Alien X-Tinction]]''.
File:axt-ov2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Omniverse Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]''.
</gallery></center>
4724c9c8493a2db2db55275b835b5ea2b8121c6d
1688
1682
2021-09-05T09:32:58Z
Roxalotl
30644625
/* Ben 10 (2016) */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth]] of the [[Galvan]], in an effort to make peace among varying species. The original found its way onto the wrist of then 10-year-old [[Ben Tennyson]], who would go then use he device to save the world, universe, and multiverse, many times over. Throughout the greater multiverse, many versions of the Omnitrix have been seen.
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:af trix.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:10kreturnstrix.png|link=[[Ultimatrix]]|[[Ben 10,000 (Ultimate Alien|Ben 10,000]]'s Ultimatrix that turns him into [[Ultimate Ben]]
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biotrix2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:stabilizergif.gif|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:Omnitrix-reboot.gif|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Reboot Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix in the ''Reboot''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Dimension 12041.5)]] in ''[[Alien X-Tinction]]''.
File:axt-ov1.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Maximillian's Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-os.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Original Series Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Alien Force Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-ua.png|link=[[sandbox]]|The Ultimatrix of [[Ben Tennyson (Ultimate Alien Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-g.png|link=[[sandbox]]|The Omnitrix of [[Gwen Tennyson (Alien X-Tinction)|Gwen 10]] in ''[[Alien X-Tinction]]''.
File:axt-ov.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Omniverse Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]''.
</gallery></center>
9e2d8b431257aeaeab5e253a3b806f16659a5cf7
1690
1688
2021-09-05T09:34:08Z
Roxalotl
30644625
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth]] of the [[Galvan]], in an effort to make peace among varying species. The original found its way onto the wrist of then 10-year-old [[Ben Tennyson]], who would go then use he device to save the world, universe, and multiverse, many times over. Throughout the greater multiverse, many versions of the Omnitrix have been seen.
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:af trix.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:10kreturnstrix.png|link=[[Ultimatrix]]|[[Ben 10,000 (Ultimate Alien|Ben 10,000]]'s Ultimatrix that turns him into [[Ultimate Ben]]
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biotrix2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:stabilizergif.gif|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:Omnitrix-reboot.gif|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Reboot Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix in the ''Reboot''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Dimension 12041.5)]] in ''[[Alien X-Tinction]]''.
File:axt-ov1.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Maximillian's Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-os.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Original Series Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Alien Force Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-ua.png|link=[[sandbox]]|The Ultimatrix of [[Ben Tennyson (Ultimate Alien Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-g.png|link=[[sandbox]]|The Omnitrix of [[Gwen Tennyson (Alien X-Tinction)|Gwen 10]] in ''[[Alien X-Tinction]]''.
File:Axt-ov.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Omniverse Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]''.
</gallery></center>
7ffabc016405fbe85e566fef1eb9125ed673c307
File:Axt-g.png
6
465
1674
2021-09-05T09:03:21Z
Roxalotl
30644625
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
1683
1674
2021-09-05T09:29:32Z
Roxalotl
30644625
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
File:Axt-os.png
6
466
1675
2021-09-05T09:03:56Z
Roxalotl
30644625
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
1684
1675
2021-09-05T09:29:49Z
Roxalotl
30644625
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
File:Axt-ua.png
6
467
1676
2021-09-05T09:04:10Z
Roxalotl
30644625
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Axt-ov1.png
6
468
1679
2021-09-05T09:22:57Z
Roxalotl
30644625
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
1685
1679
2021-09-05T09:30:02Z
Roxalotl
30644625
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
1686
1685
2021-09-05T09:31:11Z
Roxalotl
30644625
This is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
1687
1686
2021-09-05T09:31:41Z
Roxalotl
30644625
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
File:Axt-ov.png
6
471
1689
2021-09-05T09:33:39Z
Roxalotl
30644625
This is FAN ART. NOT OFFICIAL.
wikitext
text/x-wiki
== Summary ==
This is FAN ART. NOT OFFICIAL.
aad6ba7ac5098b7d4ae9b8acf2d5d8c7ea21b1a3
Albedo
0
205
1695
734
2021-10-22T04:01:07Z
71.223.131.114
0
wikitext
text/x-wiki
{{charbox}}
cadab614b101ea3bee74b2a0081522136c40f86a
Ben Tennyson (Prime)
0
93
1697
1655
2021-10-22T04:07:27Z
71.223.131.114
0
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{stub}}
{{charbox
|image={{tabs|{{tab2|OV|tempovben.png}}{{tab2|AF|modelben.png}}{{tab2|OS|osben.png}}}}
|fullname=Benjamin Kirby Tennyson
|nickname=Ben
|alias=Benji<br>
|species=Human
|homeworld=Earth
|residence=Bellwood
|affiliations=test
|relationships=test
|equipment=test
|status=Alive
|first=test
|last=test
}}
placeholder!!
67a5c6ff3aa496a73386a2532c8b817887805c1c
1699
1697
2021-10-22T04:13:57Z
71.223.131.114
0
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{stub}}
{{charbox
|image={{tabs|{{tab2|OV|tempovben.png}}{{tab2|AF|modelben.png}}{{tab2|OS|osben.png}}}}
|fullname=Benjamin Kirby Tennyson
|nickname=Ben
|alias= Ben 10<br>Ben Prime<br>Doctor Tennyson<ref name="Mystery, Incorporeal">''[[Mystery, Incorporeal]]''</ref><br>Hero of the Highbreed Wars<ref name=Tack>[[Tack]]</ref><ref name="Basic Training">''[[Basic Training]]''</ref><br>Conqueror of Vilgax<ref name = Tack /><ref name="Basic Training"/>
|species=Human
|homeworld=Earth
|residence=Bellwood
|affiliations=
|relationships=
|equipment= [[Omnitrix (Omniverse)|Omnitrix]]<br>[[Ascalon]] <small>(formerly)</small><br>[[Ultimatrix (Original)|Ultimatrix]] <small>(formerly)</small><br>[[Omnitrix (Original)|Prototype Omnitrix]] <small>(destroyed)</small><br>[[Tenn-Speed]] <small>(formerly)</small><br>[[Time Cycles|Time Cycle]] <small>(formerly)</small>
|status=Alive
|first=And Then There Were 10
|last=
}}
placeholder!!
8314bcca8dfcb080f2e6998b068019b4cfdbdf93
1701
1699
2021-10-22T04:19:10Z
71.223.131.114
0
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{stub}}
{{charbox
|image={{tabs|{{tab2|OV|tempovben.png}}{{tab2|AF|modelben.png}}{{tab2|OS|osben.png}}}}
|fullname=Benjamin Kirby Tennyson
|nickname=Ben
|alias=
|species=Human
|homeworld=Earth
|residence=Bellwood
|affiliations= Ben's Team
Plumbers
SECT
Chadzmuth
Team Tennyson (disbanded)
Alien Force (disbanded)
Zs'Skayr's Minions (formerly)
Galactic Enforcers (formerly)
Madison Elementary School (formerly)
Friedkin University (formerly)
|relationships=
|equipment=
Omnitrix
Ascalon (formerly)
Ultimatrix (formerly)
Prototype Omnitrix (destroyed)
Tenn-Speed (formerly)
Time Cycle (formerly)
|status=Alive
|first=And Then There Were 10
|last=
}}
placeholder!!
90e1ca59ece54e1884b0456799266df8179086e7
1702
1701
2021-10-22T04:22:22Z
71.223.131.114
0
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{stub}}
{{charbox
|image={{tabs|{{tab2|OV|tempovben.png}}{{tab2|AF|modelben.png}}{{tab2|OS|osben.png}}}}
|fullname=Benjamin Kirby Tennyson
|nickname=Ben
|alias=Ben 10<br>Ben Prime
|species=Human
|homeworld=Earth
|residence=Bellwood
|affiliations= Ben's Team<br>Plumbers<br>SECT<br>Chadzmuth<br>Team Tennyson (disbanded)
Alien Force (disbanded)
Zs'Skayr's Minions (formerly)
Galactic Enforcers (formerly)
Madison Elementary School (formerly)
Friedkin University (formerly)
|relationships=
|equipment=Omnitrix<br>Ascalon (formerly)<br>Ultimatrix (formerly)<br>
Prototype Omnitrix (destroyed)<br>Tenn-Speed (formerly)<br>Time Cycle (formerly)
|status=Alive
|first=And Then There Were 10
|last=
}}
placeholder!!
f0e297c8c1c04e505aece7e294caf679121296e5
1703
1702
2021-10-22T04:30:05Z
71.223.131.114
0
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{stub}}
{{charbox
|image={{tabs|{{tab2|OV|tempovben.png}}{{tab2|AF|modelben.png}}{{tab2|OS|osben.png}}}}
|fullname=Benjamin Kirby Tennyson
|nickname=Ben
|alias=Ben 10<br>Ben Prime
|species=Human
|homeworld=Earth
|residence=Bellwood
|affiliations= Ben's Team<br>Plumbers<br>SECT<br>Chadzmuth<br>Team Tennyson (disbanded)<br>Alien Force (disbanded)<br>Zs'Skayr's Minions (formerly)<br>Galactic Enforcers (formerly)<br>Madison Elementary School (formerly)<br>Friedkin University (formerly)
|relationships=
|equipment=Omnitrix<br>Ascalon (formerly)<br>Ultimatrix (formerly)<br>
Prototype Omnitrix (destroyed)<br>Tenn-Speed (formerly)<br>Time Cycle (formerly)
|status=Alive
|first=And Then There Were 10
|last=
}}
placeholder!!
60ae62a785de16c5d958c81c3b3a24e51c1cd6d8
Omnitrix (Prototype)
0
345
1698
1313
2021-10-22T04:09:14Z
71.223.131.114
0
I need help please.
wikitext
text/x-wiki
{{itembox
|image=
{{tabs|{{tab2|Original Series|OmnitrixProt OS.png}}{{tab2|Recalibrated|af trix.png}}}}
|name= Omnitrix
|nickname= {{Scroll|h = 80px|
* The watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* Stupid watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* placeholder
* placeholder
* placeholder
* placeholder
}}
|alias= Omnimatrix <ref>placeholder</ref>
|level= [[Technology Levels#Level_20|20]]
|function= DNA Alterer
|creator= [[Azmuth]]
|user= [[Ben Tennyson (Prime)]]
|status= Destroyed
|first= [[And Then There Were 10]]
|last= [[From Hedorium to Eternity]]
}}
Placeholder, general bio/description of the omnitrix.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Yuri Lowenthal]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in OV. {{storylink|Episode|Episode}}
== Known Transformations ==
=== Before Recalibration ===
{{Scroll|h = 200px|
{{ttable|
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
}}}}
{{-}}
=== After Recalibration ===
{{Scroll|h = 200px|
{{ttable|
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
}}}}
{{-}}
== Purpose ==
placeholder
== Features ==
placeholder
=== Settings ===
==== Before Recalibration ====
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:300px; text-align:center;" | '''Setting'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:200px; text-align:center;" | '''Details'''
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|}
{{-}}
==== After Recalibration ====
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:300px; text-align:center;" | '''Setting'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:200px; text-align:center;" | '''Details'''
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|}
== Appearances ==
placeholder, some dropdown menus for each show/season?
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''toy name'''
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''toy name'''
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
{{-}}
<noinclude>[[Category:Transformations]]</noinclude>
3491fa53849e381bebd92054a789bf34b8af94d8
Ben Tennyson (Reboot)
0
182
1705
643
2021-10-22T04:34:09Z
71.223.131.114
0
wikitext
text/x-wiki
{{stub}}
{{charabox
|image={{tabs}}
9109794b69c9dd710631d971095b8988994b351d
1706
1705
2021-10-22T04:34:27Z
71.223.131.114
0
wikitext
text/x-wiki
{{stub}}
{{charabox|image={{tabs}}}}
6a2d5ff852d166b486d27e8696ae9630fe51f455
1707
1706
2021-10-22T04:34:58Z
71.223.131.114
0
wikitext
text/x-wiki
{{stub}}
{{charabox}}
c8b033e2c950517e5374083bdf15badaa77a22be
1708
1707
2021-10-22T04:35:20Z
71.223.131.114
0
wikitext
text/x-wiki
{{stub}}
{{charbox}}
e83ef7f990c66b888942c355dda8f2c6bebeed8c
Ben 10,000 (Original Series)
0
477
1723
2021-10-23T00:09:24Z
71.223.131.114
0
Created page with "{{stub}} {{itembox}}"
wikitext
text/x-wiki
{{stub}}
{{itembox}}
60f7e3c322474b6d5ed994582a0ee2bc09192c49
Omnitrix (Completed)
0
422
1725
1551
2021-10-23T00:18:17Z
71.223.131.114
0
wikitext
text/x-wiki
{{stub}}
{{itembox
|image=[[File:Omnitrix Prime.png]]
5ef50eebdeee4581de4ece880e784bd71daae96b
1728
1725
2021-10-23T00:34:49Z
71.223.131.114
0
wikitext
text/x-wiki
{{stub}}
{{itembox
|image= {{tabs|{{tab2|Ultimate Alien|Omnitrix UA.png}}{{tab2|Omniverse|}}}}
bfe700ebba5dde0de576b0d844ae59ecbb704411
1729
1728
2021-10-23T00:36:38Z
71.223.131.114
0
wikitext
text/x-wiki
{{stub}}
{{itembox
|image= {{tabs|{{tab2|Ultimate Alien|Omnitrix2 UAF.png}}{{tab2|Omniverse|Omnitrix Prime.png}}}}
|name=
|nickname=}}
6ef7835998ac952874b0c394fb1a574722a05194
Nemetrix
0
478
1735
2021-10-23T04:32:04Z
71.223.131.114
0
Created page with "{{stub}} {{itembox |image=}}"
wikitext
text/x-wiki
{{stub}}
{{itembox
|image=}}
1df8c7eaae096c7ef3c9bd7790da4cd3749ad876
Eunice
0
479
1736
2021-10-23T22:25:13Z
71.223.131.114
0
Created page with "{{stub}} {{itembox |image= |name=}}"
wikitext
text/x-wiki
{{stub}}
{{itembox
|image=
|name=}}
07853155973d925efd1ed052925c6d9fbee089bd
Ben 10,000 (Ultimate Alien
0
480
1737
2021-10-26T00:56:53Z
71.223.131.114
0
Created page with "{{stub}}"
wikitext
text/x-wiki
{{stub}}
b1c449c0e560e1baecc3a6ad29dd05cf6e323c07
Azmuth
0
481
1738
2021-10-27T01:42:15Z
71.223.131.114
0
Created page with "{{stub}} {{charabox}}"
wikitext
text/x-wiki
{{stub}}
{{charabox}}
c8b033e2c950517e5374083bdf15badaa77a22be
1739
1738
2021-10-27T01:42:27Z
71.223.131.114
0
wikitext
text/x-wiki
{{stub}}
{{charbox}}
e83ef7f990c66b888942c355dda8f2c6bebeed8c
Ben Tennyson (Original Series Dimension)
0
482
1740
2021-10-28T04:12:27Z
71.223.131.114
0
Created page with "{{stub}}"
wikitext
text/x-wiki
{{stub}}
b1c449c0e560e1baecc3a6ad29dd05cf6e323c07
User talk:Roxalotl
3
483
1741
2021-10-29T00:30:23Z
71.223.131.114
0
Created page with "Hi. ~~~~"
wikitext
text/x-wiki
Hi. [[Special:Contributions/71.223.131.114|71.223.131.114]] 00:30, 29 October 2021 (UTC)
2f4ce3799d50c27da12d60d2411aa1afca5f7c2a
Ben Tennyson (Race Against Time)
0
484
1742
2021-11-06T00:21:50Z
71.223.131.114
0
Created page with "{{stub}} {{charabox}}"
wikitext
text/x-wiki
{{stub}}
{{charabox}}
c8b033e2c950517e5374083bdf15badaa77a22be
1743
1742
2021-11-06T00:22:03Z
71.223.131.114
0
wikitext
text/x-wiki
{{stub}}
{{charbox}}
e83ef7f990c66b888942c355dda8f2c6bebeed8c
Ben Tennyson (Madworld)
0
485
1744
2021-11-07T05:06:32Z
71.223.131.114
0
Created page with "{{stub}} {{charbox}}"
wikitext
text/x-wiki
{{stub}}
{{charbox}}
e83ef7f990c66b888942c355dda8f2c6bebeed8c
Ben Tennyson (Omniverse Dimension)
0
486
1745
2021-11-07T05:07:38Z
71.223.131.114
0
I need help.
wikitext
text/x-wiki
{{stub}}
{{charbox}}
e83ef7f990c66b888942c355dda8f2c6bebeed8c
Omnitrix (Disambiguation)
0
303
1746
1690
2022-02-02T12:03:19Z
5.173.17.10
0
Adding Ben 10k Reboot Omnitrix image
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth]] of the [[Galvan]], in an effort to make peace among varying species. The original found its way onto the wrist of then 10-year-old [[Ben Tennyson]], who would go then use he device to save the world, universe, and multiverse, many times over. Throughout the greater multiverse, many versions of the Omnitrix have been seen.
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:af trix.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:10kreturnstrix.png|link=[[Ultimatrix]]|[[Ben 10,000 (Ultimate Alien|Ben 10,000]]'s Ultimatrix that turns him into [[Ultimate Ben]]
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biotrix2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:stabilizergif.gif|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:Omnitrix-reboot.gif|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
File:10ktrix.png|link=[[Omnitrix (Reboot Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix in the ''Reboot''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Dimension 12041.5)]] in ''[[Alien X-Tinction]]''.
File:axt-ov1.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Maximillian's Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-os.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Original Series Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Alien Force Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-ua.png|link=[[sandbox]]|The Ultimatrix of [[Ben Tennyson (Ultimate Alien Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-g.png|link=[[sandbox]]|The Omnitrix of [[Gwen Tennyson (Alien X-Tinction)|Gwen 10]] in ''[[Alien X-Tinction]]''.
File:Axt-ov.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Omniverse Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]''.
</gallery></center>
485f11659be0d7ef4f6a00d4f3937b608baf105f
1747
1746
2022-02-02T12:05:02Z
5.173.17.10
0
Adding Reboot AF Omnitrix image
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth]] of the [[Galvan]], in an effort to make peace among varying species. The original found its way onto the wrist of then 10-year-old [[Ben Tennyson]], who would go then use he device to save the world, universe, and multiverse, many times over. Throughout the greater multiverse, many versions of the Omnitrix have been seen.
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:af trix.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:10kreturnstrix.png|link=[[Ultimatrix]]|[[Ben 10,000 (Ultimate Alien|Ben 10,000]]'s Ultimatrix that turns him into [[Ultimate Ben]]
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biotrix2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:stabilizergif.gif|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:Omnitrix-reboot.gif|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
File:10ktrix.png|link=[[Omnitrix (Reboot Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix in the ''Reboot''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Dimension 12041.5)]] in ''[[Alien X-Tinction]]''.
File:axt-ov1.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Maximillian's Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-os.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Original Series Dimension)]] in ''[[Alien X-Tinction]]''.
File:10kreturnstrix.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Alien Force Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-ua.png|link=[[sandbox]]|The Ultimatrix of [[Ben Tennyson (Ultimate Alien Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-g.png|link=[[sandbox]]|The Omnitrix of [[Gwen Tennyson (Alien X-Tinction)|Gwen 10]] in ''[[Alien X-Tinction]]''.
File:Axt-ov.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Omniverse Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]''.
</gallery></center>
93f55ebed7f30a5c6ccf803ed7b974b0b3a89cae
1748
1747
2022-02-03T07:41:07Z
94.254.160.24
0
Reboot Alien X is alternate evil Ben Tennyson
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth]] of the [[Galvan]], in an effort to make peace among varying species. The original found its way onto the wrist of then 10-year-old [[Ben Tennyson]], who would go then use he device to save the world, universe, and multiverse, many times over. Throughout the greater multiverse, many versions of the Omnitrix have been seen.
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:af trix.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:10kreturnstrix.png|link=[[Ultimatrix]]|[[Ben 10,000 (Ultimate Alien|Ben 10,000]]'s Ultimatrix that turns him into [[Ultimate Ben]]
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biotrix2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:stabilizergif.gif|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:Omnitrix-reboot.gif|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
File:10ktrix.png|link=[[Omnitrix (Reboot Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix in the ''Reboot''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Dimension 12041.5)]] in ''[[Alien X-Tinction]]''.
File:axt-ov1.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Maximillian's Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-os.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Original Series Dimension)]] in ''[[Alien X-Tinction]]''.
File:10kreturnstrix.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Alien Force Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-ua.png|link=[[sandbox]]|The Ultimatrix of [[Ben Tennyson (Ultimate Alien Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-g.png|link=[[sandbox]]|The Omnitrix of [[Gwen Tennyson (Alien X-Tinction)|Gwen 10]] in ''[[Alien X-Tinction]]''.
File:Axt-ov.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Omniverse Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Evil Ben Dimension)]] in ''[[Alien X-Tinction]]''.
</gallery></center>
66eec04bb24326f1fda12c887fc342eebfb61dec
1753
1748
2022-02-08T09:26:35Z
5.173.17.15
0
adding OS Gwen 10 Omnitrix
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth]] of the [[Galvan]], in an effort to make peace among varying species. The original found its way onto the wrist of then 10-year-old [[Ben Tennyson]], who would go then use he device to save the world, universe, and multiverse, many times over. Throughout the greater multiverse, many versions of the Omnitrix have been seen.
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix [[Gweniverse]]|[[Gwen Tennyson (Gweniverse)|Gwen 10's]] Omnitrix
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:af trix.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:10kreturnstrix.png|link=[[Ultimatrix]]|[[Ben 10,000 (Ultimate Alien|Ben 10,000]]'s Ultimatrix that turns him into [[Ultimate Ben]]
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biotrix2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:stabilizergif.gif|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:Omnitrix-reboot.gif|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
File:10ktrix.png|link=[[Omnitrix (Reboot Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix in the ''Reboot''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Dimension 12041.5)]] in ''[[Alien X-Tinction]]''.
File:axt-ov1.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Maximillian's Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-os.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Original Series Dimension)]] in ''[[Alien X-Tinction]]''.
File:10kreturnstrix.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Alien Force Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-ua.png|link=[[sandbox]]|The Ultimatrix of [[Ben Tennyson (Ultimate Alien Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-g.png|link=[[sandbox]]|The Omnitrix of [[Gwen Tennyson (Alien X-Tinction)|Gwen 10]] in ''[[Alien X-Tinction]]''.
File:Axt-ov.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Omniverse Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Evil Ben Dimension)]] in ''[[Alien X-Tinction]]''.
</gallery></center>
12d00866fee1a68e7d90311e5284330460a17acb
1754
1753
2022-02-08T09:28:33Z
5.173.17.15
0
Adding UAOS Omnitrix
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth]] of the [[Galvan]], in an effort to make peace among varying species. The original found its way onto the wrist of then 10-year-old [[Ben Tennyson]], who would go then use he device to save the world, universe, and multiverse, many times over. Throughout the greater multiverse, many versions of the Omnitrix have been seen.
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix [[Gweniverse]]|[[Gwen Tennyson (Gweniverse)|Gwen 10's]] Omnitrix
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:af trix.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:OmnitrixProt OS.pn|link=[[Omnitrix (Prototype)|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:10kreturnstrix.png|link=[[Ultimatrix]]|[[Ben 10,000 (Ultimate Alien|Ben 10,000]]'s Ultimatrix that turns him into [[Ultimate Ben]]
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biotrix2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:stabilizergif.gif|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:Omnitrix-reboot.gif|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
File:10ktrix.png|link=[[Omnitrix (Reboot Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix in the ''Reboot''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Dimension 12041.5)]] in ''[[Alien X-Tinction]]''.
File:axt-ov1.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Maximillian's Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-os.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Original Series Dimension)]] in ''[[Alien X-Tinction]]''.
File:10kreturnstrix.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Alien Force Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-ua.png|link=[[sandbox]]|The Ultimatrix of [[Ben Tennyson (Ultimate Alien Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-g.png|link=[[sandbox]]|The Omnitrix of [[Gwen Tennyson (Alien X-Tinction)|Gwen 10]] in ''[[Alien X-Tinction]]''.
File:Axt-ov.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Omniverse Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Evil Ben Dimension)]] in ''[[Alien X-Tinction]]''.
</gallery></center>
c529bf272b82c226231bd98b3297466f6c636701
1755
1754
2022-02-08T09:30:47Z
5.173.17.15
0
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth]] of the [[Galvan]], in an effort to make peace among varying species. The original found its way onto the wrist of then 10-year-old [[Ben Tennyson]], who would go then use he device to save the world, universe, and multiverse, many times over. Throughout the greater multiverse, many versions of the Omnitrix have been seen.
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix [[Gweniverse]]|[[Gwen Tennyson (Gweniverse)|Gwen 10's]] Omnitrix
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:af trix.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:10kreturnstrix.png|link=[[Ultimatrix]]|[[Ben 10,000 (Ultimate Alien|Ben 10,000]]'s Ultimatrix that turns him into [[Ultimate Ben]]
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biotrix2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:stabilizergif.gif|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:Omnitrix-reboot.gif|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
File:10ktrix.png|link=[[Omnitrix (Reboot Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix in the ''Reboot''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Dimension 12041.5)]] in ''[[Alien X-Tinction]]''.
File:axt-ov1.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Maximillian's Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-os.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Original Series Dimension)]] in ''[[Alien X-Tinction]]''.
File:10kreturnstrix.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Alien Force Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-ua.png|link=[[sandbox]]|The Ultimatrix of [[Ben Tennyson (Ultimate Alien Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-g.png|link=[[sandbox]]|The Omnitrix of [[Gwen Tennyson (Alien X-Tinction)|Gwen 10]] in ''[[Alien X-Tinction]]''.
File:Axt-ov.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Omniverse Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Evil Ben Dimension)]] in ''[[Alien X-Tinction]]''.
</gallery></center>
834f48d81f1f6e47b2a16bd57ad7634208fc9522
1756
1755
2022-02-08T09:32:03Z
5.173.17.15
0
/* Ben 10: Omniverse */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth]] of the [[Galvan]], in an effort to make peace among varying species. The original found its way onto the wrist of then 10-year-old [[Ben Tennyson]], who would go then use he device to save the world, universe, and multiverse, many times over. Throughout the greater multiverse, many versions of the Omnitrix have been seen.
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix [[Gweniverse]]|[[Gwen Tennyson (Gweniverse)|Gwen 10's]] Omnitrix
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:af trix.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:10kreturnstrix.png|link=[[Ultimatrix]]|[[Ben 10,000 (Ultimate Alien|Ben 10,000]]'s Ultimatrix that turns him into [[Ultimate Ben]]
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biotrix2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:stabilizergif.gif|link=[[Stabilizer]]|Albedo's Ultimatrix
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's recalibrated Ultimatrix
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:Omnitrix-reboot.gif|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
File:10ktrix.png|link=[[Omnitrix (Reboot Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix in the ''Reboot''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Dimension 12041.5)]] in ''[[Alien X-Tinction]]''.
File:axt-ov1.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Maximillian's Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-os.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Original Series Dimension)]] in ''[[Alien X-Tinction]]''.
File:10kreturnstrix.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Alien Force Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-ua.png|link=[[sandbox]]|The Ultimatrix of [[Ben Tennyson (Ultimate Alien Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-g.png|link=[[sandbox]]|The Omnitrix of [[Gwen Tennyson (Alien X-Tinction)|Gwen 10]] in ''[[Alien X-Tinction]]''.
File:Axt-ov.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Omniverse Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Evil Ben Dimension)]] in ''[[Alien X-Tinction]]''.
</gallery></center>
222c7419919d6ea8852d59b7de7b2542f0a885e0
1759
1756
2022-02-08T10:17:50Z
5.173.17.15
0
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth]] of the [[Galvan]], in an effort to make peace among varying species. The original found its way onto the wrist of then 10-year-old [[Ben Tennyson]], who would go then use he device to save the world, universe, and multiverse, many times over. Throughout the greater multiverse, many versions of the Omnitrix have been seen.
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix [[Gweniverse]]|[[Gwen Tennyson (Gweniverse)|Gwen 10's]] Omnitrix
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:af trix.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:10kreturnstrix.png|link=[[Ultimatrix]]|[[Ben 10,000 (Ultimate Alien|Ben 10,000]]'s Ultimatrix that turns him into [[Ultimate Ben]]
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biotrix2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:stabilizergif.gif|link=[[Stabilizer]]|Albedo's Ultimatrix
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's recalibrated Ultimatrix
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:Omnitrix-reboot.gif|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
File:10ktrix.png|link=[[Omnitrix (Reboot Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix in the ''Reboot''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Dimension 12041.5)]] in ''[[Alien X-Tinction]]''.
File:axt-ov1.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Maximillian's Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-os.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Original Series Dimension)]] in ''[[Alien X-Tinction]]''.
File:10kreturnstrix.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Alien Force Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-ua.png|link=[[sandbox]]|The Ultimatrix of [[Ben Tennyson (Ultimate Alien Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-g.png|link=[[sandbox]]|The Omnitrix of [[Gwen Tennyson (Alien X-Tinction)|Gwen 10]] in ''[[Alien X-Tinction]]''.
File:Axt-ov.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Omniverse Dimension)]] in ''[[Alien X-Tinction]]''.
File:10ktrix.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Evil Ben Dimension)]] in ''[[Alien X-Tinction]]''.
</gallery></center>
e77febcacbf506ad2c27685f71b1a03d2d10db2f
1780
1759
2022-02-09T09:31:00Z
Ben 10 Fan
30645469
Adding antitrix artwork
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth]] of the [[Galvan]], in an effort to make peace among varying species. The original found its way onto the wrist of then 10-year-old [[Ben Tennyson]], who would go then use he device to save the world, universe, and multiverse, many times over. Throughout the greater multiverse, many versions of the Omnitrix have been seen.
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix [[Gweniverse]]|[[Gwen Tennyson (Gweniverse)|Gwen 10's]] Omnitrix
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:af trix.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:10kreturnstrix.png|link=[[Ultimatrix]]|[[Ben 10,000 (Ultimate Alien|Ben 10,000]]'s Ultimatrix that turns him into [[Ultimate Ben]]
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biotrix2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:stabilizergif.gif|link=[[Stabilizer]]|Albedo's Ultimatrix
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's recalibrated Ultimatrix
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:Omnitrix-reboot.gif|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:ANTITRIX.jpeg|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
File:10ktrix.png|link=[[Omnitrix (Reboot Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix in the ''Reboot''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Dimension 12041.5)]] in ''[[Alien X-Tinction]]''.
File:axt-ov1.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Maximillian's Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-os.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Original Series Dimension)]] in ''[[Alien X-Tinction]]''.
File:10kreturnstrix.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Alien Force Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-ua.png|link=[[sandbox]]|The Ultimatrix of [[Ben Tennyson (Ultimate Alien Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-g.png|link=[[sandbox]]|The Omnitrix of [[Gwen Tennyson (Alien X-Tinction)|Gwen 10]] in ''[[Alien X-Tinction]]''.
File:Axt-ov.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Omniverse Dimension)]] in ''[[Alien X-Tinction]]''.
File:10ktrix.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Evil Ben Dimension)]] in ''[[Alien X-Tinction]]''.
</gallery></center>
f881f17885757964dd237d31c5cfa7f8a367b05e
1781
1780
2022-02-09T09:35:45Z
Ben 10 Fan
30645469
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth]] of the [[Galvan]], in an effort to make peace among varying species. The original found its way onto the wrist of then 10-year-old [[Ben Tennyson]], who would go then use he device to save the world, universe, and multiverse, many times over. Throughout the greater multiverse, many versions of the Omnitrix have been seen.
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix [[Gweniverse]]|[[Gwen Tennyson (Gweniverse)|Gwen 10's]] Omnitrix
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:af trix.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:10kreturnstrix.png|link=[[Ultimatrix]]|[[Ben 10,000 (Ultimate Alien|Ben 10,000]]'s Ultimatrix that turns him into [[Ultimate Ben]]
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biotrix2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:stabilizergif.gif|link=[[Stabilizer]]|Albedo's Ultimatrix
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's recalibrated Ultimatrix
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:Omnitrix-reboot.gif|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
ANTITRIX.jpeg.jpg|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
File:10ktrix.png|link=[[Omnitrix (Reboot Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix in the ''Reboot''.
File:PLACEHOLDER2.png|link=[[Omnitrix (Dimension 12041.5)]]|The Omnitrix of [[Ben Tennyson (Dimension 12041.5)]] in ''[[Alien X-Tinction]]''.
File:axt-ov1.png|link=[[Omnitrix (Maximilian's Dimension)]]|The Omnitrix of [[Ben Tennyson (Maximillian's Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-os.png|link=[[Omnitrix (Original Series Dimension)]]|The Omnitrix of [[Ben Tennyson (Original Series Dimension)]] in ''[[Alien X-Tinction]]''.
File:10kreturnstrix.png|[[Omnitrix (Alien Force Dimension)]]]|The Omnitrix of [[Ben Tennyson (Alien Force Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-ua.png|link=[[Ultimatrix (Ultimate Alien Dimension)]]|The Ultimatrix of [[Ben Tennyson (Ultimate Alien Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-g.png|link=[[Omnitrix (Gwen 10 Dimension)]|The Omnitrix of [[Gwen Tennyson (Alien X-Tinction)|Gwen 10]] in ''[[Alien X-Tinction]]''.
File:Axt-ov.png|link=[[Omnitrix (Omniverse Dimension)]]|The Omnitrix of [[Ben Tennyson (Omniverse Dimension)]] in ''[[Alien X-Tinction]]''.
File:10ktrix.png|link=[[Omnitrix (Evil Ben Dimension)]]|The Omnitrix of [[Ben Tennyson (Evil Ben Dimension)]] in ''[[Alien X-Tinction]]''.
</gallery></center>
77f6eba3ca04ae1373c84489392aca30245df2a2
1783
1781
2022-02-09T09:52:08Z
Ben 10 Fan
30645469
Adding Alternate Dimension Omnitrix artwork
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth]] of the [[Galvan]], in an effort to make peace among varying species. The original found its way onto the wrist of then 10-year-old [[Ben Tennyson]], who would go then use he device to save the world, universe, and multiverse, many times over. Throughout the greater multiverse, many versions of the Omnitrix have been seen.
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix [[Gweniverse]]|[[Gwen Tennyson (Gweniverse)|Gwen 10's]] Omnitrix
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:af trix.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:10kreturnstrix.png|link=[[Ultimatrix]]|[[Ben 10,000 (Ultimate Alien|Ben 10,000]]'s Ultimatrix that turns him into [[Ultimate Ben]]
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biotrix2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:stabilizergif.gif|link=[[Stabilizer]]|Albedo's Ultimatrix
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's recalibrated Ultimatrix
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:Omnitrix-reboot.gif|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
ANTITRIX.jpeg.jpg|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
File:10ktrix.png|link=[[Omnitrix (Reboot Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix in the ''Reboot''.
File:Omnitrix (Road Trip Without Gwen Dimension).png|link=[[Omnitrix (Dimension 12041.5)]]|The Omnitrix of [[Ben Tennyson (Dimension 12041.5)]] in ''[[Alien X-Tinction]]''.
File:axt-ov1.png|link=[[Omnitrix (Maximilian's Dimension)]]|The Omnitrix of [[Ben Tennyson (Maximillian's Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-os.png|link=[[Omnitrix (Original Series Dimension)]]|The Omnitrix of [[Ben Tennyson (Original Series Dimension)]] in ''[[Alien X-Tinction]]''.
File:10kreturnstrix.png|[[Omnitrix (Alien Force Dimension)]]]|The Omnitrix of [[Ben Tennyson (Alien Force Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-ua.png|link=[[Ultimatrix (Ultimate Alien Dimension)]]|The Ultimatrix of [[Ben Tennyson (Ultimate Alien Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-g.png|link=[[Omnitrix (Gwen 10 Dimension)]|The Omnitrix of [[Gwen Tennyson (Alien X-Tinction)|Gwen 10]] in ''[[Alien X-Tinction]]''.
File:Axt-ov.png|link=[[Omnitrix (Omniverse Dimension)]]|The Omnitrix of [[Ben Tennyson (Omniverse Dimension)]] in ''[[Alien X-Tinction]]''.
File:10ktrix.png|link=[[Omnitrix (Evil Ben Dimension)]]|The Omnitrix of [[Ben Tennyson (Evil Ben Dimension)]] in ''[[Alien X-Tinction]]''.
</gallery></center>
52d5f6d982e61140f0dee0871d8b146d02287ec0
1803
1783
2022-04-23T08:37:36Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth]] of the [[Galvan]], in an effort to make peace among varying species. The original found its way onto the wrist of then 10-year-old [[Ben Tennyson]], who would go then use he device to save the world, universe, and multiverse, many times over. Throughout the greater multiverse, many versions of the Omnitrix have been seen.
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:af trix.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:10kreturnstrix.png|link=[[Ultimatrix]]|[[Ben 10,000 (Ultimate Alien|Ben 10,000]]'s Ultimatrix that turns him into [[Ultimate Ben]]
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biotrix2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:stabilizergif.gif|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:Omnitrix-reboot.gif|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Reboot Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix in the ''Reboot''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Dimension 12041.5)]] in ''[[Alien X-Tinction]]''.
File:axt-ov1.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Maximillian's Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-os.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Original Series Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Alien Force Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-ua.png|link=[[sandbox]]|The Ultimatrix of [[Ben Tennyson (Ultimate Alien Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-g.png|link=[[sandbox]]|The Omnitrix of [[Gwen Tennyson (Alien X-Tinction)|Gwen 10]] in ''[[Alien X-Tinction]]''.
File:Axt-ov.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Omniverse Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]''.
</gallery></center>
7ffabc016405fbe85e566fef1eb9125ed673c307
1804
1803
2022-04-23T08:38:50Z
Jaswacker
30585766
/* Ben 10 (2016) */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth]] of the [[Galvan]], in an effort to make peace among varying species. The original found its way onto the wrist of then 10-year-old [[Ben Tennyson]], who would go then use he device to save the world, universe, and multiverse, many times over. Throughout the greater multiverse, many versions of the Omnitrix have been seen.
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:af trix.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:10kreturnstrix.png|link=[[Ultimatrix]]|[[Ben 10,000 (Ultimate Alien|Ben 10,000]]'s Ultimatrix that turns him into [[Ultimate Ben]]
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biotrix2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:stabilizergif.gif|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:Omnitrix-reboot.gif|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Reboot Ben 10,000)]]|[[Ben 10,000 (Reboot)|Ben 10,000]]'s Omnitrix in the ''Reboot''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Dimension 12041.5)]] in ''[[Alien X-Tinction]]''.
File:axt-ov1.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Maximillian's Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-os.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Original Series Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Alien Force Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-ua.png|link=[[sandbox]]|The Ultimatrix of [[Ben Tennyson (Ultimate Alien Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-g.png|link=[[sandbox]]|The Omnitrix of [[Gwen Tennyson (Alien X-Tinction)|Gwen 10]] in ''[[Alien X-Tinction]]''.
File:Axt-ov.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Omniverse Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]''.
</gallery></center>
f59866d67dbc5cd26af28cec5aff367e62bd0697
1805
1804
2022-04-23T08:39:02Z
Jaswacker
30585766
Protected "[[Omnitrix (Disambiguation)]]": vandalism ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth]] of the [[Galvan]], in an effort to make peace among varying species. The original found its way onto the wrist of then 10-year-old [[Ben Tennyson]], who would go then use he device to save the world, universe, and multiverse, many times over. Throughout the greater multiverse, many versions of the Omnitrix have been seen.
__TOC__
{{-}}
==''[[Ben 10 (2005)]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OS.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Ben 10,000 (Original Series)|Ben 10,000]]'s Omnitrix
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Kenny Tennyson (Original Series)|Ken 10]]'s Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Alien Force]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt UAF.png|link=[[Omnitrix (Prototype)]]|[[Ben Tennyson (Prime)|Ben]]'s prototype Omnitrix
File:af trix.png|link=[[Omnitrix (Prototype)]]|Ben's recalibrated Omnitrix
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Albedo]]'s Omnitrix
File:ultimatrix albedo.png|link=[[Ultimatrix]]|Albedo's Ultimatrix
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
</gallery></center>
{{-}}
==''[[Ben 10: Ultimate Alien]]''==
<center><gallery widths="200px" heights="200px">
File:ultimatrix ben.png|link=[[Ultimatrix]]|Ben's Ultimatrix
File:unitrix model.png|link=[[Eunice]]|The Unitrix
File:10kreturnstrix.png|link=[[Ultimatrix]]|[[Ben 10,000 (Ultimate Alien|Ben 10,000]]'s Ultimatrix that turns him into [[Ultimate Ben]]
File:Omnitrix2 UAF.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
</gallery></center>
{{-}}
==''[[Ben 10: Omniverse]]''==
<center><gallery widths="200px" heights="200px">
File:OmnitrixProt OV.png|link=[[Omnitrix (Prototype)]]|Ben's prototype Omnitrix
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|Ben's completed Omnitrix
File:nemetrix model.png|link=[[Nemetrix]]|The Nemetrix
File:biotrix2.png|link=[[Biomnitrix]]|[[Ben 10,000 (Omniverse)|Ben 10,000]]'s Biomnitrix
File:stabilizergif.gif|link=[[Stabilizer]]|Albedo's Stabilizer
File:ultimatrix ov.png|link=[[Stabilizer]]|Albedo's upgraded Stabilizer
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Ben Tennyson (Dimension 23)|Ben 23]]'s Omnitrix, the "Hero Watch"
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]'s Omnitrix
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Ben Tennyson (Madworld)|Mad Ben]]'s Omnitrix, the "Power Watch"
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Ben Tennyson (Negaverse)|Nega Ben]]'s Omnitrix, the "Negatrix"
File:zombitrixm.png|link=[[Zombitrix]]|[[Benzarro]]'s Omnitrix, the "Zombitrix"
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|Gwen 10]]'s Omnitrix
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argit 10]]'s Omnitrix, the "Argitrix"
</gallery></center>
{{-}}
==''[[Ben 10 (2016)]]''==
<center><gallery widths="200px" heights="200px">
File:Omnitrix-reboot.gif|link=[[Omnitrix (Reboot)]]|[[Ben Tennyson (Reboot)|Ben]]'s Omnitrix
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Kevin Levin (Reboot)|Kevin]]'s Antitrix
File:PLACEHOLDER2.png|link=[[Omnitrix (Reboot Ben 10,000)]]|[[Ben 10,000 (Reboot)|Ben 10,000]]'s Omnitrix in the ''Reboot''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Dimension 12041.5)]] in ''[[Alien X-Tinction]]''.
File:axt-ov1.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Maximillian's Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-os.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Original Series Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Alien Force Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-ua.png|link=[[sandbox]]|The Ultimatrix of [[Ben Tennyson (Ultimate Alien Dimension)]] in ''[[Alien X-Tinction]]''.
File:Axt-g.png|link=[[sandbox]]|The Omnitrix of [[Gwen Tennyson (Alien X-Tinction)|Gwen 10]] in ''[[Alien X-Tinction]]''.
File:Axt-ov.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Omniverse Dimension)]] in ''[[Alien X-Tinction]]''.
File:PLACEHOLDER2.png|link=[[sandbox]]|The Omnitrix of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]''.
</gallery></center>
f59866d67dbc5cd26af28cec5aff367e62bd0697
Ben Tennyson (Prime)
0
93
1749
1703
2022-02-03T07:41:58Z
94.254.160.24
0
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{stub}}
{{charbox
|image={{tabs|{{tab2|OV|tempovben.png}}{{tab2|UAF|modelben.png}}{{tab2|OS|osben.png}}}}
|fullname=Benjamin Kirby Tennyson
|nickname=Ben
|alias=Ben 10<br>Ben Prime
|species=Human
|homeworld=Earth
|residence=Bellwood
|affiliations= Ben's Team<br>Plumbers<br>SECT<br>Chadzmuth<br>Team Tennyson (disbanded)<br>Alien Force (disbanded)<br>Zs'Skayr's Minions (formerly)<br>Galactic Enforcers (formerly)<br>Madison Elementary School (formerly)<br>Friedkin University (formerly)
|relationships=
|equipment=Omnitrix<br>Ascalon (formerly)<br>Ultimatrix (formerly)<br>
Prototype Omnitrix (destroyed)<br>Tenn-Speed (formerly)<br>Time Cycle (formerly)
|status=Alive
|first=And Then There Were 10
|last=
}}
placeholder!!
8f2490254d0168245f0ddb693ce552da3b249571
1763
1749
2022-02-08T10:47:53Z
5.173.17.15
0
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{stub}}
{{charbox
|image={{tabs|{{tab2|OV|tempovben.png}}{{tab2|UAF|modelben.png}}{{tab2|OS|osben.png}}}}
|fullname=Benjamin Kirby Tennyson
|nickname=Ben
|alias=Ben 10<br>Ben Prime
|species=Human
|homeworld=Earth
|residence=Bellwood
|affiliations= Ben's Team<br>Plumbers<br>SECT<br>Chadzmuth<br>Team Tennyson (disbanded)<br>Alien Force (disbanded)<br>Zs'Skayr's Minions (formerly)<br>Galactic Enforcers (formerly)<br>Madison Elementary School (formerly)<br>Friedkin University (formerly)
|relationships=
|equipment=Omnitrix<br>Ascalon (formerly)<br>Ultimatrix (formerly)<br>
Prototype Omnitrix (destroyed)<br>Tenn-Speed (formerly)<br>Time Cycle (formerly)
|status=Alive
|first=And Then There Were 10
|last=
}}
'''Benjamin Kirby "Ben" Tennyson''' is the titular main protagonist of the Ben 10 Franchise. He was an ordinary ten-year-old boy until he found the [[Omnitrix (Prototype)|Omnitrix]], a powerful watch-like device that allowed him to turn into ten different aliens. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become famous in not only his hometown of [[Bellwood]] but on [[Earth]] and beyond. Ben has also been deputized by the Plumbers and has gained more aliens as time progressed.
==Appearance==
Ben's physical appearance has changed throughout the series from a ten-year-old to a sixteen-year-old. However, he retains some recurring characteristics. He has unkept brown hair, green eyes, pale skin, and he's quite skinny for his age, though he shows a lot of muscle definition due to being athletic.
===Regular Appearances===
In the '''Omniverse''' flashbacks in which he was 5 years old, Ben wore green overalls with a white shirt underneath it. White numbers saying "5 1/2" were on a black square in front of his overalls.
In the [[Ben 10 (2005)|original series]] and '''[[Ben 10: Omniverse|Omniverse]]''' flashbacks, Ben's usual clothes consisted of a black-striped, white shirt with short sleeves, military green cargo pants with side pockets with a black belt hidden under his shirt, and black and white sneakers with black stripes. Ben wore the prototype Omnitrix on his left wrist.
In '''[[Ben 10: Alien Force|Alien Force]]''' and '''[[Ben 10: Ultimate Alien|Ultimate Alien]]''', Ben wore a black shirt, blue jeans and a green jacket with white stripes on his left sleeve and the number 10 on the right, white socks, and black and white Converse-style shoes. Ben wore the prototype Recalibrated Omnitrix in '''Alien Force''' and the [[Ultimatrix (Original)|Ultimatrix]] in '''Ultimate Alien''' on his left wrist.
In '''Ultimate Alien''', he wore a standard Plumber suit during a few of his off-world excursions.
In '''Omniverse''', Ben wears a black shirt that has a green stripe in the middle with a white 10 and green stripes on the sides of his shirt. He wears brown cargo pants with pockets at the knees with a brown belt hidden under the shirt and green and white shoes. He later gains a white hooded jacket with green stripes on both arms and a green number 10 on the right side for some time. He wears the [[Omnitrix (Omniverse)|Omnitrix]] on his left wrist.
In '''Omniverse''', while riding the [[Tenn-Speed]], he wears a white helmet with the number 10 on it, a green visor, a short-sleeved black T-shirt, long white pants and a belt with the number 10 on it.
==Known users==
*[[Ben Tennyson (Prime)|Ben Tennyson]]
*[[Ben Tennyson (No Watch Timeline)]] (formely)
*[[Skurd]] (formely)
==Appearances==
===Episodes===
Ben has been in every episode, movie and short except ''[[Ken 10]]'' and the "what-if?" episodes, ''[[Gwen 10]]'', ''[[Goodbye and Good Riddance]]'', and '''''[[Ben 10: Race Against Time]]''''', which feature Bens from alternate timelines. Whether or not Ben Prime appeared in the [[Ben 10 (2016)|reboot]] finale episode [[Alien X-Tinction]] is open to interpretation. Here's a list of all his appearances throughout the series.
157b5cc4d3c3db1396229cc8c8d64427f3e145b8
1764
1763
2022-02-08T10:48:31Z
5.173.17.15
0
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{stub}}
{{charbox
|image={{tabs|{{tab2|OV|tempovben.png}}{{tab2|UAF|modelben.png}}{{tab2|OS|osben.png}}}}
|fullname=Benjamin Kirby Tennyson
|nickname=Ben
|alias=Ben 10<br>Ben Prime
|species=Human
|homeworld=Earth
|residence=Bellwood
|affiliations= Ben's Team<br>Plumbers<br>SECT<br>Chadzmuth<br>Team Tennyson (disbanded)<br>Alien Force (disbanded)<br>Zs'Skayr's Minions (formerly)<br>Galactic Enforcers (formerly)<br>Madison Elementary School (formerly)<br>Friedkin University (formerly)
|relationships=
|equipment=Omnitrix<br>Ascalon (formerly)<br>Ultimatrix (formerly)<br>
Prototype Omnitrix (destroyed)<br>Tenn-Speed (formerly)<br>Time Cycle (formerly)
|status=Alive
|first=And Then There Were 10
|last=
}}
'''Benjamin Kirby "Ben" Tennyson''' is the titular main protagonist of the Ben 10 Franchise. He was an ordinary ten-year-old boy until he found the [[Omnitrix (Prototype)|Omnitrix]], a powerful watch-like device that allowed him to turn into ten different aliens. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become famous in not only his hometown of [[Bellwood]] but on [[Earth]] and beyond. Ben has also been deputized by the Plumbers and has gained more aliens as time progressed.
==Appearance==
Ben's physical appearance has changed throughout the series from a ten-year-old to a sixteen-year-old. However, he retains some recurring characteristics. He has unkept brown hair, green eyes, pale skin, and he's quite skinny for his age, though he shows a lot of muscle definition due to being athletic.
===Regular Appearances===
In the '''Omniverse''' flashbacks in which he was 5 years old, Ben wore green overalls with a white shirt underneath it. White numbers saying "5 1/2" were on a black square in front of his overalls.
In the [[Ben 10 (2005)|original series]] and '''[[Ben 10: Omniverse|Omniverse]]''' flashbacks, Ben's usual clothes consisted of a black-striped, white shirt with short sleeves, military green cargo pants with side pockets with a black belt hidden under his shirt, and black and white sneakers with black stripes. Ben wore the prototype Omnitrix on his left wrist.
In '''[[Ben 10: Alien Force|Alien Force]]''' and '''[[Ben 10: Ultimate Alien|Ultimate Alien]]''', Ben wore a black shirt, blue jeans and a green jacket with white stripes on his left sleeve and the number 10 on the right, white socks, and black and white Converse-style shoes. Ben wore the prototype Recalibrated Omnitrix in '''Alien Force''' and the [[Ultimatrix]] in '''Ultimate Alien''' on his left wrist.
In '''Ultimate Alien''', he wore a standard Plumber suit during a few of his off-world excursions.
In '''Omniverse''', Ben wears a black shirt that has a green stripe in the middle with a white 10 and green stripes on the sides of his shirt. He wears brown cargo pants with pockets at the knees with a brown belt hidden under the shirt and green and white shoes. He later gains a white hooded jacket with green stripes on both arms and a green number 10 on the right side for some time. He wears the [[Omnitrix (Omniverse)|Omnitrix]] on his left wrist.
In '''Omniverse''', while riding the [[Tenn-Speed]], he wears a white helmet with the number 10 on it, a green visor, a short-sleeved black T-shirt, long white pants and a belt with the number 10 on it.
==Known users==
*[[Ben Tennyson (Prime)|Ben Tennyson]]
*[[Ben Tennyson (No Watch Timeline)]] (formely)
*[[Skurd]] (formely)
==Appearances==
===Episodes===
Ben has been in every episode, movie and short except ''[[Ken 10]]'' and the "what-if?" episodes, ''[[Gwen 10]]'', ''[[Goodbye and Good Riddance]]'', and '''''[[Ben 10: Race Against Time]]''''', which feature Bens from alternate timelines. Whether or not Ben Prime appeared in the [[Ben 10 (2016)|reboot]] finale episode [[Alien X-Tinction]] is open to interpretation. Here's a list of all his appearances throughout the series.
28b9cbbafb68ac94e2de571ed654885514032470
1790
1764
2022-02-10T07:22:43Z
Ben 10 Fan
30645469
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{stub}}
{{charbox
|image={{tabs|{{tab2|OV|tempovben.png}}{{tab2|UAF|modelben.png}}{{tab2|OS|osben.png}}}}
|fullname=Benjamin Kirby Tennyson
|nickname=Ben
|alias=Ben 10<br>Ben Prime
|species=Human
|homeworld=Earth
|residence=Bellwood
|affiliations= Ben's Team<br>Plumbers<br>SECT<br>Chadzmuth<br>Team Tennyson (disbanded)<br>Alien Force (disbanded)<br>Zs'Skayr's Minions (formerly)<br>Galactic Enforcers (formerly)<br>Madison Elementary School (formerly)<br>Friedkin University (formerly)
|relationships=
|equipment=Omnitrix<br>Ascalon (formerly)<br>Ultimatrix (formerly)<br>
Prototype Omnitrix (destroyed)<br>Tenn-Speed (formerly)<br>Time Cycle (formerly)
|status=Alive
|first=And Then There Were 10
|last=
}}
'''Benjamin Kirby "Ben" Tennyson''' is the titular main protagonist of the Ben 10 Franchise. He was an ordinary ten-year-old boy until he found the [[Omnitrix (Prototype)|Omnitrix]], a powerful watch-like device that allowed him to turn into ten different aliens. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become famous in not only his hometown of [[Bellwood]] but on [[Earth]] and beyond. Ben has also been deputized by the Plumbers and has gained more aliens as time progressed.
==Appearance==
Ben's physical appearance has changed throughout the series from a ten-year-old to a sixteen-year-old. However, he retains some recurring characteristics. He has unkept brown hair, green eyes, pale skin, and he's quite skinny for his age, though he shows a lot of muscle definition due to being athletic.
===Regular Appearances===
In the '''Omniverse''' flashbacks in which he was 5 years old, Ben wore green overalls with a white shirt underneath it. White numbers saying "5 1/2" were on a black square in front of his overalls.
In the [[Ben 10 (2005)|original series]] and '''[[Ben 10: Omniverse|Omniverse]]''' flashbacks, Ben's usual clothes consisted of a black-striped, white shirt with short sleeves, military green cargo pants with side pockets with a black belt hidden under his shirt, and black and white sneakers with black stripes. Ben wore the prototype Omnitrix on his left wrist.
In '''[[Ben 10: Alien Force|Alien Force]]''' and '''[[Ben 10: Ultimate Alien|Ultimate Alien]]''', Ben wore a black shirt, blue jeans and a green jacket with white stripes on his left sleeve and the number 10 on the right, white socks, and black and white Converse-style shoes. Ben wore the prototype Recalibrated Omnitrix in '''Alien Force''' and the [[Ultimatrix]] in '''Ultimate Alien''' on his left wrist.
In '''Ultimate Alien''', he wore a standard Plumber suit during a few of his off-world excursions.
In '''Omniverse''', Ben wears a black shirt that has a green stripe in the middle with a white 10 and green stripes on the sides of his shirt. He wears brown cargo pants with pockets at the knees with a brown belt hidden under the shirt and green and white shoes. He later gains a white hooded jacket with green stripes on both arms and a green number 10 on the right side for some time. He wears the [[Omnitrix (Omniverse)|Omnitrix]] on his left wrist.
In '''Omniverse''', while riding the [[Tenn-Speed]], he wears a white helmet with the number 10 on it, a green visor, a short-sleeved black T-shirt, long white pants and a belt with the number 10 on it.
==Appearances==
===Episodes===
Ben has been in every episode, movie and short except ''[[Ken 10]]'' and the "what-if?" episodes, ''[[Gwen 10]]'', ''[[Goodbye and Good Riddance]]'', and '''''[[Ben 10: Race Against Time]]''''', which feature Bens from alternate timelines. Whether or not Ben Prime appeared in the [[Ben 10 (2016)|reboot]] finale episode [[Alien X-Tinction]] is open to interpretation. Here's a list of all his appearances throughout the series.
9b277e35234af34b2e506c2bf361998815d90b55
Omnitrix (Prototype)
0
345
1750
1698
2022-02-03T07:46:01Z
94.254.160.24
0
wikitext
text/x-wiki
{{itembox
|image=
{{tabs|{{tab2|Original (OS)|OmnitrixProt OS.png}}{{tab2|Recalibrated|af trix.png}}{{tab3|Original (UAF)|OmnitrixProt UAF.png}}{{tab4|OmnitrixProt OV.png|Original (OV)}}}
|name= Omnitrix
|nickname= {{Scroll|h = 80px|
* The watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* Stupid watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* placeholder
* placeholder
* placeholder
* placeholder
}}
|alias= Omnimatrix <ref>placeholder</ref>
|level= [[Technology Levels#Level_20|20]]
|function= DNA Alterer
|creator= [[Azmuth]]
|user= [[Ben Tennyson (Prime)]]
|status= Destroyed
|first= [[And Then There Were 10]]
|last= [[From Hedorium to Eternity]]
}}
Placeholder, general bio/description of the omnitrix.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Yuri Lowenthal]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in OV. {{storylink|Episode|Episode}}
== Known Transformations ==
=== Before Recalibration ===
{{Scroll|h = 200px|
{{ttable|
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
}}}}
{{-}}
=== After Recalibration ===
{{Scroll|h = 200px|
{{ttable|
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
}}}}
{{-}}
== Purpose ==
placeholder
== Features ==
placeholder
=== Settings ===
==== Before Recalibration ====
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:300px; text-align:center;" | '''Setting'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:200px; text-align:center;" | '''Details'''
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|}
{{-}}
==== After Recalibration ====
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:300px; text-align:center;" | '''Setting'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:200px; text-align:center;" | '''Details'''
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|}
== Appearances ==
placeholder, some dropdown menus for each show/season?
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''toy name'''
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''toy name'''
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
{{-}}
<noinclude>[[Category:Transformations]]</noinclude>
60f68156f52fa7bdc6be2978bf31f156b3e01313
1757
1750
2022-02-08T09:54:19Z
5.173.17.15
0
Undo revision 1750 by [[Special:Contributions/94.254.160.24|94.254.160.24]] ([[User talk:94.254.160.24|talk]])
wikitext
text/x-wiki
{{itembox
|image=
{{tabs|{{tab2|Original Series|OmnitrixProt OS.png}}{{tab2|Recalibrated|af trix.png}}}}
|name= Omnitrix
|nickname= {{Scroll|h = 80px|
* The watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* Stupid watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* placeholder
* placeholder
* placeholder
* placeholder
}}
|alias= Omnimatrix <ref>placeholder</ref>
|level= [[Technology Levels#Level_20|20]]
|function= DNA Alterer
|creator= [[Azmuth]]
|user= [[Ben Tennyson (Prime)]]
|status= Destroyed
|first= [[And Then There Were 10]]
|last= [[From Hedorium to Eternity]]
}}
Placeholder, general bio/description of the omnitrix.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Yuri Lowenthal]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in OV. {{storylink|Episode|Episode}}
== Known Transformations ==
=== Before Recalibration ===
{{Scroll|h = 200px|
{{ttable|
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
}}}}
{{-}}
=== After Recalibration ===
{{Scroll|h = 200px|
{{ttable|
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
}}}}
{{-}}
== Purpose ==
placeholder
== Features ==
placeholder
=== Settings ===
==== Before Recalibration ====
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:300px; text-align:center;" | '''Setting'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:200px; text-align:center;" | '''Details'''
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|}
{{-}}
==== After Recalibration ====
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:300px; text-align:center;" | '''Setting'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:200px; text-align:center;" | '''Details'''
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|}
== Appearances ==
placeholder, some dropdown menus for each show/season?
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''toy name'''
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''toy name'''
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
{{-}}
<noinclude>[[Category:Transformations]]</noinclude>
3491fa53849e381bebd92054a789bf34b8af94d8
1792
1757
2022-02-10T07:34:09Z
Ben 10 Fan
30645469
wikitext
text/x-wiki
{{itembox
|image=
{{tabs|{{tab2|Original Series|OmnitrixProt OS.png}}{{tab2|Recalibrated|af trix.png}}}}
|name= Omnitrix
|nickname= {{Scroll|h = 80px|
* The watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* Stupid watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* placeholder
* placeholder
* placeholder
* placeholder
}}
|alias= Omnimatrix <ref>placeholder</ref>
|level= [[Technology Levels#Level_20|20]]
|function= DNA Alterer
|creator= [[Azmuth]]
|user= [[Ben Tennyson (Prime)]]
|status= Destroyed
|first= [[And Then There Were 10]]
|last= [[From Hedorium to Eternity]]
}}
The '''Omnimatrix''', better known as the '''Omnitrix''', was a watch-like device that attached to [[Ben Tennyson (Classic)|Ben Tennyson]]'s wrist at the [[And Then There Were 10|beginning]] of the [[Ben 10 (2005)|series]] and is the device that [[Ben 10 (Franchise)|the franchise]] revolves around. The device is a portable library of intergalactic genetic data that allowed the wielder to alter their DNA at will and transform into a variety of different alien species, each with their own unique abilities.
The Omnitrix was destroyed in ''[[The Final Battle: Part 2]]'' by Ben and replaced with the [[Ultimatrix]].
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Yuri Lowenthal]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in OV. {{storylink|Episode|Episode}}
== Known Transformations ==
=== Before Recalibration ===
{{Scroll|h = 200px|
{{ttable|
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
}}}}
{{-}}
=== After Recalibration ===
{{Scroll|h = 200px|
{{ttable|
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
}}}}
{{-}}
== Purpose ==
placeholder
== Features ==
placeholder
=== Settings ===
==== Before Recalibration ====
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:300px; text-align:center;" | '''Setting'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:200px; text-align:center;" | '''Details'''
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|}
{{-}}
==== After Recalibration ====
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:300px; text-align:center;" | '''Setting'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:200px; text-align:center;" | '''Details'''
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|}
== Appearances ==
===Ben 10===
*[[Ben 10 (2005)/Episodes|All episodes]] except ''[[Ken 10]]''
*'''''[[Ben 10: Secret of the Omnitrix]]'''''
*'''''[[Ben 10: Race Against Time]]''''' <small>([[Race Against Time Timeline|alternate timeline]])</small>
*'''''[[Ben 10: Destroy All Aliens]]'''''
===Alien Force===
*[[Ben 10: Alien Force/Episodes|All episodes]]
*'''''[[Ben 10: Alien Swarm]]'''''
===Ultimate Alien===
====Season 2====
*''[[The Forge of Creation]]'' <small>(first reappearance)</small>
====Season 3====
*''[[Ben 10,000 Returns]]'' <small>([[Race Against Time Timeline|alternate timeline]]; projection)</small>
*''[[The Ultimate Enemy: Part 2]]'' <small>(flashback)</small>
===Omniverse===
====Season 1====
*''[[The More Things Change: Part 1]]'' <small>(first reappearance)</small>
*''[[A Jolt from the Past]]''
*''[[Trouble Helix]]''
*''[[It Was Them]]''
*''[[Of Predators and Prey: Part 2]]''
====Season 2====
*''[[Malefactor]]''
*''[[Arrested Development]]''
*''[[Showdown: Part 1]]''
*''[[Showdown: Part 2]]''
====Season 3====
*''[[Ben Again]]''
*''[[Special Delivery]]''
====Season 4====
*''[[Max's Monster]]''
*''[[Evil's Encore]]''
*''[[Mud Is Thicker Than Water]]''
*''[[For a Few Brains More]]''
====Season 5====
*''[[And Then There Was Ben]]''
====Season 6====
*''[[Collect This]]'' <small>(cameo)</small>
*''[[Weapon XI: Part 2]]''
====Season 7====
*''[[The Ballad of Mr. Baumann]]''
====Season 8====
*''[[From Hedorium to Eternity]]''
== Toys ==
===Ben 10===
*Voice Changer Set
*Omnitrix Set with Punching Sounds
*Omnitrix FX
*Omnitrix Alien Viewer
*Deluxe Omnitrix
*Digital Omnitrix
*Omnitrix Mini
*Omnitrix LCD Game
*Transforming Alien Arm
*Omnitrix Disc Shooter
===Alien Force===
*Omnitrix
*Ultimate Omnitrix
*Omnitrix Special Hologram 10-pack with Exclusive Alien X Hologram
*Omnitrix X10
*Omnitrix Disc Viewer 1
*Omnitrix Disc Viewer 2
*Omnitrix Bi-Optixx
*Omnitrix Illuminator
*Alien Swarm Omnitrix Illuminator
*Omnitrix Mini
*Omnitrix Batle Hero
*Omnitrix Disc Shooter
{{-}}
==Notes==
===Trivia===
*The Omnitrix was originally called the Megawatt (alternatively spelled "Megawhat"), short for Megadeoxyribonucleictransdimensionaltransforminalnumerator.
===Foreign Names===
*''Language:Polish'' '''Prototyp Omnitrixa''' (''From original english name'')
{{Chargallery}}
{{-}}
<noinclude>[[Category:Transformations]]</noinclude>
f9b714ca607731337f19ba2fb2d49739c07daa50
1808
1792
2022-04-23T08:57:25Z
Jaswacker
30585766
wikitext
text/x-wiki
{{itembox
|image=
{{tabs|{{tab2|Original Series|OmnitrixProt OS.png}}{{tab2|Recalibrated|af trix.png}}}}
|name= Omnitrix
|nickname= {{Scroll|h = 80px|
* The watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* Stupid watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* placeholder
* placeholder
* placeholder
* placeholder
}}
|alias= Omnimatrix <ref>placeholder</ref>
|level= [[Technology Levels#Level_20|20]]
|function= DNA Alterer
|creator= [[Azmuth]]
|user= [[Ben Tennyson (Prime)]]
|status= Destroyed
|first= [[And Then There Were 10]]
|last= [[From Hedorium to Eternity]]
}}
Placeholder, general bio/description of the omnitrix.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in OV. {{storylink|Episode|Episode}}
== Known Transformations ==
=== Before Recalibration ===
{{Scroll|h = 200px|
{{ttable|
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
}}}}
{{-}}
=== After Recalibration ===
{{Scroll|h = 200px|
{{ttable|
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
}}}}
{{-}}
== Purpose ==
placeholder
== Features ==
placeholder
=== Settings ===
==== Before Recalibration ====
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:300px; text-align:center;" | '''Setting'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:200px; text-align:center;" | '''Details'''
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|}
{{-}}
==== After Recalibration ====
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:300px; text-align:center;" | '''Setting'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:200px; text-align:center;" | '''Details'''
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|}
== Appearances ==
placeholder, some dropdown menus for each show/season?
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''toy name'''
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''toy name'''
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
{{-}}
<noinclude>[[Category:Transformations]]</noinclude>
badfc5a92a28c80bc867a97e3917822e9a4addce
1810
1808
2022-04-23T08:58:03Z
Jaswacker
30585766
Protected "[[Omnitrix (Prototype)]]" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))
wikitext
text/x-wiki
{{itembox
|image=
{{tabs|{{tab2|Original Series|OmnitrixProt OS.png}}{{tab2|Recalibrated|af trix.png}}}}
|name= Omnitrix
|nickname= {{Scroll|h = 80px|
* The watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* Stupid watch <small>(Ben Tennyson)</small><ref>placeholder</ref>
* placeholder
* placeholder
* placeholder
* placeholder
}}
|alias= Omnimatrix <ref>placeholder</ref>
|level= [[Technology Levels#Level_20|20]]
|function= DNA Alterer
|creator= [[Azmuth]]
|user= [[Ben Tennyson (Prime)]]
|status= Destroyed
|first= [[And Then There Were 10]]
|last= [[From Hedorium to Eternity]]
}}
Placeholder, general bio/description of the omnitrix.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history in OV. {{storylink|Episode|Episode}}
== Known Transformations ==
=== Before Recalibration ===
{{Scroll|h = 200px|
{{ttable|
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
}}}}
{{-}}
=== After Recalibration ===
{{Scroll|h = 200px|
{{ttable|
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
{{tt|image|placeholder|placeholder}}
}}}}
{{-}}
== Purpose ==
placeholder
== Features ==
placeholder
=== Settings ===
==== Before Recalibration ====
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:300px; text-align:center;" | '''Setting'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:200px; text-align:center;" | '''Details'''
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|}
{{-}}
==== After Recalibration ====
{|cellpadding=2 cellspacing=2 width=90% style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px; margin:auto;"
|align="left" colspan="1" style="background:#02b70c; color:#fff; border-radius:5px; width:300px; text-align:center;" | '''Setting'''
|align="left" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px; width:200px; text-align:center;" | '''Details'''
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|-
|colspan="1" style="width:300px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |setting
|colspan="2" style="width:200px; text-align:center; font-size: 12px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:10px;" |details
|}
== Appearances ==
placeholder, some dropdown menus for each show/season?
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''toy name'''
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''toy name'''
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
{{-}}
<noinclude>[[Category:Transformations]]</noinclude>
badfc5a92a28c80bc867a97e3917822e9a4addce
Fandom
0
237
1751
1660
2022-02-04T08:14:41Z
Roxalotl
30644625
/* Ben10toys.net (2006-2018) */
wikitext
text/x-wiki
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Roxy, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Heatblast.net (2006-2008?) ===
One of the earliest fansites, having originated in 2006 but ceasing to exist around a month before Alien Force premiered.
=== Ben10toys.net (2006-2018, 2021*) ===
Hosted on a service called Ning, the forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally run by a user named Agent Spectre, and later given to toy reviewer Stu Carter of Atamaii.com, who maintained the site until sometime in 2018. One day in 2021, it reappeared for a single day, only to go back down again.
<center><gallery widths="110px" heights="110px">
File:Toysdotnet_2006.png| Ben10toys.net circa 2006.
File:Toysdotnet_2010_banner.png| The site's banner circa 2010.
File:Toysdotnet_Final.png| Ben10toys.net in its final years.
</gallery></center>
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
056d3bb541d942f832dc1fddbc1d906e243623dd
1752
1751
2022-02-04T08:15:23Z
Roxalotl
30644625
/* Ben10toys.net (2006-2018, 2021*) */
wikitext
text/x-wiki
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Roxy, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Heatblast.net (2006-2008?) ===
One of the earliest fansites, having originated in 2006 but ceasing to exist around a month before Alien Force premiered.
=== Ben10toys.net (2006-2018, 2021*) ===
Hosted on a service called Ning, the forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally run by a user named Agent Spectre, and later given to toy reviewer Stu Carter of Atamaii.com, who maintained the site until sometime in 2018. *In 2021, the site reappeared for a single day, only to go back down again.
<center><gallery widths="110px" heights="110px">
File:Toysdotnet_2006.png| Ben10toys.net circa 2006.
File:Toysdotnet_2010_banner.png| The site's banner circa 2010.
File:Toysdotnet_Final.png| Ben10toys.net in its final years.
</gallery></center>
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
72e250024968c52aa89fedc2a06c2fca64ef3331
Omnitrix (Completed)
0
422
1760
1729
2022-02-08T10:23:53Z
5.173.17.15
0
wikitext
text/x-wiki
{{stub}}
{{itembox
|image= {{tabs|{{tab2|Ultimate Alien|Omnitrix2 UAF.png}}{{tab2|Omniverse|Omnitrix Prime.png}}}}
|name=Omnimatrix
|nickname=}}
Omnitrix- is one of Azmuth's creations and the successor of the [[Ultimatrix]].
==Appearance==
The Omnitrix resembles a digital wristwatch. Its faceplate is now square instead of round and has a white, green, and black color scheme. The faceplate is black with two green stripes forming an outline for the hourglass of the intergalactic peace symbol. When the faceplate is slid back, the Omnitrix's core is revealed.
In Ben 10: Ultimate Alien Omnitrix looks exactly same but in UA art style.
==Appearances==
===Ultimate Alien===
====Season 3====
*''[[The Ultimate Enemy: Part 2]]'' <small>(first appearance)</small>
===Omniverse===
*''[[Ben 10: Omniverse/Episodes|All episodes]]'' except ''[[From Hedorium to Eternity]]''.
==See also==
*[[Omnitrix (Completed)/Gallery|Gallery]]
b9bf1f1bf3b74d880811aac6bae84c5f744e4c03
1791
1760
2022-02-10T07:24:11Z
Ben 10 Fan
30645469
wikitext
text/x-wiki
{{stub}}
{{itembox
|image= {{tabs|{{tab2|Ultimate Alien|Omnitrix2 UAF.png}}{{tab2|Omniverse|Omnitrix Prime.png}}}}
|name=Omnimatrix
|nickname=}}
Omnitrix- is one of Azmuth's creations and the successor of the [[Ultimatrix]].
==Appearance==
The Omnitrix resembles a digital wristwatch. Its faceplate is now square instead of round and has a white, green, and black color scheme. The faceplate is black with two green stripes forming an outline for the hourglass of the intergalactic peace symbol. When the faceplate is slid back, the Omnitrix's core is revealed.
In Ben 10: Ultimate Alien Omnitrix looks exactly same but in UA art style.
==Appearances==
===Ultimate Alien===
====Season 3====
*''[[The Ultimate Enemy: Part 2]]'' <small>(first appearance)</small>
===Omniverse===
*''[[Ben 10: Omniverse/Episodes|All episodes]]'' except ''[[From Hedorium to Eternity]]''.
==Known Users==
*[[Ben Tennyson (Prime)]]
*[[Ben Tennyson (No Watch Timeline)]] (formely)
*[[Skurd]] (formely)
==See also==
*[[Omnitrix (Completed)/Gallery|Gallery]]
3096490aac2c7294f77ea1cd2341aedc5deb0fd7
1807
1791
2022-04-23T08:55:32Z
Jaswacker
30585766
Replaced content with "[[File:Omnitrix Prime.png|thumb]]"
wikitext
text/x-wiki
[[File:Omnitrix Prime.png|thumb]]
bf537a2c847064ef656b1f3c7ade93e968a41b36
1814
1807
2022-04-23T09:00:00Z
Jaswacker
30585766
Protected "[[Omnitrix (Completed)]]" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))
wikitext
text/x-wiki
[[File:Omnitrix Prime.png|thumb]]
bf537a2c847064ef656b1f3c7ade93e968a41b36
Omnitrix (Reboot)
0
423
1762
1658
2022-02-08T10:41:54Z
5.173.17.15
0
wikitext
text/x-wiki
{{itembox
|image=
{{tabs|{{tab2|Season 4-5|reboottrix3.png}}{{tab2|Season 3|reboottrix2.png}}{{tab2|Season 2|reboottrix1.png}}{{tab2|Season 1|OmnitrixReboot 1.png}}}}
|name= Omnitrix
|nickname= {{Scroll|h = 80px|
* placeholder <ref>placeholder</ref>
* placeholder
* placeholder
* placeholder
}}
|alias= placeholder <ref>placeholder</ref>
|level= [[Technology Levels#Level_20|20]]
|function= DNA Alterer
|creator= [[Azmuth (Reboot)]]
|user= [[Ben Tennyson (Reboot)]]
|status= Active
|first= [[Waterfilter]]
|last= [[Alien X-Tinction]]
}}
The '''Omnitrix''' is a watch-like device that attached to [[Ben Tennyson (Reboot)|Ben Tennyson]]'s wrist and is the device that the [[Ben 10 (2016)|series]] revolves around.
==Appearance==
===Season 1===
The Omnitrix looks like a very big wristwatch, primarily black and grey in color, with a grey dial in the middle (like a watch face) which has a green hourglass shape. When Ben selects his aliens, it shows the alien's silhouette.
In ''[[Omni-Tricked: Part 3]]'', [[Phil Billings (Reboot)|Phil]] put on a blue device on the outer side of the Omnitrix. It was supposed to control the temporary malfunction on switching from alien to alien.
===Season 2===
The Omnitrix was upgraded by Ben using [[Upgrade (Reboot)|Upgrade]] in ''[[Omni-Tricked: Part 4]]''. The white chords and dial were silver and green. The four buttons on the faceplate were replaced with grey squares. There was an additional band of dark grey running around the center of the Omnitrix, the activation button was on this strip.
===Season 3===
The Omnitrix got rebooted in ''[[Innervasion Part 5: High Override]]''. The rim of the dial was white, the squares on the last upgrade were replaced by green arrows, and the area behind the hourglass and the wristband both became grey. The outer band was black with green arrows, and the sides of the dial and the ends of the wristband were silver. The top of the grey wristband had a green hourglass underneath the dial, and the top of the dial was black. Unlike the Omnitrix's last two versions, the third version did not have its tube-like circuitry.
The Omnitrix in [[Crossover Nexus|''Crossover Nexus'']] looks exactly the same as season 3 but is adapted to the artstyle of [https://ok-ko.fandom.com/wiki/OK_K.O.!_Let%27s_Be_Heroes '''O.K K.O Let's Be Heroes!'''].
The Omnitrix in ''[[And Xingo Was His Name-O]]'' looks the same but looks more cartoonish.
===Season 4 and 5===
As of ''[[Summer Breakers]]'', the latest upgrade colors the entire device almost completely grey, with the black ends and the arrows on the dial being absent. The hourglass coloring now remains 2-tone grey, and white support tubes surronded the dial.
The Omnitrix in [[Xingo's World|''Xingo's World'']] looks exactly the same as season 4 but looks more cartoonish.
===Alternate Dimensions===
In ''[[Alien X-Tinction]]'', the Omnitrix in Dimension 12041.5 looks exactly the same as Season 4 except the white tubes are facing the left side and has a black square.
The [[Ben Tennyson (Original Series Dimension)|'''Original Series''' Dimension]]'s Omnitrix looks the same as its Main Timeline counterpart's first design.
The [[Ben Tennyson (Alien Force Dimension)|'''Alien Force''' Dimension]]'s Omnitrix resembles a slimmer and sleeker watch-like shape, now with a green wristband, and the face of the dial becoming black and green. The inside of the hourglass symbol glowed in different colours during certain moments; these colours signify the mode that the Omnitrix was presently in. When '''Alien Force''' Ben is selecting his aliens it shows the alien's hologram standing on the core rather than the alien's silhouette.
The [[Ben Tennyson (Omniverse Dimension)|'''Omniverse''' Dimension]]'s Omnitrix resembles a digital wristwatch. Its faceplate is now square instead of round and has a white, green, and black color scheme. The faceplate is black with two green stripes forming an outline for the hourglass of the intergalactic peace symbol. When the faceplate is slid back, the Omnitrix's core is revealed.
The Omnitrix of [[Maximilian Tennyson|Maximillian]]'s Dimension looks exactly like the '''Omniverse''' Dimension's except the inside of the Omnitrix is green and the faceplate can become red when it times out. The vents are also absent from this Omnitrix.
[[Gwen Tennyson (Gwen 10 Dimension)|Gwen 10's]] Omnitrix looks exactly the same as Ben's Omnitrix's Season 1 design except the button on the body and the circles on the dial is absent.
===Alternate Timelines===
Omnitrices from aborted timelines from episode ''[[Ben Again and Again]]'' looks exactly same as Season 1 version.
'''SEE ARTICLE:'''[[Omnitrix (Disambiguation)]].
==Known Users==
*[[Vilgax (Reboot|Vilgax]] (formely)
*[[Ben Tennyson (Reboot)|Ben Tennyson]]
*[[Billy Billion (Reboot)|Billy Billion]] (formely;aborted timelines)
*[[Gwen Tennyson (Reboot)|Gwen Tennyson]] (formely;aborted timelines)
*[[Ben Tennyson (Evil Ben Dimension)|Ben Tennyson (Evil Ben Dimension) (as [[Alien X (Evil Ben Dimension)|Alien X]]; formely)
==See also==
*[[Omnitrix (Disambiguation)]]
*[[Omnitrix (Reboot)/Gallery|Gallery]]
2d868a6f95093dad3dbb1f8f0c158554f9ff2f2a
1799
1762
2022-04-16T15:23:38Z
5.173.17.30
0
wikitext
text/x-wiki
{{itembox
|image=
{{tabs|{{tab2|Season 4-5|reboottrix3.png}}{{tab2|Season 3|reboottrix2.png}}{{tab2|Season 2|reboottrix1.png}}{{tab2|Season 1|OmnitrixReboot 1.png}}}}
|name= Omnitrix
|nickname= {{Scroll|h = 80px|
* placeholder <ref>placeholder</ref>
* placeholder
* placeholder
* placeholder
}}
|alias= placeholder <ref>placeholder</ref>
|level= [[Technology Levels#Level_20|20]]
|function= DNA Alterer
|creator= [[Azmuth (Reboot)]]
|user= [[Ben Tennyson (Reboot)]]
|status= Active
|first= [[Waterfilter]]
|last= [[Alien X-Tinction]]
}}
The '''Omnitrix''' is a watch-like device that attached to [[Ben Tennyson (Reboot)|Ben Tennyson]]'s wrist and is the device that the [[Ben 10 (2016)|series]] revolves around.
==Appearance==
===Season 1===
The Omnitrix looks like a very big wristwatch, primarily black and grey in color, with a grey dial in the middle (like a watch face) which has a green hourglass shape. When Ben selects his aliens, it shows the alien's silhouette.
In ''[[Omni-Tricked: Part 3]]'', [[Phil Billings (Reboot)|Phil]] put on a blue device on the outer side of the Omnitrix. It was supposed to control the temporary malfunction on switching from alien to alien.
===Season 2===
The Omnitrix was upgraded by Ben using [[Upgrade (Reboot)|Upgrade]] in ''[[Omni-Tricked: Part 4]]''. The white chords and dial were silver and green. The four buttons on the faceplate were replaced with grey squares. There was an additional band of dark grey running around the center of the Omnitrix, the activation button was on this strip.
===Season 3===
The Omnitrix got rebooted in ''[[Innervasion Part 5: High Override]]''. The rim of the dial was white, the squares on the last upgrade were replaced by green arrows, and the area behind the hourglass and the wristband both became grey. The outer band was black with green arrows, and the sides of the dial and the ends of the wristband were silver. The top of the grey wristband had a green hourglass underneath the dial, and the top of the dial was black. Unlike the Omnitrix's last two versions, the third version did not have its tube-like circuitry.
The Omnitrix in [[Crossover Nexus|''Crossover Nexus'']] looks exactly the same as season 3 but is adapted to the artstyle of [https://ok-ko.fandom.com/wiki/OK_K.O.!_Let%27s_Be_Heroes '''O.K K.O Let's Be Heroes!'''].
The Omnitrix in ''[[And Xingo Was His Name-O]]'' looks the same but looks more cartoonish.
===Season 4 and 5===
As of ''[[Summer Breakers]]'', the latest upgrade colors the entire device almost completely grey, with the black ends and the arrows on the dial being absent. The hourglass coloring now remains 2-tone grey, and white support tubes surronded the dial.
The Omnitrix in [[Xingo's World|''Xingo's World'']] looks exactly the same as season 4 but looks more cartoonish.
===Alternate Dimensions===
In ''[[Alien X-Tinction]]'', the Omnitrix in Dimension 12041.5 looks exactly the same as Season 4 except the white tubes are facing the left side and has a black square.
The [[Ben Tennyson (Original Series Dimension)|'''Original Series''' Dimension]]'s Omnitrix looks the same as its Main Timeline counterpart's first design.
The [[Ben Tennyson (Alien Force Dimension)|'''Alien Force''' Dimension]]'s Omnitrix resembles a slimmer and sleeker watch-like shape, now with a green wristband, and the face of the dial becoming black and green. The inside of the hourglass symbol glowed in different colours during certain moments; these colours signify the mode that the Omnitrix was presently in. When '''Alien Force''' Ben is selecting his aliens it shows the alien's hologram standing on the core rather than the alien's silhouette.
The [[Ben Tennyson (Omniverse Dimension)|'''Omniverse''' Dimension]]'s Omnitrix resembles a digital wristwatch. Its faceplate is now square instead of round and has a white, green, and black color scheme. The faceplate is black with two green stripes forming an outline for the hourglass of the intergalactic peace symbol. When the faceplate is slid back, the Omnitrix's core is revealed.
The Omnitrix of [[Maximilian Tennyson|Maximillian]]'s Dimension looks exactly like the '''Omniverse''' Dimension's except the inside of the Omnitrix is green and the faceplate can become red when it times out. The vents are also absent from this Omnitrix.
[[Gwen Tennyson (Gwen 10 Dimension)|Gwen 10's]] Omnitrix looks exactly the same as Ben's Omnitrix's Season 1 design except the button on the body and the circles on the dial is absent.
===Alternate Timelines===
Omnitrices from aborted timelines from episode ''[[Ben Again and Again]]'' looks exactly same as Season 1 version.
'''SEE ARTICLE:'''[[Omnitrix (Disambiguation)]].
==Known Users==
*[[Vilgax (Reboot|Vilgax]] (formely)
*[[Ben Tennyson (Reboot)|Ben Tennyson]]
*[[Billy Billion (Reboot)|Billy Billion]] (formely;aborted timelines)
*[[Gwen Tennyson (Reboot)|Gwen Tennyson]] (formely;aborted timelines)
*[[Ben Tennyson (Evil Ben Dimension)|Ben Tennyson (Evil Ben Dimension)]] (as [[Alien X (Evil Ben Dimension)|Alien X]]; formely)
==See also==
*[[Omnitrix (Disambiguation)]]
*[[Omnitrix (Reboot)/Gallery|Gallery]]
375c9c1cac931bf3d603e089f2a890616f0d32d1
1809
1799
2022-04-23T08:57:57Z
Jaswacker
30585766
wikitext
text/x-wiki
{{itembox
|image=
{{tabs|{{tab2|Season 4|reboottrix3.png}}{{tab2|Season 3|reboottrix2.png}}{{tab2|Season 2|reboottrix1.png}}{{tab2|Season 1|OmnitrixReboot 1.png}}}}
|name= Omnitrix
|nickname= {{Scroll|h = 80px|
* placeholder <ref>placeholder</ref>
* placeholder
* placeholder
* placeholder
}}
|alias= placeholder <ref>placeholder</ref>
|level= [[Technology Levels#Level_20|20]]
|function= DNA Alterer
|creator= [[Azmuth (Reboot)]]
|user= [[Ben Tennyson (Reboot)]]
|status= Active
|first= [[Waterfilter]]
|last= [[Ben 10 Versus The Universe: The Movie]]
}}
98bb69a4c8be429de0dea837bd0042d524a3c31f
1811
1809
2022-04-23T08:58:08Z
Jaswacker
30585766
Protected "[[Omnitrix (Reboot)]]" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))
wikitext
text/x-wiki
{{itembox
|image=
{{tabs|{{tab2|Season 4|reboottrix3.png}}{{tab2|Season 3|reboottrix2.png}}{{tab2|Season 2|reboottrix1.png}}{{tab2|Season 1|OmnitrixReboot 1.png}}}}
|name= Omnitrix
|nickname= {{Scroll|h = 80px|
* placeholder <ref>placeholder</ref>
* placeholder
* placeholder
* placeholder
}}
|alias= placeholder <ref>placeholder</ref>
|level= [[Technology Levels#Level_20|20]]
|function= DNA Alterer
|creator= [[Azmuth (Reboot)]]
|user= [[Ben Tennyson (Reboot)]]
|status= Active
|first= [[Waterfilter]]
|last= [[Ben 10 Versus The Universe: The Movie]]
}}
98bb69a4c8be429de0dea837bd0042d524a3c31f
Ben Tennyson (Disambiguation)
0
24
1765
1647
2022-02-08T10:52:20Z
5.173.17.15
0
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
(iMAGE UNVALIBE)|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|Evil Ben from ''Alien X-Tinction'']]
</gallery></center>
==Alternate Omnitrix/Ultimatrix users==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Characters/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|The ''Original Series'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|The ''Alien Force'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|The ''Ultimate Alien'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|The ''Omniverse'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Maximillian's Dimension)]]|[[Minor Characters/Humans#Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Dimension 12041.5)]]|[[Minor Characters/Humans#Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
==Alternate Timelines==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
(iMAGE UNAVALIBE)|link=[[Ben Tennyson (Gweniverse]]|[[Ben Tennyson (Gweniverse)|Ben Tennyson (from Gweniverse)]]
</gallery></center>
==Other==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
d443196b52fa56c3eeae51b634fd240893a31f71
1766
1765
2022-02-08T10:52:46Z
5.173.17.15
0
/* Alternate Omnitrix/Ultimatrix users */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
(iMAGE UNVALIBE)|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|Evil Ben from ''Alien X-Tinction'']]
</gallery></center>
==Alternate Versions==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Characters/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|The ''Original Series'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|The ''Alien Force'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|The ''Ultimate Alien'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|The ''Omniverse'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Maximillian's Dimension)]]|[[Minor Characters/Humans#Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Dimension 12041.5)]]|[[Minor Characters/Humans#Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
==Alternate Timelines==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
(iMAGE UNAVALIBE)|link=[[Ben Tennyson (Gweniverse]]|[[Ben Tennyson (Gweniverse)|Ben Tennyson (from Gweniverse)]]
</gallery></center>
==Other==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
e1048f84050c9fa81eaeb77428d21e03366aaa7e
1801
1766
2022-04-23T08:19:41Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|Evil Ben from ''Alien X-Tinction'']]
</gallery></center>
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Characters/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|The ''Original Series'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|The ''Alien Force'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|The ''Ultimate Alien'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|The ''Omniverse'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Maximillian's Dimension)]]|[[Minor Characters/Humans#Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Dimension 12041.5)]]|[[Minor Characters/Humans#Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'']]
</gallery></center>
==Other==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
c0971fae79dc01f19ec700b80cddd33d573417d1
1802
1801
2022-04-23T08:21:09Z
Jaswacker
30585766
Protected "[[Ben Tennyson (Disambiguation)]]": Counter-productive edit warring ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|Evil Ben from ''Alien X-Tinction'']]
</gallery></center>
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Characters/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|The ''Original Series'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|The ''Alien Force'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|The ''Ultimate Alien'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|The ''Omniverse'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Maximillian's Dimension)]]|[[Minor Characters/Humans#Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Dimension 12041.5)]]|[[Minor Characters/Humans#Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'']]
</gallery></center>
==Other==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
c0971fae79dc01f19ec700b80cddd33d573417d1
Ben 10: Alien Force
0
197
1769
713
2022-02-08T11:00:59Z
5.173.17.15
0
wikitext
text/x-wiki
'''Ben 10: Alien Force''' is the second iteration of the '''Ben 10''' franchise and the sequel of the original '''[[Ben 10]]''' series. It was created by the studio [[Man of Action]] and produced by [[wikipedia:Cartoon Network Studios|Cartoon Network Studios]].
The storyline is notable for having matured the characters and taking a darker tone, with increased narrative complexity and frequency of character deaths. Despite initially mixed reactions to the change from fans, '''Alien Force''' garnered positive reviews and successful ratings, leading to further continuation of the franchise and thus the production of a sequel series called '''[[Ben 10: Ultimate Alien]]'''.
bef385ab9d77886f1f9643b6ea5fd9dc01af3cd1
Ben 10: Ultimate Alien
0
192
1770
703
2022-02-08T11:02:04Z
5.173.17.15
0
wikitext
text/x-wiki
''Ben 10: Ultimate Alien''' is the third iteration of [[Ben 10 (Franchise)|the franchise]] and the sequel of '''[[Ben 10: Alien Force]]'''. The art and story styles in this series are similar to '''Alien Force'''. The series follows 16-year old [[Ben Tennyson (Prime)|Ben]] and [[Gwen Tennyson (Prime)|Gwen]] along with 17-year old [[Kevin Levin (Prime)|Kevin]]. This series is followed-up by another sequel series called '''[[Ben 10: Omniverse]]'''.
21edb90afca8af4b73ae4aad88b7bfb7a6065c7a
Ben 10: Omniverse
0
193
1771
705
2022-02-08T11:02:45Z
5.173.17.15
0
wikitext
text/x-wiki
'''Ben 10: Omniverse''' is the fourth iteration of the '''Ben 10''' franchise. It is also the sequel to '''[[Ben 10: Ultimate Alien]]'''.
c9b429e28b092be1e1821b69ce60bfe5bcf0501b
1813
1771
2022-04-23T08:59:12Z
Jaswacker
30585766
Blanked the page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Ben 10 (2005)
0
80
1772
1134
2022-02-08T11:03:21Z
5.173.17.15
0
wikitext
text/x-wiki
'''Ben 10''' ''(also known as '''Ben 10 Classic''')'' is an American animated television series created by Man of Action (a group consisting of Joe Casey, Joe Kelly, Duncan Rouleau, and Steven T. Seagle), and is the first installment of the Ben 10 franchise. Series got [[Ben 10 (2016)|reboot]] in 2016.
[[Ben 10 (2005)/Episodes]]
ea5057f56bdd0ede136b5b1ddfe8660f2c43cc55
Ben 10 (2016)
0
183
1773
644
2022-02-08T11:04:13Z
5.173.17.15
0
wikitext
text/x-wiki
'''Ben 10''' is the fifth iteration of the [[The Ben 10 Franchise|'''Ben 10''' franchise]]. It serves as a reboot to the television series and is loosely based upon the [[Ben 10 (2005)|original series]] serving as a parallel timeline to the Classic series.
44025f5b0c28451afaa769522d8ebe9c6ee614f7
Ben 10
0
99
1774
365
2022-02-08T11:05:36Z
5.173.17.15
0
wikitext
text/x-wiki
Ben 10 is a franchise original created by Man of Action and Cartoon Network, spanning across five series since 2005.
* [[Ben 10 (2005)|Ben 10 (2005-2008)]]
* [[Ben 10: Alien Force]] (2008-2010)
* [[Ben 10: Ultimate Alien]] (2010-2012)
* [[Ben 10: Omniverse]] (2012-2014)
* [[Ben 10 (2016)|Ben 10 (2016-2021)]]
670efc1437c549ad1fea4e8384881506fe6daba2
1775
1774
2022-02-08T11:06:36Z
5.173.17.15
0
wikitext
text/x-wiki
Ben 10 is a franchise original created by Man of Action and Cartoon Network, spanning across five series since 2005.
==Ended==
* [[Ben 10 (2005)|Ben 10 (2005-2008)]]
* [[Ben 10: Alien Force]] (2008-2010)
* [[Ben 10: Ultimate Alien]] (2010-2012)
* [[Ben 10: Omniverse]] (2012-2014)
* [[Ben 10 (2016)|Ben 10 (2016-2021)]]
==Active==
==Upcoming==
*[[Ben 10 (Upcoming Series)]]
d18c5faaade19b045864f5cb7ebe7cdb348da0d8
User talk:Roxalotl
3
483
1784
1741
2022-02-09T09:54:57Z
Ben 10 Fan
30645469
/* Hi */ new section
wikitext
text/x-wiki
Hi. [[Special:Contributions/71.223.131.114|71.223.131.114]] 00:30, 29 October 2021 (UTC)
== Hi ==
Hi
09a15ef6e9de9a48ca24a9698283a4f80ec2a76b
1785
1784
2022-02-09T09:55:45Z
Ben 10 Fan
30645469
/* Hi */
wikitext
text/x-wiki
Hi. [[Special:Contributions/71.223.131.114|71.223.131.114]] 00:30, 29 October 2021 (UTC)
==From [[User:Ben 10 Fan|Ben 10 Fan]]==
Hi. I like your fanarts of Omnitrices from alternate timeline
d4eaf3dd5706572a26d5b00a7f6614a364a6d309
Main Page/series
0
60
1806
1670
2022-04-23T08:41:38Z
Jaswacker
30585766
wikitext
text/x-wiki
<div align="center">
{|cellpadding="5" cellspacing="0" width="100%"
|colspan="2" style="border-bottom:1px solid #ffffff" align="center" valign="top"|
[[File:originalserieslogo.png|100px|link=Ben 10 (2005)]]<br>
'''''[[Ben 10 (2005)]]'''''
|-
|style="border-bottom:1px solid #ffffff;" align="center" valign="top" width="50%"|
[[File:alienforcelogo.png|100px|link=Ben 10: Alien Force]]<br>
'''''[[Ben 10: Alien Force]]'''''
|style="border-bottom:1px solid #ffffff; border-left:1px solid #ffffff" align="center" valign="top" width="50%"|
[[File:ultimatealienlogo.png|100px|link=Ben 10: Ultimate Alien]]<br>
'''''[[Ben 10: Ultimate Alien]]'''''<br>
|-
|style="border-bottom:1px solid #ffffff;" align="center" valign="top" width="50%"|
[[File:omniverselogo.png|100px|link=Ben 10: Omniverse]]<br>
'''''[[Ben 10: Omniverse]]'''''
|style="border-bottom:1px solid #ffffff; border-left:1px solid #ffffff" align="center" valign="top" width="50%"|
[[File:rebootlogo.png|100px|link=Ben 10 (Reboot)]]<br>
'''''[[Ben 10 (2016)]]'''''<br>
|}</div>
718be01c05e2f1250faf287d614734722aa88081
Transformations/Prime
0
95
1812
1532
2022-04-23T08:58:20Z
Jaswacker
30585766
Protected "[[Transformations/Prime]]" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{:Transformations/Prime/disambig}}
__TOC__
{{-}}
== Introduced in ''[[Ben 10 (2005)|Ben 10]]'' ==
<center><gallery widths="75px" heights="130px">
File:PLACEHOLDER2.png|link=[[Heatblast (Prime)]]|[[Heatblast (Prime)|Heatblast]]
File:PLACEHOLDER2.png|link=[[Wildmutt]]|[[Wildmutt]]
File:PLACEHOLDER2.png|link=[[Diamondhead (Prime)]]|[[Diamondhead (Prime)|Diamondhead]]
File:PLACEHOLDER2.png|link=[[XLR8 (Prime)]]|[[XLR8 (Prime)|XLR8]]
File:PLACEHOLDER2.png|link=[[Greymatter (Prime)]]|[[Grey Matter (Prime)|Grey Matter]]
File:PLACEHOLDER2.png|link=[[Four Arms (Prime)]]|[[Four Arms (Prime)|Four Arms]]
File:PLACEHOLDER2.png|link=[[Stinkfly (Prime)]]|[[Stinkfly (Prime)|Stinkfly]]
File:PLACEHOLDER2.png|link=[[Ripjaws]]|[[Ripjaws]]
File:PLACEHOLDER2.png|link=[[Upgrade (Prime)]]|[[Upgrade (Prime)|Upgrade]]
File:PLACEHOLDER2.png|link=[[Ghostfreak]]|[[Ghostfreak]]
File:PLACEHOLDER2.png|link=[[Cannonbolt (Prime)]]|[[Cannonbolt (Prime)|Cannonbolt]]
File:PLACEHOLDER2.png|link=[[Wildvine (Prime)]]|[[Wildvine (Prime)|Wildvine]]
File:PLACEHOLDER2.png|link=[[Blitzwolfer]]|[[Blitzwolfer]]
File:PLACEHOLDER2.png|link=[[Snare-oh]]|[[Snare-oh]]
File:PLACEHOLDER2.png|link=[[Frankenstrike]]|[[Frankenstrike]]
File:PLACEHOLDER2.png|link=[[Upchuck]]|[[Upchuck]] <small>(Perk)</small>
File:PLACEHOLDER2.png|link=[[Ditto]]|[[Ditto]]
File:PLACEHOLDER2.png|link=[[Eye Guy]]|[[Eye Guy]]
File:PLACEHOLDER2.png|link=[[Way Big (Prime)]]|[[Way Big (Prime)|Way Big]] <br><small>(Introduced in ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'')</small>
File:PLACEHOLDER2.png|link=[[Buzzshock]]|[[Buzzshock]] <br><small>(First used by [[Ben 10,000]])</small>
File:PLACEHOLDER2.png|link=[[Spitter]]|[[Spitter]] <br><small>(First used by Ben 10,000)</small>
File:PLACEHOLDER2.png|link=[[Arctiguana]]|[[Arctiguana]] <br><small>(First used by Ben 10,000)</small>
</gallery></center>
{{-}}
== Introduced in ''[[Ben 10: Alien Force]]'' ==
<center><gallery widths="75px" heights="130px">
File:PLACEHOLDER2.png|link=[[Swampfire]]|[[Swampfire]]
File:PLACEHOLDER2.png|link=[[Echo Echo]]|[[Echo Echo]]
File:PLACEHOLDER2.png|link=[[Humungousaur (Prime)]]|[[Humungousaur (Prime)|Humungousaur]]
File:PLACEHOLDER2.png|link=[[Jetray (Prime)]]|[[Jetray (Prime)|Jetray]]
File:PLACEHOLDER2.png|link=[[Big Chill]]|[[Big Chill]]
File:PLACEHOLDER2.png|link=[[Chromastone]]|[[Chromastone]]
File:PLACEHOLDER2.png|link=[[Brainstorm]]|[[Brainstorm]]
File:PLACEHOLDER2.png|link=[[Spidermonkey]]|[[Spidermonkey]]
File:PLACEHOLDER2.png|link=[[Goop (Prime)]]|[[Goop (Prime)|Goop]]
File:PLACEHOLDER2.png|link=[[Alien X]]|[[Alien X]]
File:PLACEHOLDER2.png|link=[[Upchuck]]|[[Upchuck]] <small>(Murk)</small>
File:PLACEHOLDER2.png|link=[[Lodestar]]|[[Lodestar]]
File:PLACEHOLDER2.png|link=[[Rath (Prime)]]|[[Rath (Prime)|Rath]]
File:PLACEHOLDER2.png|link=[[Nanomech]]|[[Nanomech]] <br><small>(Introduced in ''[[Ben 10: Alien Swarm|Alien Swarm]]'')</small>
</gallery></center>
{{-}}
== Introduced in ''[[Ben 10: Ultimate Alien]]'' ==
<center><gallery widths="75px" heights="130px">
File:PLACEHOLDER2.png|link=[[Water Hazard]]|[[Water Hazard]]
File:PLACEHOLDER2.png|link=[[AmpFibian]]|[[AmpFibian]]
File:PLACEHOLDER2.png|link=[[Armodrillo]]|[[Armodrillo]]
File:PLACEHOLDER2.png|link=[[Terraspin]]|[[Terraspin]]
File:PLACEHOLDER2.png|link=[[NRG]]|[[NRG]]
File:PLACEHOLDER2.png|link=[Fasttrack]]|[[Fasttrack]]
File:PLACEHOLDER2.png|link=[[Clockwork]]|[[Clockwork]]
File:PLACEHOLDER2.png|link=[[Chamalien]]|[[Chamalien]]
File:PLACEHOLDER2.png|link=[[Shocksquatch]]|[[Shocksquatch]] <br><small>(Introduced in ''[[Ben 10/Generator Rex: Heroes United|Heroes United]]'')</small>
File:PLACEHOLDER2.png|link=[[Eatle]]|[[Eatle]]
File:PLACEHOLDER2.png|link=[[Juryrigg]]|[[Juryrigg]]
</gallery></center>
{{-}}
== Introduced in ''[[Ben 10: Omniverse]]'' ==
<center><gallery widths="75px" heights="130px">
File:PLACEHOLDER2.png|link=[[Feedback]]|[[Feedback]]
File:PLACEHOLDER2.png|link=[[Bloxx]]|[[Bloxx]]
File:PLACEHOLDER2.png|link=[[Gravattack]]|[[Gravattack]]
File:PLACEHOLDER2.png|link=[[Crashhopper]]|[[Crashhopper]]
File:PLACEHOLDER2.png|link=[[Ball Weevil]]|[[Ball Weevil]]
File:PLACEHOLDER2.png|link=[[Walkatrout]]|[[Walkatrout]]
File:PLACEHOLDER2.png|link=[[Pesky Dust]]|[[Pesky Dust]]
File:PLACEHOLDER2.png|link=[[Mole-Stache]]|[[Mole-Stache]]
File:PLACEHOLDER2.png|link=[[The Worst]]|[[The Worst]]
File:PLACEHOLDER2.png|link=[[Kickin Hawk]]|[[Kickin Hawk]]
File:PLACEHOLDER2.png|link=[[Astrodactyl]]|[[Astrodactyl]]
File:PLACEHOLDER2.png|link=[[Toepick]]|[[Toepick]]
File:PLACEHOLDER2.png|link=[[Bullfrag]]|[[Bullfrag]]
File:PLACEHOLDER2.png|link=[[Atomix]]|[[Atomix]]
File:PLACEHOLDER2.png|link=[[Gutrot]]|[[Gutrot]]
File:PLACEHOLDER2.png|link=[[Whampire]]|[[Whampire]]
</gallery></center>
== Unseen ==
<center><gallery widths="75px" heights="130px">
File:PLACEHOLDER2.png|link=[[Sandbox]]|[[Sandbox|Placeholder]]
File:PLACEHOLDER2.png|link=[[Sandbox]]|[[Sandbox|Placeholder]]
</gallery></center>
== Non-canon ==
<center><gallery widths="75px" heights="130px">
File:PLACEHOLDER2.png|link=[[Sandbox]]|[[Sandbox|Placeholder]]
File:PLACEHOLDER2.png|link=[[Sandbox]]|[[Sandbox|Placeholder]]
</gallery></center>
<noinclude>[[Category:Transformations]]</noinclude>
{{-}}
0104eefd2171558e8fc3c6661136cced0d6f721e
Transformations (Disambiguation)
0
94
1815
1367
2022-04-23T09:00:18Z
Jaswacker
30585766
Protected "[[Transformations (Disambiguation)]]" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))
wikitext
text/x-wiki
{{Disambig}}
*For a full list of [[Ben Tennyson (Prime)|Ben Prime's]] alien transformations, go to [[Transformations/Prime]].
*For a full list of the transformations of [[Ben Tennyson (Reboot)|Ben from the]] [[Ben 10 (2016)|Reboot]], go to [[Transformations/Reboot]].
*For a list of lesser transformations, go to [[Minor Transformations]].
<noinclude>[[Category:Transformations]]</noinclude>
1be5c1dadec5f0ef42c4a8612e11ca5460378db2
Template:Disambigm
10
495
1816
2022-04-23T20:42:56Z
Jaswacker
30585766
Created page with "{| style="" cellpadding="0" cellspacing="0" class="tt1_disambig" |- |''This subject of this article goes by multiple names that apply to other articles as well. See [[{{{1}}}]..."
wikitext
text/x-wiki
{| style="" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This subject of this article goes by multiple names that apply to other articles as well. See [[{{{1}}}]], [[{{{2}}}]]{{#if:{{{3|}}}|, [[{{{3}}}]]|}}{{#if:{{{4|}}}|, [[{{{4}}}]]|}}{{#if:{{{5|}}}|, [[{{{5}}}]]|}}{{#if:{{{6|}}}|, [[{{{6}}}]]|}}{{#if:{{{7|}}}|, [[{{{7}}}]]|}}{{#if:{{{8|}}}|, [[{{{8}}}]]|}}{{#if:{{{9|}}}|, [[{{{9}}}]]|}}{{#if:{{{10|}}}|, [[{{{10}}}]]|}}.''
|}<noinclude>{{doc}}[[Category:Disambiguation templates|M]]</noinclude>
53b5bbecc9af7610b98aa75504961360b999d160
1822
1816
2022-04-23T20:46:47Z
Jaswacker
30585766
wikitext
text/x-wiki
{| style="margin:0 .1em; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:block;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This subject of this article goes by multiple names that apply to other articles as well. See [[{{{1}}}]], [[{{{2}}}]]{{#if:{{{3|}}}|, [[{{{3}}}]]|}}{{#if:{{{4|}}}|, [[{{{4}}}]]|}}{{#if:{{{5|}}}|, [[{{{5}}}]]|}}{{#if:{{{6|}}}|, [[{{{6}}}]]|}}{{#if:{{{7|}}}|, [[{{{7}}}]]|}}{{#if:{{{8|}}}|, [[{{{8}}}]]|}}{{#if:{{{9|}}}|, [[{{{9}}}]]|}}{{#if:{{{10|}}}|, [[{{{10}}}]]|}}.''
|}<noinclude>{{doc}}[[Category:Disambiguation templates|M]]</noinclude>
aad4a490a9b94db4e222e356420c97c0c4e44f9b
Template:Disambigm/doc
10
496
1817
2022-04-23T20:43:17Z
Jaswacker
30585766
Created page with "Use this template when a character has two or more names that require disambiguation. This template avoids having multiple disambiguation templates at the top of the page, whi..."
wikitext
text/x-wiki
Use this template when a character has two or more names that require disambiguation. This template avoids having multiple disambiguation templates at the top of the page, which can ugly it up something terrible. It can take up to ten names.
To use the template, add the list of names separated by the pipe ("|") character when including in an article:
<pre>{{Disambigm|name|alternate name 1|alternate name 2|alternate name 3}}</pre>
As an actual example from the [[Jack Tracker]] article:
<pre>{{disambigm|Jack (disambiguation)|Matt Trakker|Bill (disambiguation)|Blast Off (disambiguation)|Hunter (disambiguation)}}
</pre>
==See also==
* [[Template:Disambig]]
<noinclude>[[Category:Externalized documentation]]</noinclude>
e0941ebc2aada4e143605d358de53cf08515cf83
Template:Doc
10
497
1818
2022-04-23T20:43:56Z
Jaswacker
30585766
Created page with "<noinclude>{{doc}}[[category:Meta templates]]</noinclude><includeonly>{{ #ifexist: {{{1|{{FULLPAGENAMEE}}/doc}}} | <div style="text-align:right;font-size:xx-small;">(Transclud..."
wikitext
text/x-wiki
<noinclude>{{doc}}[[category:Meta templates]]</noinclude><includeonly>{{ #ifexist: {{{1|{{FULLPAGENAMEE}}/doc}}} | <div style="text-align:right;font-size:xx-small;">(Transcluded documentation: [[{{{1|{{FULLPAGENAMEE}}/doc}}}|view]])</div>{{:{{{1|{{FULLPAGENAMEE}}/doc}}}}} | <div style="text-align:right;font-size:xx-small;">(Transcluded documentation: [[{{{1|{{FULLPAGENAMEE}}/doc}}}|create]])</div>{{#if:{{{hack|}}}|{{:{{FULLPAGENAME}}/doc}}|}}}}</includeonly>
0f60eca88aa372b6cca6ad72bb22bbe16250eec1
Template:Doc/doc
10
498
1819
2022-04-23T20:44:14Z
Jaswacker
30585766
Created page with "Using <nowiki>{{doc}}</nowiki> on a page will {{w|Wikipedia:Transclusion|transclude}} the text of the /doc/ sub-page, (if that page exists). If it does not, it will do nothin..."
wikitext
text/x-wiki
Using <nowiki>{{doc}}</nowiki> on a page will {{w|Wikipedia:Transclusion|transclude}} the text of the /doc/ sub-page, (if that page exists). If it does not, it will do nothing.
On [[Template:spoiler]], the sub-page would be [[Template:spoiler/doc]].
<nowiki>{{doc}}</nowiki>'s purpose is to make maintaining template documentation easier, while also separating the edit history of the documentation from the edit history of the template itself.
On very rare occasions involving templates with URL-encoded characters in their name, <nowiki>{{doc}}</nowiki> will fail to include the external template. The current workaround for this is simply to set '''|hack=true'''
The /doc/ sub-page should be placed in [[:Category: Externalized documentation]] (within a <noinclude> tag.)
<noinclude><nowiki>[[Category: Externalized documentation]]</nowiki></noinclude>
<noinclude>[[Category: Externalized documentation]]</noinclude>
eed377abb211e7bdf134f4968b817b6b639ee160
Template:W
10
499
1820
2022-04-23T20:44:30Z
Jaswacker
30585766
Created page with "[[wikipedia:{{#if:{{{lang|}}}|{{{lang|}}}:}}{{{1|}}}|{{#if:{{{2|}}}|{{{2|}}}|{{{1|}}}}}]]<noinclude> [[Category:Templates]]</noinclude>"
wikitext
text/x-wiki
[[wikipedia:{{#if:{{{lang|}}}|{{{lang|}}}:}}{{{1|}}}|{{#if:{{{2|}}}|{{{2|}}}|{{{1|}}}}}]]<noinclude>
[[Category:Templates]]</noinclude>
a7b0eb5b26cbac3a63d93aed9772dbe96822901d
Ben Tennyson (Prime)
0
93
1821
1790
2022-04-23T20:45:19Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (Disambiguation)}}
{{charbox
|image={{tabs|{{tab2|OV|tempovben.png}}{{tab2|UAF|modelben.png}}{{tab2|OS|osben.png}}}}
|fullname=Benjamin Kirby Tennyson
|nickname=Ben
|alias=Ben 10<br>Ben Prime
|species=Human
|homeworld=Earth
|residence=Bellwood
|affiliations= Ben's Team<br>Plumbers<br>SECT<br>Chadzmuth<br>Team Tennyson (disbanded)<br>Alien Force (disbanded)<br>Zs'Skayr's Minions (formerly)<br>Galactic Enforcers (formerly)<br>Madison Elementary School (formerly)<br>Friedkin University (formerly)
|relationships=
|equipment=Omnitrix<br>Ascalon (formerly)<br>Ultimatrix (formerly)<br>
Prototype Omnitrix (destroyed)<br>Tenn-Speed (formerly)<br>Time Cycle (formerly)
|status=Alive
|first=And Then There Were 10
|last=
}}
'''Benjamin Kirby "Ben" Tennyson''' is the titular main protagonist of the Ben 10 Franchise. He was an ordinary ten-year-old boy until he found the [[Omnitrix (Prototype)|Omnitrix]], a powerful watch-like device that allowed him to turn into ten different aliens. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become famous in not only his hometown of [[Bellwood]] but on [[Earth]] and beyond. Ben has also been deputized by the Plumbers and has gained more aliens as time progressed.
==Appearance==
Ben's physical appearance has changed throughout the series from a ten-year-old to a sixteen-year-old. However, he retains some recurring characteristics. He has unkept brown hair, green eyes, pale skin, and he's quite skinny for his age, though he shows a lot of muscle definition due to being athletic.
===Regular Appearances===
In the '''Omniverse''' flashbacks in which he was 5 years old, Ben wore green overalls with a white shirt underneath it. White numbers saying "5 1/2" were on a black square in front of his overalls.
In the [[Ben 10 (2005)|original series]] and '''[[Ben 10: Omniverse|Omniverse]]''' flashbacks, Ben's usual clothes consisted of a black-striped, white shirt with short sleeves, military green cargo pants with side pockets with a black belt hidden under his shirt, and black and white sneakers with black stripes. Ben wore the prototype Omnitrix on his left wrist.
In '''[[Ben 10: Alien Force|Alien Force]]''' and '''[[Ben 10: Ultimate Alien|Ultimate Alien]]''', Ben wore a black shirt, blue jeans and a green jacket with white stripes on his left sleeve and the number 10 on the right, white socks, and black and white Converse-style shoes. Ben wore the prototype Recalibrated Omnitrix in '''Alien Force''' and the [[Ultimatrix]] in '''Ultimate Alien''' on his left wrist.
In '''Ultimate Alien''', he wore a standard Plumber suit during a few of his off-world excursions.
In '''Omniverse''', Ben wears a black shirt that has a green stripe in the middle with a white 10 and green stripes on the sides of his shirt. He wears brown cargo pants with pockets at the knees with a brown belt hidden under the shirt and green and white shoes. He later gains a white hooded jacket with green stripes on both arms and a green number 10 on the right side for some time. He wears the [[Omnitrix (Omniverse)|Omnitrix]] on his left wrist.
In '''Omniverse''', while riding the [[Tenn-Speed]], he wears a white helmet with the number 10 on it, a green visor, a short-sleeved black T-shirt, long white pants and a belt with the number 10 on it.
==Appearances==
===Episodes===
Ben has been in every episode, movie and short except ''[[Ken 10]]'' and the "what-if?" episodes, ''[[Gwen 10]]'', ''[[Goodbye and Good Riddance]]'', and '''''[[Ben 10: Race Against Time]]''''', which feature Bens from alternate timelines. Whether or not Ben Prime appeared in the [[Ben 10 (2016)|reboot]] finale episode [[Alien X-Tinction]] is open to interpretation. Here's a list of all his appearances throughout the series.
664fb6a14887551149060b2f7c935c07d663f3bc
1823
1821
2022-04-23T20:47:32Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
{{charbox
|image={{tabs|{{tab2|OV|tempovben.png}}{{tab2|UAF|modelben.png}}{{tab2|OS|osben.png}}}}
|fullname=Benjamin Kirby Tennyson
|nickname=Ben
|alias=Ben 10<br>Ben Prime
|species=Human
|homeworld=Earth
|residence=Bellwood
|affiliations= Ben's Team<br>Plumbers<br>SECT<br>Chadzmuth<br>Team Tennyson (disbanded)<br>Alien Force (disbanded)<br>Zs'Skayr's Minions (formerly)<br>Galactic Enforcers (formerly)<br>Madison Elementary School (formerly)<br>Friedkin University (formerly)
|relationships=
|equipment=Omnitrix<br>Ascalon (formerly)<br>Ultimatrix (formerly)<br>
Prototype Omnitrix (destroyed)<br>Tenn-Speed (formerly)<br>Time Cycle (formerly)
|status=Alive
|first=And Then There Were 10
|last=
}}
'''Benjamin Kirby "Ben" Tennyson''' is the titular main protagonist of the Ben 10 Franchise. He was an ordinary ten-year-old boy until he found the [[Omnitrix (Prototype)|Omnitrix]], a powerful watch-like device that allowed him to turn into ten different aliens. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become famous in not only his hometown of [[Bellwood]] but on [[Earth]] and beyond. Ben has also been deputized by the Plumbers and has gained more aliens as time progressed.
==Appearance==
Ben's physical appearance has changed throughout the series from a ten-year-old to a sixteen-year-old. However, he retains some recurring characteristics. He has unkept brown hair, green eyes, pale skin, and he's quite skinny for his age, though he shows a lot of muscle definition due to being athletic.
===Regular Appearances===
In the '''Omniverse''' flashbacks in which he was 5 years old, Ben wore green overalls with a white shirt underneath it. White numbers saying "5 1/2" were on a black square in front of his overalls.
In the [[Ben 10 (2005)|original series]] and '''[[Ben 10: Omniverse|Omniverse]]''' flashbacks, Ben's usual clothes consisted of a black-striped, white shirt with short sleeves, military green cargo pants with side pockets with a black belt hidden under his shirt, and black and white sneakers with black stripes. Ben wore the prototype Omnitrix on his left wrist.
In '''[[Ben 10: Alien Force|Alien Force]]''' and '''[[Ben 10: Ultimate Alien|Ultimate Alien]]''', Ben wore a black shirt, blue jeans and a green jacket with white stripes on his left sleeve and the number 10 on the right, white socks, and black and white Converse-style shoes. Ben wore the prototype Recalibrated Omnitrix in '''Alien Force''' and the [[Ultimatrix]] in '''Ultimate Alien''' on his left wrist.
In '''Ultimate Alien''', he wore a standard Plumber suit during a few of his off-world excursions.
In '''Omniverse''', Ben wears a black shirt that has a green stripe in the middle with a white 10 and green stripes on the sides of his shirt. He wears brown cargo pants with pockets at the knees with a brown belt hidden under the shirt and green and white shoes. He later gains a white hooded jacket with green stripes on both arms and a green number 10 on the right side for some time. He wears the [[Omnitrix (Omniverse)|Omnitrix]] on his left wrist.
In '''Omniverse''', while riding the [[Tenn-Speed]], he wears a white helmet with the number 10 on it, a green visor, a short-sleeved black T-shirt, long white pants and a belt with the number 10 on it.
==Appearances==
===Episodes===
Ben has been in every episode, movie and short except ''[[Ken 10]]'' and the "what-if?" episodes, ''[[Gwen 10]]'', ''[[Goodbye and Good Riddance]]'', and '''''[[Ben 10: Race Against Time]]''''', which feature Bens from alternate timelines. Whether or not Ben Prime appeared in the [[Ben 10 (2016)|reboot]] finale episode [[Alien X-Tinction]] is open to interpretation. Here's a list of all his appearances throughout the series.
c1b821f24417de3f426e266993619e28660a6f7a
1824
1823
2022-04-23T20:48:07Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
{{charbox
|image={{tabs|{{tab2|OV|tempovben.png}}{{tab2|UAF|modelben.png}}{{tab2|OS|osben.png}}}}
|fullname=Benjamin Kirby Tennyson
|nickname=Ben
|alias=Ben 10<br>Ben Prime
|species=Human
|homeworld=Earth
|residence=Bellwood
|affiliations= Ben's Team<br>Plumbers<br>SECT<br>Chadzmuth<br>Team Tennyson (disbanded)<br>Alien Force (disbanded)<br>Zs'Skayr's Minions (formerly)<br>Galactic Enforcers (formerly)<br>Madison Elementary School (formerly)<br>Friedkin University (formerly)
|relationships=
|equipment=Omnitrix<br>Ascalon (formerly)<br>Ultimatrix (formerly)<br>
Prototype Omnitrix (destroyed)<br>Tenn-Speed (formerly)<br>Time Cycle (formerly)
|status=Alive
|first=And Then There Were 10
|last=
}}
bio
19b6a42e3cd804b97bf1853a826440925a5e374b
Template:Quote
10
85
1825
321
2022-04-23T20:52:28Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| align="center" style="border: 1px solid #fff; margin-left:auto;margin-right:auto; border-radius:5px; padding-right: 10px;{{#if: {{{bgcolor|}}}|border: 1px solid #fff;}}" class="cquote"
| width="15" valign="top" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:left; padding:10px;" | “
| valign="top" style="font-family:Nunito, sans-serif; padding:4px 2px; font-size:12px;" |
{{{1|{{{text|text.}}}}}}
| width="15" valign="bottom" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:right; padding:10px;" | ”
{{#if:{{{origin|}}}{{{source|}}}{{{saidby|}}}{{{reference|}}}|
{{!}} colspan="3" style="font-family:Nunito, sans-serif; font-size:12px; text-align:right;"{{!}}<cite style="font-size:normal; text-align:right;">'''〜'''{{{saidby|{{{origin}}}}}}{{#if:{{{source|}}}{{{reference|}}}|, {{{reference|{{{source}}}}}}}}</cite>
}}
|}
</includeonly><noinclude>
== Example usage ==
'''Quoted text only''':
<pre>{{Quote
|text = Sometimes when I close my eyes, I can't see.}}</pre>
result:
{{Quote
|text = Sometimes when I close my eyes, I can't see.}}
'''Quoted text with origin''':
<pre>{{Quote
|text = Uh, one of my balls fell off.
|origin = [[Humungousaur]] in [[Video Games (episode)|Video Games]]}}</pre>
result:
{{Quote
|text = Uh, one of my balls fell off.
|origin = [[Humungousaur]] in [[Video Games (episode)|Video Games]]}}
[[Category:Templates]]</noinclude>
cf8771f9058759de24bfc3feb494847712c89cbf
1826
1825
2022-04-23T20:57:08Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| align="center" style="border: 1px solid #fff; margin-left:auto;margin-right:auto; border-radius:5px; padding-right: 10px;{{#if: {{{bgcolor|}}}|border: 1px solid #fff;}}" class="cquote"
| width="15" valign="top" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:left; padding:10px;" | “
| valign="top" style="font-family:Nunito, sans-serif; padding:4px 2px; font-size:12px;" |
{{{1|{{{text|text.}}}}}}
| width="15" valign="bottom" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:right; padding:10px;" | ”
{{#if:{{{origin|}}}{{{source|}}}{{{saidby|}}}{{{reference|}}}|
{{!}} colspan="3" style="font-family:Nunito, sans-serif; font-size:12px; text-align:right;"{{!}}<cite style="font-size:normal; text-align:right;">'''—'''{{{saidby|{{{origin}}}}}}{{#if:{{{source|}}}{{{reference|}}}|, {{{reference|{{{source}}}}}}}}</cite>
}}
|}
</includeonly><noinclude>
== Example usage ==
'''Quoted text only''':
<pre>{{Quote
|text = Sometimes when I close my eyes, I can't see.}}</pre>
result:
{{Quote
|text = Sometimes when I close my eyes, I can't see.}}
'''Quoted text with origin''':
<pre>{{Quote
|text = Uh, one of my balls fell off.
|origin = [[Humungousaur]] in [[Video Games (episode)|Video Games]]}}</pre>
result:
{{Quote
|text = Uh, one of my balls fell off.
|origin = [[Humungousaur]] in [[Video Games (episode)|Video Games]]}}
[[Category:Templates]]</noinclude>
c28ea40fd76a1634608e42ee231676ceef674ef3
1827
1826
2022-04-23T21:02:43Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| align="center" style="border: 1px solid #fff; margin-left:auto;margin-right:auto; border-radius:5px; padding-right: 10px;{{#if: {{{bgcolor|}}}|border: 1px solid #fff;}}" class="cquote"
| width="15" valign="top" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:left; padding:10px;" | “
| valign="top" style="font-family:Nunito, sans-serif; padding:4px 2px; font-size:12px;" |
{{{1|{{{text|text.}}}}}}
| width="15" valign="bottom" style="color:#02b70c; font-size:36px; font-family:'Nunito', serif; font-weight:bold; text-align:right; padding:10px;" | ”
|-
{{#if:{{{origin|}}}{{{source|}}}{{{saidby|}}}{{{reference|}}}|
{{!}} colspan="3" style="line-height: .2; font-family:Nunito, sans-serif; font-size:12px; text-align:right;"{{!}}<cite style="font-size:normal; text-align:right;">'''— '''{{{saidby|{{{origin}}}}}}{{#if:{{{source|}}}{{{reference|}}}|, {{{reference|{{{source}}}}}}}}</cite>
}}
|}
</includeonly><noinclude>
== Example usage ==
'''Quoted text only''':
<pre>{{Quote
|text = Sometimes when I close my eyes, I can't see.}}</pre>
result:
{{Quote
|text = Sometimes when I close my eyes, I can't see.}}
'''Quoted text with origin''':
<pre>{{Quote
|text = Uh, one of my balls fell off.
|origin = [[Humungousaur]] in [[Video Games (episode)|Video Games]]}}</pre>
result:
{{Quote
|text = Uh, one of my balls fell off.
|origin = [[Humungousaur]] in [[Video Games (episode)|Video Games]]}}
[[Category:Templates]]</noinclude>
f9b89c31dccb0c3ddf5d97efbeb1866a4e5b1e07
Template:Subsuite
10
500
1828
2022-04-23T21:05:15Z
Jaswacker
30585766
Created page with "<div class="tt1_suite"> {{{content|{{{1|}}}}}} </div><noinclude>{{suite/doc}} [[Category:Templates|Subsuite]] </noinclude>"
wikitext
text/x-wiki
<div class="tt1_suite">
{{{content|{{{1|}}}}}}
</div><noinclude>{{suite/doc}}
[[Category:Templates|Subsuite]]
</noinclude>
20f5575e7c95e418e5edacbdcbabd6f1edc80247
Template:Suite/doc
10
501
1829
2022-04-23T21:05:31Z
Jaswacker
30585766
Created page with "'''<tt><nowiki>{{suite}}</nowiki></tt>''' and '''<tt><nowiki>{{subsuite}}</nowiki></tt>''' are templates which create a quicknav for an article "suite"; usually one article wh..."
wikitext
text/x-wiki
'''<tt><nowiki>{{suite}}</nowiki></tt>''' and '''<tt><nowiki>{{subsuite}}</nowiki></tt>''' are templates which create a quicknav for an article "suite"; usually one article which has been broken into many pieces for length.
Add '''<tt><nowiki>{{subsuite}}</nowiki></tt>''' to the top of each page with the article names in a list.
{{subsuite|content=* [[Optimus Prime (G1)]]
* [[Optimus Prime (G1)/toys]]
}}
<pre>{{subsuite|content=* [[Optimus Prime (G1)]]
* [[Optimus Prime (G1)/toys]]
}}</pre>
When '''<tt><nowiki>{{subsuite}}</nowiki></tt>''' is used after a ''disambig'' tag, it will automatically switch to a truncated form and 'hug' the template above. (Occupying the empty space to the right of the continuity note without pushing article content down.)
==<nowiki>{{suite}}</nowiki>==
If a page is broken into ''many pieces'' (such as [[Optimus Prime (G1)]]) it may be preferable to create a single sub-page with the suite contents rather than updating it on all the pages by hand. Create a page such as [[Optimus Prime (G1)/suite]], and include the template as described above.
You can then add the bare tag '''<tt><nowiki>{{suite}}</nowiki></tt>''' with ''no'' parameters and the "/suite" subpage will be automatically included.
{{note|The automatic inclusion checks for the existence of a "/suite" page, and if not found moves one level 'up' the page heirarchy. So a page such as "Optimus Prime (G1)/Machine Wars/toys" would break this function because it would need to go up ''two'' levels.
In this event, or the event of any other page being included within the suite, the manual override is a variable called root, such that '''<tt><nowiki>{{suite|root=Optimus Prime (G1)}}</nowiki></tt>''' will transclude [[Optimus Prime (G1)/suite]].}}
==Technical notes==
* [[Template: Subsuite]] was previously a redirect to suite, but now holds the actual template code for generating the suite contents.
<noinclude>[[Category: Externalized documentation]]</noinclude>
e3235fa5ef6e0090f95c1bc212c8054beaaf165f
Template:Suite
10
502
1830
2022-04-23T21:05:56Z
Jaswacker
30585766
Created page with "<includeonly>{{:{{#if:{{{root|}}}|{{{root}}}/suite|{{#titleparts:{{FULLPAGENAMEE}}|1}}/suite}}}}</includeonly><noinclude>{{doc}} [[Category:Templates|Suite]] </noinclude>"
wikitext
text/x-wiki
<includeonly>{{:{{#if:{{{root|}}}|{{{root}}}/suite|{{#titleparts:{{FULLPAGENAMEE}}|1}}/suite}}}}</includeonly><noinclude>{{doc}}
[[Category:Templates|Suite]]
</noinclude>
6330ea3782f0f2313a83114826dacbd7fe598664
Template:Nav
10
503
1831
2022-04-23T21:41:05Z
Jaswacker
30585766
Created page with "<includeonly>{|border="0" cellspacing="0" cellpadding="0" style="width: 100%;" class="tt1-navigation_franchise_wrapper" |-valign="middle" | {{#tag:imagemap |File:{{{image}}}{{..."
wikitext
text/x-wiki
<includeonly>{|border="0" cellspacing="0" cellpadding="0" style="width: 100%;" class="tt1-navigation_franchise_wrapper"
|-valign="middle"
|
{{#tag:imagemap
|File:{{{image}}}{{!}}center{{!}}{{{imagesize|500x130px}}}
default {{#if:{{{franchisename|}}}|[[{{{franchise}}}|{{{franchisename|}}}]]|[[{{{franchise}}}]]}}
desc none
}}
|
{|class="tt1-navigation_franchise_box"
|-
!style="text-align:center"|{{#if:{{{continuityfamily|}}}|{{#if:{{{continuityfamilyname|}}}|[[{{{continuityfamily}}}|{{{continuityfamilyname|}}}]]|[[{{{continuityfamily|}}}]]}}|}}
{|class="tt1-navigation_franchise" cellspacing="0" border="0" cellpadding="0"
|-class="tt1-navigation_franchise_header tt1_secondarynav"
!class="tt1-navigation_franchise-prev tti_buttonlink"|{{#if:{{{prev|}}} | [[{{{prev|}}}|«]]}}
!''{{#if:{{{franchisename|}}}|[[{{{franchise}}}|{{{franchisename|}}}]]|[[{{{franchise}}}]]}}''
!class="tt1-navigation_franchise-next tti_buttonlink"|{{#if:{{{next|}}} | [[{{{next|}}}|»]]}}
|- class="tt1_secondarynav"
| class="tti_buttonlink"|{{#if: {{{prev2|}}}|'''[[{{{prev2|}}}|«]]'''}}
| align="center" |{{{franchisename2|}}}
| class="tti_buttonlink" align="right"|{{#if: {{{next2|}}}|'''[[{{{next2|}}}|»]]'''}}
|- class="tt1_secondarynav"
| class="tti_buttonlink"|{{#if: {{{prev3|}}}|'''[[{{{prev3|}}}|«]]'''}}
| align="center" |{{{franchisename3|}}}
| class="tti_buttonlink" align="right"|{{#if: {{{next3|}}}|'''[[{{{next3|}}}|»]]'''}}
|-
|colspan="3"|
{|style="text-align:left; width: 100%"
|-valign="top" style="white-space: nowrap"
|
{{{c1|}}}
|
{{{c2|}}}
|}
|}
|}
|}</includeonly><noinclude>
{{doc}}
[[Category:Navigation templates| ]]
[[Category:Meta templates]]
</noinclude>
100d829106437d2f27e288de91e7fa3ebf99d8e8
Template:!
10
504
1832
2022-04-23T21:41:34Z
Jaswacker
30585766
Created page with "|<noinclude> This template is used for encoding the '|' character within template parameters (such as allowing for variable table layout.) It should never be used on its own..."
wikitext
text/x-wiki
|<noinclude>
This template is used for encoding the '|' character within template parameters (such as allowing for variable table layout.) It should never be used on its own.
[[Category:Meta templates]]
[[Category:Symbol templates]]</noinclude>
d65df1f2cddb6948a640d6377df459132dfb45b4
Template:Nav/doc
10
505
1833
2022-04-23T21:41:57Z
Jaswacker
30585766
Created page with "This is a generic template for creating [[:Category:Navigation templates|navigation templates]]. ==Valid arguments== *'''continuityfamily''' — the article for the continuit..."
wikitext
text/x-wiki
This is a generic template for creating [[:Category:Navigation templates|navigation templates]].
==Valid arguments==
*'''continuityfamily''' — the article for the continuity family this franchise belongs to.*
*'''continuityfamilyname''' — the cleaned-up name for the continuity family, if it has parentheticals.*
*'''franchise''' — the franchise's main article.
*'''franchisename''' — the cleaned-up name for the franchise, as it will inevitably have a parenthetical.*
*'''prev''' — the previous franchise.*
*'''next''' — the next franchise.*
*'''franchisename2, franchisename3''' — subheaders for the franchise if multiple sets of navigation are necessary, such as for iterations of the franchise in different regions.*
*'''prev2, prev3''' — the previous franchise associated with franchisename2 and franchisename3 respectively.*
*'''next2, next3''' — the next franchise associated with franchisename2 and franchisename3 respectively.*
*'''image''' — the franchise's logo
*'''imagesize''' — the size to display the logo, defaults to 500x130px (whichever is smaller of 500px wide and 130px tall)*
*'''c1''' — the first column of subpages.*
*'''c2''' — the second column of subpages.*
''* optional''
==Example==
<pre>{{Nav
|continuityfamily=Generation 1 continuity family
|franchise=Transformers: Super-God Masterforce (franchise)
|franchisename=Super-God Masterforce
|image=Super_God_Masterforce_Logo.JPG
|imagesize=341px
|prev=Transformers: The Headmasters (franchise)
|next=Fight! Super Robot Lifeform Transformers: Victory (franchise)
|c1=
*[[Transformers: Super-God Masterforce (toyline)|Toyline]]
*[[Transformers: Super-God Masterforce (cartoon)|Cartoon]]
*[[Commercial/Japan#Masterforce|Commercials]]
|c2=
*[[Transformers: Super-God Masterforce (manga)|Manga]]
*[[Transformers: Super-God Masterforce (story page)|Story Pages]]
}}</pre>
Which produces:
{{Nav
|continuityfamily=Generation 1 continuity family
|franchise=Transformers: Super-God Masterforce (franchise)
|franchisename=Super-God Masterforce
|image=Super_God_Masterforce_Logo.JPG
|imagesize=341px
|prev=Transformers: The Headmasters (franchise)
|next=Fight! Super Robot Lifeform Transformers: Victory (franchise)
|c1=
*[[Transformers: Super-God Masterforce (toyline)|Toyline]]
*[[Transformers: Super-God Masterforce (cartoon)|Cartoon]]
*[[Commercial/Japan#Masterforce|Commercials]]
|c2=
*[[Transformers: Super-God Masterforce (manga)|Manga]]
*[[Transformers: Super-God Masterforce (story page)|Story Pages]]
}}
<noinclude>[[Category:Externalized documentation]]</noinclude>
62d35d4dce1e6b8e5778e88f7f5fcaea8851d1dc
Template:Notebox
10
506
1834
2022-04-23T21:44:11Z
Jaswacker
30585766
Created page with "<noinclude> This is a meta template used for creating other template, much like [[Template:Messagebox]]. <pre>{{Notebox| |note_text= STRING |bgcolor= FFFFFF (optional) |text_c..."
wikitext
text/x-wiki
<noinclude>
This is a meta template used for creating other template, much like [[Template:Messagebox]].
<pre>{{Notebox|
|note_text= STRING
|bgcolor= FFFFFF (optional)
|text_color= FFFFFF (optional)
|image_name= Image_name.png (optional)
|image_width= ##px (default 32px) (optional)
|image_padding= ##px (default 0) (optional)
|categories= [[Category: Things Like this]] [[Category: All Things]] (optional)
|header= STRING (optional)
|headercolor= FFFFFF (optional)
|extranote_text= STRING (optional)
|extranote_color= FFFFFF (optional)
|image_nohang= BOOLEAN (default false) (optional)
|noItalic= BOOLEAN (default false) (optional)
|noCats= BOOLEAN (default false) (optional)
|hangline= FFFFFF (optional)
|padleft= ##px (optional)
}}</pre></noinclude><includeonly>{| style="width:90%;margin-left:{{{padleft|4%}}};" cellpadding="0" cellspacing="0"
|-
| {{#if: {{{image_name|}}} |colspan="2" |}} style="font-size:xx-small;line-height:1.2;" |{{#if: {{{header|}}} |<span style="background-color:#{{{bgcolor|efefef}}};padding:{{#if: {{{image_name|}}} |0 .5em 0 1.5em|0 1em 0 .5em}};color:#{{{headercolor|666}}};">{{{header|Header Text}}}</span> |}} {{#if: {{{extranote_text|}}} |<span style="color:#{{{extranote_color|000}}};margin-left:.5em;">{{{extranote_text|}}}</span> |}}
|- valign="top"
{{#if: {{{image_name|}}} |{{!}} style="width:{{{image_width|32px}}};background-color:#{{{bgcolor|efefef}}};padding:{{{image_padding|0}}}" {{!}}[[Image:{{{image_name|}}}|{{{image_width|32px}}}|{{{header|}}}]] |}}
| style="background-color:#{{#if: {{{image_nohang|}}} |{{{bgcolor|efefef}}} |none}};" |<div style="background-color:#{{{bgcolor|efefef}}}; padding: 2px 2px 2px 0.5em;color:#{{{text_color|000}}};{{#if: {{{hangline|}}} |border-bottom:solid 1px #{{{hangline|}}};|}}">{{#if: {{{noItalic|}}} ||''}}{{{note_text|Message goes here.}}}</div>
|}{{#if: {{{noCats|}}} ||{{{categories|}}}}}
</includeonly><noinclude>
'''<tt><nowiki>{{Notebox|header=Pay attention!|note_text= I am calling your attention to something!}}</nowiki></tt>
{{Notebox|header=Pay attention!|note_text= I am calling your attention to something!}}
'''<tt><nowiki>{{</nowiki>Notebox|<br/>
'''|note_text= <nowiki>This article is a [[:Category:Stub|stub]]. You can help '''{{SITENAME_SHORT}}''' by '''[{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|action=edit}} expanding it].</nowiki><br/>
'''|bgcolor= efefff<br/>
'''|image_name= MissingPiece.jpg<br/>
'''|image_padding=0 5px 0 0<br/>
'''|categories= <nowiki>[[Category: stubs]]</nowiki><br/>
'''|header= Thanks for helping me... pull myself together.<br/>
'''}}</tt>
{{Notebox|
|note_text= This article is a [[:Category:Stub|stub]]. You can help '''{{SITENAME_SHORT}}''' by [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|action=edit}} expanding it].
|bgcolor= efefff
|text_color= FFFFFF (optional)
|image_name= MissingPiece.jpg
|image_padding=0 5px 0 0
|header= Thanks for helping me... pull myself together.
|hangline=9f9fff
}}
[[Category:Meta templates]]
</noinclude>
d513cb6e33aebd29b9893c28118df66fe874b621
Ben Tennyson (Disambiguation)
0
24
1835
1802
2022-04-23T21:51:41Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
{{quote|placeholder|placeholder}}
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Major Version of Ben Tennyson==
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|Evil Ben from ''Alien X-Tinction'']]
</gallery></center>
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Characters/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|The ''Original Series'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|The ''Alien Force'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|The ''Ultimate Alien'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|The ''Omniverse'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Maximillian's Dimension)]]|[[Minor Characters/Humans#Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Dimension 12041.5)]]|[[Minor Characters/Humans#Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'']]
</gallery></center>
==Full List of Ben Tennysons==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
==Media and Titles Referencing Ben Tennyson==
==See Also==
d3d4b8fc5998a5a44fbfcdecc273fa64ea052225
1836
1835
2022-04-23T21:52:26Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
{{quote|placeholder|placeholder}}
<center><gallery widths="250px" heights="300px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|Ben "Prime"]]
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|''Reboot'' Ben]]
</gallery></center>
__TOC__
==Major Version of Ben Tennyson==
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|Evil Ben from ''Alien X-Tinction'']]
</gallery></center>
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Characters/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|The ''Original Series'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|The ''Alien Force'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|The ''Ultimate Alien'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|The ''Omniverse'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Maximillian's Dimension)]]|[[Minor Characters/Humans#Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Dimension 12041.5)]]|[[Minor Characters/Humans#Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'']]
</gallery></center>
==Full List of Ben Tennysons==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
==Media Referencing Ben Tennyson==
==See Also==
1910ffb4c1e82d267371d4646ec680e1596015be
1837
1836
2022-04-23T21:53:44Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
{{quote|placeholder|placeholder}}
{{-}}
__TOC__
{{-}}
==Major Version of Ben Tennyson==
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|Evil Ben from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Characters/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|The ''Original Series'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|The ''Alien Force'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|The ''Ultimate Alien'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|The ''Omniverse'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Maximillian's Dimension)]]|[[Minor Characters/Humans#Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Dimension 12041.5)]]|[[Minor Characters/Humans#Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
{{-}}
==See Also==
{{-}}
a5b219e9ba4230ea5da4a36a3526d917d6046ad9
1838
1837
2022-04-23T21:54:39Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
{{quote|placeholder|placeholder}}
__TOC__
{{-}}
==Major Version of Ben Tennyson==
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|Evil Ben from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Characters/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|The ''Original Series'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|The ''Alien Force'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|The ''Ultimate Alien'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|The ''Omniverse'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Maximillian's Dimension)]]|[[Minor Characters/Humans#Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Dimension 12041.5)]]|[[Minor Characters/Humans#Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
{{-}}
==See Also==
{{-}}
e21e75d0123938caaa613b7c4e7d0564872c46f8
1839
1838
2022-04-23T21:54:53Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
{{quote|placeholder|placeholder}}
__TOC__
{{-}}
==Major Version of Ben Tennyson==
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|Evil Ben from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Characters/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|The ''Original Series'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|The ''Alien Force'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|The ''Ultimate Alien'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|The ''Omniverse'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Maximillian's Dimension)]]|[[Minor Characters/Humans#Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Dimension 12041.5)]]|[[Minor Characters/Humans#Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
{{-}}
==See Also==
{{-}}
19458a2ba30e4c234a07fe2338a282458fbae531
1840
1839
2022-04-23T21:55:11Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
{{quote|oh fuck a placeholder|ben idk}}
__TOC__
{{-}}
==Major Version of Ben Tennyson==
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|Evil Ben from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Characters/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|The ''Original Series'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|The ''Alien Force'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|The ''Ultimate Alien'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|The ''Omniverse'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Maximillian's Dimension)]]|[[Minor Characters/Humans#Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Dimension 12041.5)]]|[[Minor Characters/Humans#Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
{{-}}
==See Also==
{{-}}
29a07992a82538711b55c1bb50fc6db7e5a8fc2e
1841
1840
2022-04-23T21:55:30Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
{{quote|oh fuck a placeholder|origin=ben idk}}
__TOC__
{{-}}
==Major Version of Ben Tennyson==
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|Evil Ben from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Characters/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|The ''Original Series'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|The ''Alien Force'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|The ''Ultimate Alien'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|The ''Omniverse'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Maximillian's Dimension)]]|[[Minor Characters/Humans#Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Dimension 12041.5)]]|[[Minor Characters/Humans#Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
{{-}}
==See Also==
{{-}}
165725a719f515a01217c42727ff4383d5eaa82c
1842
1841
2022-04-23T21:56:43Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|put that picture from and then there were none]]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
{{quote|oh fuck a placeholder|origin=ben idk}}
__TOC__
{{-}}
==Major Version of Ben Tennyson==
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|Evil Ben from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Characters/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|The ''Original Series'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|The ''Alien Force'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|The ''Ultimate Alien'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|The ''Omniverse'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Maximillian's Dimension)]]|[[Minor Characters/Humans#Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Dimension 12041.5)]]|[[Minor Characters/Humans#Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
{{-}}
==See Also==
{{-}}
4defc7e153b85c8c9ac21dde5dc8eaebb47c7afc
1843
1842
2022-04-23T21:57:05Z
Jaswacker
30585766
wikitext
text/x-wiki
{{Disambig}}
[[File:Trixorigin.png|thumb|right|put that picture from and then there were none]]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
{{quote|oh fuck a placeholder|origin=ben idk}}
__TOC__
{{-}}
==Major Version of Ben Tennyson==
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|Evil Ben from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Characters/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|The ''Original Series'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|The ''Alien Force'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|The ''Ultimate Alien'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|The ''Omniverse'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Maximillian's Dimension)]]|[[Minor Characters/Humans#Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Dimension 12041.5)]]|[[Minor Characters/Humans#Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
{{-}}
==See Also==
{{-}}
520890e9f17bb0f85813d1165a448282ee61f549
1844
1843
2022-04-23T21:57:24Z
Jaswacker
30585766
wikitext
text/x-wiki
{{Disambig}}
[[File:Trixorigin.png|thumb|right|put that picture from and then there were none]]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
{{quote|oh fuck a placeholder|origin=ben idk}}
__TOC__
==Major Version of Ben Tennyson==
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|Evil Ben from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==The Greater Multiverse==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Characters/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|The ''Original Series'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|The ''Alien Force'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|The ''Ultimate Alien'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|The ''Omniverse'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Maximillian's Dimension)]]|[[Minor Characters/Humans#Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Dimension 12041.5)]]|[[Minor Characters/Humans#Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
{{-}}
==See Also==
{{-}}
d4d2a0a8d3b5533796a7198021fe5ff6dbd8370c
1845
1844
2022-04-23T21:58:29Z
Jaswacker
30585766
wikitext
text/x-wiki
{{Disambig}}
[[File:Trixorigin.png|thumb|right|put that picture from and then there were none]]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
{{quote|oh fuck a placeholder|origin=ben idk}}
__TOC__
==Major Versions of Ben Tennyson==
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|Evil Ben from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Other Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Characters/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|The ''Original Series'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|The ''Alien Force'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|The ''Ultimate Alien'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|The ''Omniverse'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Maximillian's Dimension)]]|[[Minor Characters/Humans#Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Dimension 12041.5)]]|[[Minor Characters/Humans#Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
{{-}}
==See Also==
{{-}}
a1401b2b485a7f6afb68eda4c7ea193ee0286134
1846
1845
2022-04-23T22:03:11Z
Jaswacker
30585766
wikitext
text/x-wiki
{{Disambig}}
[[File:Trixorigin.png|thumb|right|put that picture from and then there were none]]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
{{quote|oh fuck a placeholder|origin=ben idk}}
__TOC__
==Major Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:os10k.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''Toys • Merchandise • Gallery • Designs''
File:ultben.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|Ben Tennyson from [[Ben 10 (2016)|the reboot.]]'Original Series'' Ben 10,000]]<br><hr>''Toys • Merchandise • Gallery • Designs''
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|Evil Ben from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Other Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Characters/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|The ''Original Series'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|The ''Alien Force'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|The ''Ultimate Alien'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|The ''Omniverse'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Maximillian's Dimension)]]|[[Minor Characters/Humans#Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Dimension 12041.5)]]|[[Minor Characters/Humans#Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
{{-}}
==See Also==
{{-}}
bedc3097a0807f33826d76d54cc1a0076e0e1fb5
1847
1846
2022-04-23T22:04:12Z
Jaswacker
30585766
wikitext
text/x-wiki
{{Disambig}}
[[File:Trixorigin.png|thumb|right|put that picture from and then there were none]]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
{{quote|oh fuck a placeholder|origin=ben idk}}
__TOC__
==Major Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:os10k.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''Toys • Merchandise • Gallery • Designs''
File:ultben.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|Ben Tennyson from [[Ben 10 (2016)|the reboot.]]<br><hr>''Toys • Merchandise • Gallery • Designs''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|Evil Ben from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Other Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Characters/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|The ''Original Series'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|The ''Alien Force'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|The ''Ultimate Alien'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|The ''Omniverse'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Maximillian's Dimension)]]|[[Minor Characters/Humans#Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Dimension 12041.5)]]|[[Minor Characters/Humans#Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
{{-}}
==See Also==
{{-}}
8630771c565804f7925229b583ba9f2dcf55be2e
1848
1847
2022-04-23T22:04:51Z
Jaswacker
30585766
/* Major Versions of Ben Tennyson */
wikitext
text/x-wiki
{{Disambig}}
[[File:Trixorigin.png|thumb|right|put that picture from and then there were none]]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
{{quote|oh fuck a placeholder|origin=ben idk}}
__TOC__
==Major Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:os10k.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''Toys • Merchandise • Gallery • Designs''
File:ultben.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson from|Ben Tennyson (Reboot)]] [[Ben 10 (2016)|the reboot.]]<br><hr>''Toys • Merchandise • Gallery • Designs''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|Evil Ben from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Other Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Characters/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|The ''Original Series'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|The ''Alien Force'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|The ''Ultimate Alien'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|The ''Omniverse'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Maximillian's Dimension)]]|[[Minor Characters/Humans#Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Dimension 12041.5)]]|[[Minor Characters/Humans#Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
{{-}}
==See Also==
{{-}}
89b3ede2adf7d4bf17830e2ac8b67f0a83e3df7a
1849
1848
2022-04-23T22:05:18Z
Jaswacker
30585766
wikitext
text/x-wiki
{{Disambig}}
[[File:Trixorigin.png|thumb|right|put that picture from and then there were none]]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
{{quote|oh fuck a placeholder|origin=ben idk}}
__TOC__
==Major Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:os10k.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''Toys • Merchandise • Gallery • Designs''
File:ultben.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|Ben Tennyson from]] [[Ben 10 (2016)|the reboot.]]<br><hr>''Toys • Merchandise • Gallery • Designs''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|Evil Ben from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Other Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Characters/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|The ''Original Series'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|The ''Alien Force'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|The ''Ultimate Alien'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|The ''Omniverse'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Maximillian's Dimension)]]|[[Minor Characters/Humans#Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Dimension 12041.5)]]|[[Minor Characters/Humans#Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
{{-}}
==See Also==
{{-}}
d464362f15109b09911d1dd3ebd0bd74ae34df90
1850
1849
2022-04-23T22:05:55Z
Jaswacker
30585766
wikitext
text/x-wiki
{{Disambig}}
[[File:Trixorigin.png|thumb|right|put that picture from and then there were none]]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
{{quote|oh fuck a placeholder|origin=ben idk}}
__TOC__
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''Toys • Merchandise • Gallery • Designs''
File:ultben.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|Ben Tennyson from]] [[Ben 10 (2016)|the reboot.]]<br><hr>''Toys • Merchandise • Gallery • Designs''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|Evil Ben from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Other Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Characters/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|The ''Original Series'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|The ''Alien Force'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|The ''Ultimate Alien'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|The ''Omniverse'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Maximillian's Dimension)]]|[[Minor Characters/Humans#Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Dimension 12041.5)]]|[[Minor Characters/Humans#Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
{{-}}
==See Also==
{{-}}
f176540bed69adf94e9274340719eb833a422794
1851
1850
2022-04-23T22:06:52Z
Jaswacker
30585766
wikitext
text/x-wiki
{{Disambig}}
[[File:Trixorigin.png|thumb|right|put that picture from and then there were none]]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
{{quote|oh fuck a placeholder|origin=ben idk}}
__TOC__
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''Toys • Merchandise • Gallery • Designs''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|Ben Tennyson from]] [[Ben 10 (2016)|the reboot.]]<br><hr>''Toys • Merchandise • Gallery • Designs''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Original Series'' Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Reboot'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|Evil Ben from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Other Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Characters/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|The ''Original Series'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|The ''Alien Force'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|The ''Ultimate Alien'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|The ''Omniverse'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Maximillian's Dimension)]]|[[Minor Characters/Humans#Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Dimension 12041.5)]]|[[Minor Characters/Humans#Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
{{-}}
==See Also==
{{-}}
995f083619e7e055a8bcdfe6b94f852e7bb907a8
1852
1851
2022-04-23T22:16:46Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|put that picture from and then there were none]]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
{{quote|oh fuck a placeholder|origin=ben idk}}
__TOC__
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''Toys • Merchandise''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''Toys • Merchandise''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Other Versions of Ben Tennyson==
<center><gallery widths="150px" heights="200px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Characters/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|The ''Original Series'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|The ''Alien Force'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|The ''Ultimate Alien'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|The ''Omniverse'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Maximillian's Dimension)]]|[[Minor Characters/Humans#Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Dimension 12041.5)]]|[[Minor Characters/Humans#Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Live Action==
<center><gallery widths="150px" heights="200px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
{{-}}
==See Also==
{{-}}
94896584f646a82f5ceb3b513a760e038481cd8f
1853
1852
2022-04-23T22:18:00Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|put that picture from and then there were none]]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
{{quote|oh fuck a placeholder|origin=ben idk}}
__TOC__
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''Toys • Merchandise''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''Toys • Merchandise''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Other Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:Albedo PromoArt Export.png|link=[[Albedo]]|[[Albedo|Albedo]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gwen 10)]]|[[Gwen Tennyson (Gwen 10)|''Original Series'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Max Tennyson (Gwen 10)]]|[[Max Tennyson (Gwen 10)|Max Tennyson from ''Gwen 10'']]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Original Series)]]|[[Kenny Tennyson (Original Series)|''Original Series'' "Ken 10"]]
File:PLACEHOLDER2.png|link=[[Kenny Tennyson (Omniverse)]]|[[Kenny Tennyson (Omniverse)|''Omniverse'' Kenny Tennyson]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Gweniverse)]]|[[Gwen Tennyson (Gweniverse)|''Omniverse'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Argit 10]]|[[Minor Characters/Aliens#Argit 10|"Argit 10"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|The ''Original Series'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|The ''Alien Force'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|The ''Ultimate Alien'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|The ''Omniverse'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Gwen Tennyson (Alien X-Tinction)]]|[[Gwen Tennyson (Alien X-Tinction)|''Reboot'' "Gwen 10"]]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Maximillian's Dimension)]]|[[Minor Characters/Humans#Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Dimension 12041.5)]]|[[Minor Characters/Humans#Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
{{-}}
==See Also==
* Gwen 10, Albedo, Kenny, Argit 10, other trix users that arent ben
{{-}}
5273e8ce73353708c55aab50f346b1d112c1ae8f
1854
1853
2022-04-23T22:19:02Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|put that picture from and then there were none]]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
{{quote|oh fuck a placeholder|origin=ben idk}}
__TOC__
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''Toys • Merchandise''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''Toys • Merchandise''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Other Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|The ''Original Series'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|The ''Alien Force'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|The ''Ultimate Alien'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|The ''Omniverse'' Ben from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Maximillian's Dimension)]]|[[Minor Characters/Humans#Ben Tennyson (Maximillian's Dimension)|Ben from Maximillian's dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Minor Character/Aliens#Ben Tennyson (Dimension 12041.5)]]|[[Minor Characters/Humans#Ben Tennyson (Dimension 12041.5)|One of the many Bens in ''Alien X-Tinction'']]
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'']]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
{{-}}
==See Also==
* Gwen 10, Albedo, Kenny, Argit 10, other trix users that arent ben
{{-}}
e7d68429740ce25c2ca10886c5431891a6d2ccd1
1855
1854
2022-04-23T22:22:49Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|put that picture from and then there were none]]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
{{quote|oh fuck a placeholder|origin=ben idk}}
__TOC__
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''Toys • Merchandise''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''Toys • Merchandise''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Other Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 12041.5)]]|[[Ben Tennyson (Dimension 12041.5)|Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Maximillian's Dimension)]]|[[Ben Tennyson (Maximillian's Dimension)|Ben Tennyson of Maximillian's Dimension in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
{{-}}
==See Also==
* Gwen 10, Albedo, Kenny, Argit 10, other trix users that arent ben
{{-}}
819a981fb96d84f39dc6b530a5fe1602c360730c
1856
1855
2022-04-23T22:23:20Z
Jaswacker
30585766
/* Other Versions of Ben Tennyson */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|put that picture from and then there were none]]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
{{quote|oh fuck a placeholder|origin=ben idk}}
__TOC__
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''Toys • Merchandise''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''Toys • Merchandise''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Other Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 12041.5)]]|[[Ben Tennyson (Dimension 12041.5)|Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Maximillian's Dimension)]]|[[Ben Tennyson (Maximillian's Dimension)|Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
{{-}}
==See Also==
* Gwen 10, Albedo, Kenny, Argit 10, other trix users that arent ben
{{-}}
d2a16546ce1c40f91ea6cfb5654d0a6f14c7effb
1857
1856
2022-04-23T22:24:45Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|put that picture from and then there were none]]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
{{quote|oh fuck a placeholder|origin=ben idk}}
__TOC__
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''Toys • Merchandise''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''Toys • Merchandise''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Other Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 12041.5)]]|[[Ben Tennyson (Dimension 12041.5)|Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Maximillian's Dimension)]]|[[Ben Tennyson (Maximillian's Dimension)|Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* 'expand this list to include ''every'' ben, including the ones seen above'
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* placeholder
* Gwen 10, Albedo, Kenny, Argit 10, other trix users that arent ben
{{-}}
f3d6717529755973cc23599bc061557a1899d725
1858
1857
2022-04-23T22:25:26Z
Jaswacker
30585766
/* Full List of Ben Tennysons */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|put that picture from and then there were none]]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
{{quote|oh fuck a placeholder|origin=ben idk}}
__TOC__
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''Toys • Merchandise''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''Toys • Merchandise''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Other Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 12041.5)]]|[[Ben Tennyson (Dimension 12041.5)|Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Maximillian's Dimension)]]|[[Ben Tennyson (Maximillian's Dimension)|Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* '''expand this list to include ''every'' ben, including the ones seen above'''
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* placeholder
* Gwen 10, Albedo, Kenny, Argit 10, other trix users that arent ben
{{-}}
b50506ba70eef95b97e7f0fb655401772ff6ebde
1859
1858
2022-04-23T22:26:54Z
Jaswacker
30585766
/* Other Versions of Ben Tennyson */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|put that picture from and then there were none]]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
{{quote|oh fuck a placeholder|origin=ben idk}}
__TOC__
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''Toys • Merchandise''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''Toys • Merchandise''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Other Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 12041.5)]]|[[Ben Tennyson (Dimension 12041.5)|Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Maximillian's Dimension)]]|[[Ben Tennyson (Maximillian's Dimension)|Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* '''expand this list to include ''every'' ben, including the ones seen above'''
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* placeholder
* Gwen 10, Albedo, Kenny, Argit 10, other trix users that arent ben
{{-}}
4c037076a16d53702ce4f04640d8b8515a70dbda
1860
1859
2022-04-23T22:27:09Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|put that picture from and then there were none]]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
{{quote|oh fuck a placeholder|origin=ben idk}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''Toys • Merchandise''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''Toys • Merchandise''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 12041.5)]]|[[Ben Tennyson (Dimension 12041.5)|Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Maximillian's Dimension)]]|[[Ben Tennyson (Maximillian's Dimension)|Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* '''expand this list to include ''every'' ben, including the ones seen above'''
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* placeholder
* Gwen 10, Albedo, Kenny, Argit 10, other trix users that arent ben
{{-}}
79523d8ea35d9e5cd5a8858f0da7f3c7c4174778
1861
1860
2022-04-23T22:27:48Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|put that picture from and then there were none]]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
{{quote|oh fuck a placeholder|origin=ben idk}}
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''Toys • Merchandise''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''Toys • Merchandise''
</gallery></center>
__TOC__
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 12041.5)]]|[[Ben Tennyson (Dimension 12041.5)|Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Maximillian's Dimension)]]|[[Ben Tennyson (Maximillian's Dimension)|Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* '''expand this list to include ''every'' ben, including the ones seen above'''
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* placeholder
* Gwen 10, Albedo, Kenny, Argit 10, other trix users that arent ben
{{-}}
ef0e55cc925794b896cec11f4a0ffbb48b358f9c
1862
1861
2022-04-23T22:29:25Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
{{quote|Alien or not, I'm still the hero.|origin=[[Ben Tennyson (Prime)|Ben Prime]] in [[Ben 10: Omniverse (Video Game).}}
{{-}}
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''Toys • Merchandise''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''Toys • Merchandise''
</gallery></center>
__TOC__
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 12041.5)]]|[[Ben Tennyson (Dimension 12041.5)|Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Maximillian's Dimension)]]|[[Ben Tennyson (Maximillian's Dimension)|Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* '''expand this list to include ''every'' ben, including the ones seen above'''
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* placeholder
* Gwen 10, Albedo, Kenny, Argit 10, other trix users that arent ben
{{-}}
a9e25203c888bff94b9e1c0ade07b68bae5880bf
1863
1862
2022-04-23T22:30:57Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
{{quote|text = Alien or not, I'm still the hero.|origin = [[Ben Tennyson (Prime)|Ben Prime]] in [[Ben 10: Omniverse (Video Game).}}
{{-}}
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''Toys • Merchandise''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''Toys • Merchandise''
</gallery></center>
__TOC__
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 12041.5)]]|[[Ben Tennyson (Dimension 12041.5)|Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Maximillian's Dimension)]]|[[Ben Tennyson (Maximillian's Dimension)|Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* '''expand this list to include ''every'' ben, including the ones seen above'''
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* placeholder
* Gwen 10, Albedo, Kenny, Argit 10, other trix users that arent ben
{{-}}
5fda2c3e4843da7786483106702f617d67f91903
1864
1863
2022-04-23T22:31:14Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
{{quote|text = Alien or not, I'm still the hero.|origin = [[Ben Tennyson (Prime)|Ben Prime]] in [[Ben 10: Omniverse (Video Game)]].}}
{{-}}
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''Toys • Merchandise''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''Toys • Merchandise''
</gallery></center>
__TOC__
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 12041.5)]]|[[Ben Tennyson (Dimension 12041.5)|Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Maximillian's Dimension)]]|[[Ben Tennyson (Maximillian's Dimension)|Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* '''expand this list to include ''every'' ben, including the ones seen above'''
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* placeholder
* Gwen 10, Albedo, Kenny, Argit 10, other trix users that arent ben
{{-}}
b794fdcf8f2bce9bfa8d81782152f6bae9d0a2db
File:Attwn.png
6
507
1865
2022-04-23T22:34:52Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Ben Tennyson (Disambiguation)
0
24
1866
1864
2022-04-23T22:35:00Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:attwn2.png|thumb|right|The gang's all here!]]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
{{quote|text = Alien or not, I'm still the hero.|origin = [[Ben Tennyson (Prime)|Ben Prime]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''Toys • Merchandise''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''Toys • Merchandise''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 12041.5)]]|[[Ben Tennyson (Dimension 12041.5)|Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Maximillian's Dimension)]]|[[Ben Tennyson (Maximillian's Dimension)|Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* '''expand this list to include ''every'' ben, including the ones seen above'''
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* placeholder
* Gwen 10, Albedo, Kenny, Argit 10, other trix users that arent ben
{{-}}
516cd4a663d52a2dec2c7bf13c817b1043a28122
1867
1866
2022-04-23T22:35:13Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:attwn.png|thumb|right|The gang's all here!]]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
{{quote|text = Alien or not, I'm still the hero.|origin = [[Ben Tennyson (Prime)|Ben Prime]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''Toys • Merchandise''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''Toys • Merchandise''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 12041.5)]]|[[Ben Tennyson (Dimension 12041.5)|Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Maximillian's Dimension)]]|[[Ben Tennyson (Maximillian's Dimension)|Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* '''expand this list to include ''every'' ben, including the ones seen above'''
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* placeholder
* Gwen 10, Albedo, Kenny, Argit 10, other trix users that arent ben
{{-}}
6cfc73c821b93ebc76577ecf1c8ffcfccf72ed34
1868
1867
2022-04-23T22:36:17Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:attwn.png|thumb|right|The gang's all here!]]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known in not only his hometown of Bellwood but also in the greater Universe.
{{quote|text = Alien or not, I'm still the hero.|origin = [[Ben Tennyson (Prime)|Ben Prime]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''Toys • Merchandise''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''Toys • Merchandise''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* '''expand this list to include ''every'' ben, including the ones seen above'''
* [[Ben Tennyson (Dimension 12041.5)|Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction'']]
* [[Ben Tennyson (Maximillian's Dimension)|Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction'']]
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* placeholder
* Gwen 10, Albedo, Kenny, Argit 10, other trix users that arent ben
{{-}}
bcb4dfd58ecc6d0a7dc7be3aa341d8bb0c3918ee
1869
1868
2022-04-23T22:37:32Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:attwn.png|thumb|right|The gang's all here!]]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
{{quote|text = Alien or not, I'm still the hero.|origin = [[Ben Tennyson (Prime)|Ben Prime]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''Toys • Merchandise''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''Toys • Merchandise''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* '''expand this list to include ''every'' ben, including the ones seen above'''
* [[Ben Tennyson (Dimension 12041.5)|Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction'']]
* [[Ben Tennyson (Maximillian's Dimension)|Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction'']]
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* placeholder
* Gwen 10, Albedo, Kenny, Argit 10, other trix users that arent ben
{{-}}
387618206311bdf24aa070222a4580bba9a2be6f
1870
1869
2022-04-23T22:38:06Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:attwn.png|thumb|right|The gang's all here!]]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
{{quote|text = Alien or not, I'm still the hero.|origin = [[Ben Tennyson (Omniverse Video Game)|Ben]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''Toys • Merchandise''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''Toys • Merchandise''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* '''expand this list to include ''every'' ben, including the ones seen above'''
* [[Ben Tennyson (Dimension 12041.5)|Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction'']]
* [[Ben Tennyson (Maximillian's Dimension)|Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction'']]
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* placeholder
* Gwen 10, Albedo, Kenny, Argit 10, other trix users that arent ben
{{-}}
c310e430076fa07fc60e81144ce7d70b1f21d842
1871
1870
2022-04-23T22:38:18Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
[[File:attwn.png|thumb|right|The gang's all here!]]
{{quote|text = Alien or not, I'm still the hero.|origin = [[Ben Tennyson (Omniverse Video Game)|Ben]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''Toys • Merchandise''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''Toys • Merchandise''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|Bad Ben]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|Benzarro]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|Mad Ben]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|Nega Ben]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* '''expand this list to include ''every'' ben, including the ones seen above'''
* [[Ben Tennyson (Dimension 12041.5)|Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction'']]
* [[Ben Tennyson (Maximillian's Dimension)|Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction'']]
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* placeholder
* Gwen 10, Albedo, Kenny, Argit 10, other trix users that arent ben
{{-}}
b5c229263d859db71d250bdf7c01372f7e940825
1872
1871
2022-04-23T22:39:16Z
Jaswacker
30585766
/* Major Versions of Ben Tennyson */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
[[File:attwn.png|thumb|right|The gang's all here!]]
{{quote|text = Alien or not, I'm still the hero.|origin = [[Ben Tennyson (Omniverse Video Game)|Ben]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''Toys • Merchandise''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''Toys • Merchandise''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:PLACEHOLDER2.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|"Bad Ben"]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|"Benzarro"]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|"Mad Ben"]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|"Nega Ben"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* '''expand this list to include ''every'' ben, including the ones seen above'''
* [[Ben Tennyson (Dimension 12041.5)|Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction'']]
* [[Ben Tennyson (Maximillian's Dimension)|Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction'']]
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* placeholder
* Gwen 10, Albedo, Kenny, Argit 10, other trix users that arent ben
{{-}}
9a7956159f117427ae42f1205da914c1f1281680
1887
1872
2022-04-23T22:42:35Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
[[File:attwn.png|thumb|right|The gang's all here!]]
{{quote|text = Alien or not, I'm still the hero.|origin = [[Ben Tennyson (Omniverse Video Game)|Ben]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''Toys • Merchandise''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''Toys • Merchandise''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:RB10K.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|"Bad Ben"]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|"Benzarro"]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|"Mad Ben"]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|"Nega Ben"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* '''expand this list to include ''every'' ben, including the ones seen above'''
* [[Ben Tennyson (Dimension 12041.5)|Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction'']]
* [[Ben Tennyson (Maximillian's Dimension)|Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction'']]
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* placeholder
* Gwen 10, Albedo, Kenny, Argit 10, other trix users that arent ben
{{-}}
18974a10f84d5c2e634ce4651718d6b1dac6f932
1888
1887
2022-04-23T22:42:54Z
Jaswacker
30585766
/* Future Versions of Ben Tennyson */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
[[File:attwn.png|thumb|right|The gang's all here!]]
{{quote|text = Alien or not, I'm still the hero.|origin = [[Ben Tennyson (Omniverse Video Game)|Ben]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''Toys • Merchandise''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''Toys • Merchandise''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:RB10k.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|"Bad Ben"]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|"Benzarro"]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|"Mad Ben"]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|"Nega Ben"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* '''expand this list to include ''every'' ben, including the ones seen above'''
* [[Ben Tennyson (Dimension 12041.5)|Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction'']]
* [[Ben Tennyson (Maximillian's Dimension)|Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction'']]
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* placeholder
* Gwen 10, Albedo, Kenny, Argit 10, other trix users that arent ben
{{-}}
2a99037d0b252112dd51a5e4a94c354739196c49
1889
1888
2022-04-23T22:43:46Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
[[File:attwn.png|thumb|right|The gang's all here!]]
{{quote|text = Alien or not, I'm still the hero.|origin = [[Ben Tennyson (Omniverse Video Game)|Ben]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''[[Ben Tennyson (Prime)/Toys|Toys]] • [[Ben Tennyson (Prime)/Merchandise|Merchandise]]''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''[[Ben Tennyson (Reboot)/Toys|Toys]] • [[Ben Tennyson (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:RB10k.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|"Bad Ben"]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|"Benzarro"]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|"Mad Ben"]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|"Nega Ben"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* '''expand this list to include ''every'' ben, including the ones seen above'''
* [[Ben Tennyson (Dimension 12041.5)|Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction'']]
* [[Ben Tennyson (Maximillian's Dimension)|Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction'']]
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Ben 10 Franklin'', see [[Minor Characters/Humans#Ben 10 Franklin|Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Minor Characters/Humans#Jedediah Benjamin Tennyson|Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Minor Characters/Humans#Jake Lonergan|Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* placeholder
* Gwen 10, Albedo, Kenny, Argit 10, other trix users that arent ben
{{-}}
49665b181f372a510b8b6f34546cd7cfa0fdda3a
1890
1889
2022-04-23T23:15:02Z
Jaswacker
30585766
/* Full List of Ben Tennysons */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
[[File:attwn.png|thumb|right|The gang's all here!]]
{{quote|text = Alien or not, I'm still the hero.|origin = [[Ben Tennyson (Omniverse Video Game)|Ben]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''[[Ben Tennyson (Prime)/Toys|Toys]] • [[Ben Tennyson (Prime)/Merchandise|Merchandise]]''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''[[Ben Tennyson (Reboot)/Toys|Toys]] • [[Ben Tennyson (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:RB10k.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|"Bad Ben"]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|"Benzarro"]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|"Mad Ben"]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|"Nega Ben"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* '''expand this list to include ''every'' ben, including the ones seen above'''
* [[Ben Tennyson (Dimension 12041.5)|Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction'']]
* [[Ben Tennyson (Maximillian's Dimension)|Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction'']]
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Ben 10 Franklin]]'', see [[Benjamin Franklin#Ben 10 Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* placeholder
* Gwen 10, Albedo, Kenny, Argit 10, other trix users that arent ben
{{-}}
adaf9e6414251b5e633c3771e2e22b0ae8c7d11a
1891
1890
2022-04-23T23:15:54Z
Jaswacker
30585766
/* Full List of Ben Tennysons */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
[[File:attwn.png|thumb|right|The gang's all here!]]
{{quote|text = Alien or not, I'm still the hero.|origin = [[Ben Tennyson (Omniverse Video Game)|Ben]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''[[Ben Tennyson (Prime)/Toys|Toys]] • [[Ben Tennyson (Prime)/Merchandise|Merchandise]]''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''[[Ben Tennyson (Reboot)/Toys|Toys]] • [[Ben Tennyson (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:RB10k.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|"Bad Ben"]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|"Benzarro"]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|"Mad Ben"]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|"Nega Ben"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* '''expand this list to include ''every'' ben, including the ones seen above'''
* [[Ben Tennyson (Dimension 12041.5)|Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction'']]
* [[Ben Tennyson (Maximillian's Dimension)|Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction'']]
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Minor Characters/Humans#Ben Tennyson (Goodbye and Good Riddance)|Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters/Humans#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters/Humans#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters/Humans#Alien X Victims|Alien X Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Ben 10 Franklin]]'', see [[Benjamin Franklin (MAD)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* placeholder
* Gwen 10, Albedo, Kenny, Argit 10, other trix users that arent ben
{{-}}
fba2f9a6cd555612a66078cf0ea85340242d3333
1892
1891
2022-04-23T23:56:05Z
Jaswacker
30585766
/* Full List of Ben Tennysons */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
[[File:attwn.png|thumb|right|The gang's all here!]]
{{quote|text = Alien or not, I'm still the hero.|origin = [[Ben Tennyson (Omniverse Video Game)|Ben]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''[[Ben Tennyson (Prime)/Toys|Toys]] • [[Ben Tennyson (Prime)/Merchandise|Merchandise]]''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''[[Ben Tennyson (Reboot)/Toys|Toys]] • [[Ben Tennyson (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:RB10k.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|"Bad Ben"]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|"Benzarro"]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|"Mad Ben"]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|"Nega Ben"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* '''expand this list to include ''every'' ben, including the ones seen above'''
* [[Ben Tennyson (Dimension 12041.5)|Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction'']]
* [[Ben Tennyson (Maximillian's Dimension)|Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction'']]
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters#Evil Ben's Victims|Evil Ben's Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run based on Omniverse, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Ben 10 Franklin]]'', see [[Benjamin Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
* [[Ben Tennyson (Hyperscan)]] game
* [[Ben Tennyson (Alien Force Video Game)]] game
* [[Ben Tennyson (Omniverse Video Game)]] game
* [[Ben Tennyson (Reboot Video Game)]] game
* [[Ben Tennyson (Power Trip)]] game
* [[Ben Tennyson (Galactic Racing)]] game
* [[Ben Tennyson (Classics)]] comics
* [[Ben Tennyson (Perfect Square)]] comics
* [[Ben Tennyson (Leapfrog)]] comics
* [[Ben Tennyson (Alien Force Video Game)]] game
* [[Ben Tennyson (Del Ray)]] manga
* [[Ben Tennyson (BOOM! Studios)]] comics
* [[Ben Tennyson (Bandai Comics)]] comics
* [[Ben Tennyson (Alien Race)]] game
* [[Ben Tennyson (Wrath of Psychobos)]] game
* [[Ben Tennyson (JoongAng MB Jr)]] korean comics (science hero and exploring hero)
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* placeholder
* Gwen 10, Albedo, Kenny, Argit 10, other trix users that arent ben
{{-}}
f7e2c5b21c1a54654c4dbe2a80a24eb65fba991f
1893
1892
2022-04-23T23:58:32Z
Jaswacker
30585766
/* Full List of Ben Tennysons */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
[[File:attwn.png|thumb|right|The gang's all here!]]
{{quote|text = Alien or not, I'm still the hero.|origin = [[Ben Tennyson (Omniverse Video Game)|Ben]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''[[Ben Tennyson (Prime)/Toys|Toys]] • [[Ben Tennyson (Prime)/Merchandise|Merchandise]]''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''[[Ben Tennyson (Reboot)/Toys|Toys]] • [[Ben Tennyson (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:RB10k.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|"Bad Ben"]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|"Benzarro"]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|"Mad Ben"]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|"Nega Ben"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* '''expand this list to include ''every'' ben, including the ones seen above'''
* [[Ben Tennyson (Dimension 12041.5)|Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction'']]
* [[Ben Tennyson (Maximillian's Dimension)|Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction'']]
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters#Evil Ben's Victims|Evil Ben's Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run based on Omniverse, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Ben 10 Franklin]]'', see [[Benjamin Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
* [[Ben Tennyson (Hyperscan)]] game
* [[Ben Tennyson (Alien Force Video Game)]] game
* [[Ben Tennyson (Omniverse Video Game)]] game
* [[Ben Tennyson (Reboot Video Game)]] game
* [[Ben Tennyson (Power Trip)]] game
* [[Ben Tennyson (Galactic Racing)]] game
* [[Ben Tennyson (Classics)]] comics
* [[Ben Tennyson (Perfect Square)]] comics
* [[Ben Tennyson (Leapfrog)]] comics
* [[Ben Tennyson (Alien Force Video Game)]] game
* [[Ben Tennyson (Del Rey)]] manga
* [[Ben Tennyson (BOOM! Studios)]] comics
* [[Ben Tennyson (Bandai Comics)]] comics
* [[Ben Tennyson (Alien Race)]] game
* [[Ben Tennyson (Wrath of Psychobos)]] game
* [[Ben Tennyson (JoongAng MB Jr)]] korean comics (science hero and exploring hero)
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* placeholder
* Gwen 10, Albedo, Kenny, Argit 10, other trix users that arent ben
{{-}}
4b60265431dc9a9af5004dff4e613cb6c0f2fb9c
1894
1893
2022-04-24T00:02:59Z
Jaswacker
30585766
/* Full List of Ben Tennysons */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
[[File:attwn.png|thumb|right|The gang's all here!]]
{{quote|text = Alien or not, I'm still the hero.|origin = [[Ben Tennyson (Omniverse Video Game)|Ben]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''[[Ben Tennyson (Prime)/Toys|Toys]] • [[Ben Tennyson (Prime)/Merchandise|Merchandise]]''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''[[Ben Tennyson (Reboot)/Toys|Toys]] • [[Ben Tennyson (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:RB10k.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|"Bad Ben"]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|"Benzarro"]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|"Mad Ben"]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|"Nega Ben"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* Ben Prime
* reboot ben
* 2005 ben10k
* ultimate ben
* ultimate alien ben10k
* ua eon
* omniverse eon
* omniverse ben10k
* reboot ben10k
* evil ben
* RAT ben
* alien swarm ben
* ben 23
* no watch ben
* bad ben
* nega ben
* mad ben
* benzarro
* os dimension
* ua dimension
* af dimension
* ov dimension
* [[Ben Tennyson (Dimension 12041.5)|Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction'']]
* [[Ben Tennyson (Maximillian's Dimension)|Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction'']]
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters#Evil Ben's Victims|Evil Ben's Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run based on Omniverse, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Ben 10 Franklin]]'', see [[Benjamin Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
* [[Ben Tennyson (Hyperscan)]] game
* [[Ben Tennyson (Alien Force Video Game)]] game
* [[Ben Tennyson (Omniverse Video Game)]] game
* [[Ben Tennyson (Reboot Video Game)]] game
* [[Ben Tennyson (Power Trip)]] game
* [[Ben Tennyson (Galactic Racing)]] game
* [[Ben Tennyson (Classics)]] comics
* [[Ben Tennyson (Perfect Square)]] comics
* [[Ben Tennyson (Leapfrog)]] comics
* [[Ben Tennyson (Alien Force Video Game)]] game
* [[Ben Tennyson (Del Rey)]] manga
* [[Ben Tennyson (BOOM! Studios)]] comics
* [[Ben Tennyson (Bandai Comics)]] comics
* [[Ben Tennyson (Alien Race)]] game
* [[Ben Tennyson (Wrath of Psychobos)]] game
* [[Ben Tennyson (JoongAng MB Jr)]] korean comics (science hero and exploring hero)
* [[Ben Tennyson (Fuel Run)]] game
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* placeholder
* Gwen 10, Albedo, Kenny, Argit 10, other trix users that arent ben
{{-}}
4a4e53c536245cfcd37a4a78fbee1b61e9d58d93
1895
1894
2022-04-24T00:04:15Z
Jaswacker
30585766
/* See Also */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
[[File:attwn.png|thumb|right|The gang's all here!]]
{{quote|text = Alien or not, I'm still the hero.|origin = [[Ben Tennyson (Omniverse Video Game)|Ben]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''[[Ben Tennyson (Prime)/Toys|Toys]] • [[Ben Tennyson (Prime)/Merchandise|Merchandise]]''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''[[Ben Tennyson (Reboot)/Toys|Toys]] • [[Ben Tennyson (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:RB10k.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|"Bad Ben"]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|"Benzarro"]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|"Mad Ben"]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|"Nega Ben"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* Ben Prime
* reboot ben
* 2005 ben10k
* ultimate ben
* ultimate alien ben10k
* ua eon
* omniverse eon
* omniverse ben10k
* reboot ben10k
* evil ben
* RAT ben
* alien swarm ben
* ben 23
* no watch ben
* bad ben
* nega ben
* mad ben
* benzarro
* os dimension
* ua dimension
* af dimension
* ov dimension
* [[Ben Tennyson (Dimension 12041.5)|Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction'']]
* [[Ben Tennyson (Maximillian's Dimension)|Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction'']]
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters#Evil Ben's Victims|Evil Ben's Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run based on Omniverse, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Ben 10 Franklin]]'', see [[Benjamin Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
* [[Ben Tennyson (Hyperscan)]] game
* [[Ben Tennyson (Alien Force Video Game)]] game
* [[Ben Tennyson (Omniverse Video Game)]] game
* [[Ben Tennyson (Reboot Video Game)]] game
* [[Ben Tennyson (Power Trip)]] game
* [[Ben Tennyson (Galactic Racing)]] game
* [[Ben Tennyson (Classics)]] comics
* [[Ben Tennyson (Perfect Square)]] comics
* [[Ben Tennyson (Leapfrog)]] comics
* [[Ben Tennyson (Alien Force Video Game)]] game
* [[Ben Tennyson (Del Rey)]] manga
* [[Ben Tennyson (BOOM! Studios)]] comics
* [[Ben Tennyson (Bandai Comics)]] comics
* [[Ben Tennyson (Alien Race)]] game
* [[Ben Tennyson (Wrath of Psychobos)]] game
* [[Ben Tennyson (JoongAng MB Jr)]] korean comics (science hero and exploring hero)
* [[Ben Tennyson (Fuel Run)]] game
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* albedo disambig
* gwen 10 disambig
* gwen 10 max tennyson
* argit 10
* os kenny
* omniverse kenny
* reboot kevin
* omnitrix disambig
{{-}}
6bb96c4b662a673c5a1468265ef7430490d5c0ee
1896
1895
2022-04-24T03:29:12Z
Jaswacker
30585766
/* See Also */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
[[File:attwn.png|thumb|right|The gang's all here!]]
{{quote|text = Alien or not, I'm still the hero.|origin = [[Ben Tennyson (Omniverse Video Game)|Ben]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''[[Ben Tennyson (Prime)/Toys|Toys]] • [[Ben Tennyson (Prime)/Merchandise|Merchandise]]''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''[[Ben Tennyson (Reboot)/Toys|Toys]] • [[Ben Tennyson (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:RB10k.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|"Bad Ben"]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|"Benzarro"]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|"Mad Ben"]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|"Nega Ben"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* Ben Prime
* reboot ben
* 2005 ben10k
* ultimate ben
* ultimate alien ben10k
* ua eon
* omniverse eon
* omniverse ben10k
* reboot ben10k
* evil ben
* RAT ben
* alien swarm ben
* ben 23
* no watch ben
* bad ben
* nega ben
* mad ben
* benzarro
* os dimension
* ua dimension
* af dimension
* ov dimension
* [[Ben Tennyson (Dimension 12041.5)|Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction'']]
* [[Ben Tennyson (Maximillian's Dimension)|Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction'']]
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters#Evil Ben's Victims|Evil Ben's Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run based on Omniverse, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Ben 10 Franklin]]'', see [[Benjamin Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
* [[Ben Tennyson (Hyperscan)]] game
* [[Ben Tennyson (Alien Force Video Game)]] game
* [[Ben Tennyson (Omniverse Video Game)]] game
* [[Ben Tennyson (Reboot Video Game)]] game
* [[Ben Tennyson (Power Trip)]] game
* [[Ben Tennyson (Galactic Racing)]] game
* [[Ben Tennyson (Classics)]] comics
* [[Ben Tennyson (Perfect Square)]] comics
* [[Ben Tennyson (Leapfrog)]] comics
* [[Ben Tennyson (Alien Force Video Game)]] game
* [[Ben Tennyson (Del Rey)]] manga
* [[Ben Tennyson (BOOM! Studios)]] comics
* [[Ben Tennyson (Bandai Comics)]] comics
* [[Ben Tennyson (Alien Race)]] game
* [[Ben Tennyson (Wrath of Psychobos)]] game
* [[Ben Tennyson (JoongAng MB Jr)]] korean comics (science hero and exploring hero)
* [[Ben Tennyson (Fuel Run)]] game
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* [[Omnitrix (disambiguation)]]
* [[Albedo]]
* [[Kenny Tennyson (disambiguation)]]
* [[Kevin Levin (Reboot)]]
* [[Gwen 10 (disambiguation)]]
* [[Max Tennyson (Gwen 10)]]
* [[Argit 10]]
{{-}}
142892926e70af967ff13fa99cd76df3402b2f5d
1897
1896
2022-04-24T03:29:43Z
Jaswacker
30585766
/* See Also */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
[[File:attwn.png|thumb|right|The gang's all here!]]
{{quote|text = Alien or not, I'm still the hero.|origin = [[Ben Tennyson (Omniverse Video Game)|Ben]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''[[Ben Tennyson (Prime)/Toys|Toys]] • [[Ben Tennyson (Prime)/Merchandise|Merchandise]]''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''[[Ben Tennyson (Reboot)/Toys|Toys]] • [[Ben Tennyson (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:RB10k.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|"Bad Ben"]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|"Benzarro"]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|"Mad Ben"]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|"Nega Ben"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* Ben Prime
* reboot ben
* 2005 ben10k
* ultimate ben
* ultimate alien ben10k
* ua eon
* omniverse eon
* omniverse ben10k
* reboot ben10k
* evil ben
* RAT ben
* alien swarm ben
* ben 23
* no watch ben
* bad ben
* nega ben
* mad ben
* benzarro
* os dimension
* ua dimension
* af dimension
* ov dimension
* [[Ben Tennyson (Dimension 12041.5)|Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction'']]
* [[Ben Tennyson (Maximillian's Dimension)|Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction'']]
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters#Evil Ben's Victims|Evil Ben's Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run based on Omniverse, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Ben 10 Franklin]]'', see [[Benjamin Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
* [[Ben Tennyson (Hyperscan)]] game
* [[Ben Tennyson (Alien Force Video Game)]] game
* [[Ben Tennyson (Omniverse Video Game)]] game
* [[Ben Tennyson (Reboot Video Game)]] game
* [[Ben Tennyson (Power Trip)]] game
* [[Ben Tennyson (Galactic Racing)]] game
* [[Ben Tennyson (Classics)]] comics
* [[Ben Tennyson (Perfect Square)]] comics
* [[Ben Tennyson (Leapfrog)]] comics
* [[Ben Tennyson (Alien Force Video Game)]] game
* [[Ben Tennyson (Del Rey)]] manga
* [[Ben Tennyson (BOOM! Studios)]] comics
* [[Ben Tennyson (Bandai Comics)]] comics
* [[Ben Tennyson (Alien Race)]] game
* [[Ben Tennyson (Wrath of Psychobos)]] game
* [[Ben Tennyson (JoongAng MB Jr)]] korean comics (science hero and exploring hero)
* [[Ben Tennyson (Fuel Run)]] game
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* [[Omnitrix (Disambiguation)]]
* [[Albedo]]
* [[Kenny Tennyson (Disambiguation)]]
* [[Kevin Levin (Reboot)]]
* [[Gwen 10 (Disambiguation)]]
* [[Max Tennyson (Gwen 10)]]
* [[Argit 10]]
{{-}}
4dc72a4697f2b17c4eb8f1ee1ad84f2a87deade0
1898
1897
2022-04-24T03:33:33Z
Jaswacker
30585766
/* Full List of Ben Tennysons */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
[[File:attwn.png|thumb|right|The gang's all here!]]
{{quote|text = Alien or not, I'm still the hero.|origin = [[Ben Tennyson (Omniverse Video Game)|Ben]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''[[Ben Tennyson (Prime)/Toys|Toys]] • [[Ben Tennyson (Prime)/Merchandise|Merchandise]]''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''[[Ben Tennyson (Reboot)/Toys|Toys]] • [[Ben Tennyson (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:RB10k.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|"Bad Ben"]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|"Benzarro"]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|"Mad Ben"]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|"Nega Ben"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* [[Ben Tennyson (Prime)]]
* [[Ben Tennyson (Reboot)]]
* [[Ben 10,000 (Original Series)]]
* [[Ultimate Ben]]
* [[Ben 10,000 (Ultimate Alien)]]
* [[Eon (Ultimate Alien)]]
* [[Eon (Omniverse)]]
* [[Ben 10,000 (Omniverse)]]
* [[Ben 10,000 (Reboot)]]
* [[Ben Tennyson (Evil Dimension)]]
* [[Ben Tennyson (Race Against Time)]]
* [[Ben Tennyson (Alien Swarm)]]
* [[Ben Tennyson (Dimension 23)]]
* [[Ben Tennyson (No-Watch Dimension)]]
* [[Ben Tennyson (Bad Dimension)]]
* [[Ben Tennyson (Negaverse)]]
* [[Ben Tennyson (Madworld)]]
* [[Ben Tennyson (Zombiverse)]]
* [[Ben Tennyson (Original Series Dimension)]]
* [[Ben Tennyson (Ultimate Alien Dimension)]]
* [[Ben Tennyson (Alien Force Dimension)]]
* [[Ben Tennyson (Omniverse Dimension)]]
* [[Ben Tennyson (Dimension 12041.5)]] Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction''
* [[Ben Tennyson (Maximillian's Dimension)]] Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction''
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters#Evil Ben's Victims|Evil Ben's Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run based on Omniverse, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Ben 10 Franklin]]'', see [[Benjamin Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
* [[Ben Tennyson (Hyperscan)]] game
* [[Ben Tennyson (Alien Force Video Game)]] game
* [[Ben Tennyson (Omniverse Video Game)]] game
* [[Ben Tennyson (Reboot Video Game)]] game
* [[Ben Tennyson (Power Trip)]] game
* [[Ben Tennyson (Galactic Racing)]] game
* [[Ben Tennyson (Classics)]] comics
* [[Ben Tennyson (Perfect Square)]] comics
* [[Ben Tennyson (Leapfrog)]] comics
* [[Ben Tennyson (Alien Force Video Game)]] game
* [[Ben Tennyson (Del Rey)]] manga
* [[Ben Tennyson (BOOM! Studios)]] comics
* [[Ben Tennyson (Bandai Comics)]] comics
* [[Ben Tennyson (Alien Race)]] game
* [[Ben Tennyson (Wrath of Psychobos)]] game
* [[Ben Tennyson (JoongAng MB Jr)]] korean comics (science hero and exploring hero)
* [[Ben Tennyson (Fuel Run)]] game
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* [[Omnitrix (Disambiguation)]]
* [[Albedo]]
* [[Kenny Tennyson (Disambiguation)]]
* [[Kevin Levin (Reboot)]]
* [[Gwen 10 (Disambiguation)]]
* [[Max Tennyson (Gwen 10)]]
* [[Argit 10]]
{{-}}
6b7ff3a5f116dab21639af08cbb6f9532df29e60
1899
1898
2022-04-24T03:39:10Z
Jaswacker
30585766
/* See Also */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
[[File:attwn.png|thumb|right|The gang's all here!]]
{{quote|text = Alien or not, I'm still the hero.|origin = [[Ben Tennyson (Omniverse Video Game)|Ben]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''[[Ben Tennyson (Prime)/Toys|Toys]] • [[Ben Tennyson (Prime)/Merchandise|Merchandise]]''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''[[Ben Tennyson (Reboot)/Toys|Toys]] • [[Ben Tennyson (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:RB10k.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|"Bad Ben"]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|"Benzarro"]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|"Mad Ben"]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|"Nega Ben"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* [[Ben Tennyson (Prime)]]
* [[Ben Tennyson (Reboot)]]
* [[Ben 10,000 (Original Series)]]
* [[Ultimate Ben]]
* [[Ben 10,000 (Ultimate Alien)]]
* [[Eon (Ultimate Alien)]]
* [[Eon (Omniverse)]]
* [[Ben 10,000 (Omniverse)]]
* [[Ben 10,000 (Reboot)]]
* [[Ben Tennyson (Evil Dimension)]]
* [[Ben Tennyson (Race Against Time)]]
* [[Ben Tennyson (Alien Swarm)]]
* [[Ben Tennyson (Dimension 23)]]
* [[Ben Tennyson (No-Watch Dimension)]]
* [[Ben Tennyson (Bad Dimension)]]
* [[Ben Tennyson (Negaverse)]]
* [[Ben Tennyson (Madworld)]]
* [[Ben Tennyson (Zombiverse)]]
* [[Ben Tennyson (Original Series Dimension)]]
* [[Ben Tennyson (Ultimate Alien Dimension)]]
* [[Ben Tennyson (Alien Force Dimension)]]
* [[Ben Tennyson (Omniverse Dimension)]]
* [[Ben Tennyson (Dimension 12041.5)]] Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction''
* [[Ben Tennyson (Maximillian's Dimension)]] Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction''
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters#Evil Ben's Victims|Evil Ben's Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run based on Omniverse, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Ben 10 Franklin]]'', see [[Benjamin Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
* [[Ben Tennyson (Hyperscan)]] game
* [[Ben Tennyson (Alien Force Video Game)]] game
* [[Ben Tennyson (Omniverse Video Game)]] game
* [[Ben Tennyson (Reboot Video Game)]] game
* [[Ben Tennyson (Power Trip)]] game
* [[Ben Tennyson (Galactic Racing)]] game
* [[Ben Tennyson (Classics)]] comics
* [[Ben Tennyson (Perfect Square)]] comics
* [[Ben Tennyson (Leapfrog)]] comics
* [[Ben Tennyson (Alien Force Video Game)]] game
* [[Ben Tennyson (Del Rey)]] manga
* [[Ben Tennyson (BOOM! Studios)]] comics
* [[Ben Tennyson (Bandai Comics)]] comics
* [[Ben Tennyson (Alien Race)]] game
* [[Ben Tennyson (Wrath of Psychobos)]] game
* [[Ben Tennyson (JoongAng MB Jr)]] korean comics (science hero and exploring hero)
* [[Ben Tennyson (Fuel Run)]] game
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* [[Omnitrix (Disambiguation)]]
* [[Omnitrix Wielders]]
* [[Albedo]]
* [[Kenny Tennyson (Disambiguation)]]
* [[Kevin Levin (Reboot)]]
* [[Gwen 10 (Disambiguation)]]
* [[Max Tennyson (Gwen 10)]]
* [[Argit (Argitrix Dimension)]]
* [[Timothy|Tim 10]]
{{-}}
b0cc69a210f29a48efc6960fee05302333edab5b
Ben Tennyson (Zombiverse)
0
508
1873
2022-04-23T22:39:37Z
Jaswacker
30585766
Created page with "placeholder"
wikitext
text/x-wiki
placeholder
ff55435345834a3fe224936776c2aa15f6ed5358
Ben Tennyson (Alien Swarm)
0
509
1874
2022-04-23T22:39:55Z
Jaswacker
30585766
Created page with "placeholder"
wikitext
text/x-wiki
placeholder
ff55435345834a3fe224936776c2aa15f6ed5358
Ben Tennyson (Dimension 23)
0
510
1875
2022-04-23T22:39:57Z
Jaswacker
30585766
Created page with "placeholder"
wikitext
text/x-wiki
placeholder
ff55435345834a3fe224936776c2aa15f6ed5358
Ben Tennyson (No-Watch Dimension)
0
511
1876
2022-04-23T22:40:00Z
Jaswacker
30585766
Created page with "placeholder"
wikitext
text/x-wiki
placeholder
ff55435345834a3fe224936776c2aa15f6ed5358
Ben Tennyson (Bad Dimension)
0
512
1877
2022-04-23T22:40:11Z
Jaswacker
30585766
Created page with "placeholder"
wikitext
text/x-wiki
placeholder
ff55435345834a3fe224936776c2aa15f6ed5358
Ben Tennyson (Negaverse)
0
513
1878
2022-04-23T22:40:14Z
Jaswacker
30585766
Created page with "placeholder"
wikitext
text/x-wiki
placeholder
ff55435345834a3fe224936776c2aa15f6ed5358
Ben Tennyson (Alien Force Dimension)
0
514
1879
2022-04-23T22:40:28Z
Jaswacker
30585766
Created page with "placeholder"
wikitext
text/x-wiki
placeholder
ff55435345834a3fe224936776c2aa15f6ed5358
Ben Tennyson (Ultimate Alien Dimension)
0
515
1880
2022-04-23T22:40:31Z
Jaswacker
30585766
Created page with "placeholder"
wikitext
text/x-wiki
placeholder
ff55435345834a3fe224936776c2aa15f6ed5358
Eon (Omniverse)
0
516
1881
2022-04-23T22:40:56Z
Jaswacker
30585766
Created page with "placeholder"
wikitext
text/x-wiki
placeholder
ff55435345834a3fe224936776c2aa15f6ed5358
Eon (Ultimate Alien)
0
517
1882
2022-04-23T22:41:01Z
Jaswacker
30585766
Created page with "placeholder"
wikitext
text/x-wiki
placeholder
ff55435345834a3fe224936776c2aa15f6ed5358
Ben 10,000 (Omniverse)
0
518
1883
2022-04-23T22:41:13Z
Jaswacker
30585766
Created page with "placeholder"
wikitext
text/x-wiki
placeholder
ff55435345834a3fe224936776c2aa15f6ed5358
Ben 10,000 (Reboot)
0
519
1884
2022-04-23T22:41:16Z
Jaswacker
30585766
Created page with "placeholder"
wikitext
text/x-wiki
placeholder
ff55435345834a3fe224936776c2aa15f6ed5358
Ben Tennyson (Evil Dimension)
0
520
1885
2022-04-23T22:41:20Z
Jaswacker
30585766
Created page with "placeholder"
wikitext
text/x-wiki
placeholder
ff55435345834a3fe224936776c2aa15f6ed5358
File:RB10k.png
6
521
1886
2022-04-23T22:42:29Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Omnitrix (Disambiguation)
0
303
1900
1805
2022-04-24T04:13:03Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth]] of the [[Galvan]], in an effort to make peace among varying species. The original found its way onto the wrist of then 10-year-old [[Ben Tennyson]], who would go then use he device to save the world, universe, and multiverse, many times over. Throughout the greater multiverse, many versions of the Omnitrix have been seen.
__TOC__
<center><gallery widths="200px" heights="250px">
File:af trix.png|link=[[Omnitrix (Prototype)]]|[[Omnitrix (Prototype)|Prototype Omnitrix]]<br><hr>''[[Omnitrix (Prototype)/Toys|Toys]] • [[Omnitrix (Prototype)/Merchandise|Merchandise]]''
File:ultimatrix ben.png|link=[[Ultimatrix]]|[[Ultimatrix]]<br><hr>''[[Ultimatrix/Toys|Toys]] • [[Ultimatrix/Merchandise|Merchandise]]''
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|[[Omnitrix (Completed)|''Omniverse'' Omnitrix]]<br><hr>''[[Omnitrix (Completed)/Toys|Toys]] • [[Omnitrix (Completed)/Merchandise|Merchandise]]''
File:Omnitrix-reboot.gif|link=[[Omnitrix (Reboot)]]|[[Omnitrix (Reboot)|''Ben 10'' (2016) Omnitrix]]<br><hr>''[[Omnitrix (Reboot)/Toys|Toys]] • [[Omnitrix (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Major Omnitrices ==
<center><gallery widths="200px" heights="250px">
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Omnitrix (Ben 10,000)|''Original Series'' Ben 10,000's Omnitrix]]
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Omnitrix (Ken 10)|Ken Tennyson's Omnitrix]]
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Omnitrix (Copy)|Albedo's Omnitrix]]
File:ultimatrix albedo.png|link=[[Ultimatrix]]|[[Ultimatrix|Albedo's Ultimatrix]]
File:unitrix model.png|link=[[Eunice]]|[[Eunice|Unitrix]]
File:Omnitrix2 UAF.png|link=[[Ultimatrix (Ben 10,000 Returns)]]|[[Ultimatrix (Ben 10,000 Returns)|Ultimate Ben's Ultimatrix]]
File:nemetrix model.png|link=[[Nemetrix]]|[[Nemetrix]]
File:biotrix2.png|link=[[Biomnitrix]]|[[Biomnitrix]]
File:stabilizergif.gif|link=[[Stabilizer]]|[[Stabilizer|Albedo's Stabilizer]]
File:ultimatrix ov.png|link=[[Stabilizer]]|[[Stabilizer|Albedo's Upgraded Stabilizer]]
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Hero Watch|Ben 23's Hero Watch]]
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Omnitrix (Bad Dimension)|Bad Ben's Omnitrix]]
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Power Watch|Mad Ben's Power Watch]]
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Negatrix|Nega Ben's Negatrix]]
File:zombitrixm.png|link=[[Zombitrix]]|[[Zombitrix|Benzarro's Zombitrix]]
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Omnitrix (Gweniverse)|''Omniverse'' Gwen 10's Omnitrix]]
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argitrix]]
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Antitrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Ben 10,010)]]|[[Omnitrix (Ben 10,010)|''Reboot'' Ben 10,000's Omnitrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Evil Dimension)]]|[[Omnitrix (Evil Dimension)|Alien X's Omnitrix in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Omnitrix (Original Series Dimension)]]|[[Omnitrix (Original Series Dimension)|"Original Series Ben's" Omnitrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Alien Force Dimension)]]|[[Omnitrix (Alien Force Dimension)|"Alien Force Ben's" Omnitrix]]
File:PLACEHOLDER2.png|link=[[Ultimatrix (Ultimate Alien Dimension)]]|[[Ultimatrix (Ultimate Alien Dimension)|"Ultimate Alien Ben's" Ultimatrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Omniverse Dimension)]]|[[Omnitrix (Omniverse Dimension)|"Omniverse Ben's" Omnitrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Gwen 10 Dimension)]]|[[Omnitrix (Gwen 10 Dimension)|''Reboot'' Gwen 10's Omnitrix]]
</gallery></center>
{{-}}
==Full List of Omnitrices==
* placeholder
* every omnitrix of every [[Ben]], all the ones listed above
* any trices of any other trix wielders too, like tim 10.
* potis altiare
{{-}}
==Media Referencing the Omnitrix==
* placeholder
{{-}}
==See Also==
* [[Omnitrix Wielders]]
* [[Ultimatrix (Disambiguation)]]
* [[Ben Tennyson (Disambiguation)]]
* [[Albedo]]
{{-}}
4e52bd6cb897d0dfe726e06b660a68279b56fd10
1901
1900
2022-04-24T04:14:57Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth]] of the [[Galvan]], in an effort to make peace among varying species. The original found its way onto the wrist of then 10-year-old [[Ben Tennyson]], who would go then use he device to save the world, universe, and multiverse, many times over. Throughout the greater multiverse, many versions of the Omnitrix have been seen.
__TOC__
{{-}}
<center><gallery widths="200px" heights="250px">
File:af trix.png|link=[[Omnitrix (Prototype)]]|[[Omnitrix (Prototype)|Prototype Omnitrix]]<br><hr>''[[Omnitrix (Prototype)/Toys|Toys]] • [[Omnitrix (Prototype)/Merchandise|Merchandise]]''
File:ultimatrix ben.png|link=[[Ultimatrix]]|[[Ultimatrix]]<br><hr>''[[Ultimatrix/Toys|Toys]] • [[Ultimatrix/Merchandise|Merchandise]]''
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|[[Omnitrix (Completed)|''Omniverse'' Omnitrix]]<br><hr>''[[Omnitrix (Completed)/Toys|Toys]] • [[Omnitrix (Completed)/Merchandise|Merchandise]]''
File:Omnitrix-reboot.gif|link=[[Omnitrix (Reboot)]]|[[Omnitrix (Reboot)|''Ben 10'' (2016) Omnitrix]]<br><hr>''[[Omnitrix (Reboot)/Toys|Toys]] • [[Omnitrix (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Major Omnitrices ==
<center><gallery widths="200px" heights="250px">
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Omnitrix (Ben 10,000)|''Original Series'' Ben 10,000's Omnitrix]]
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Omnitrix (Ken 10)|Ken Tennyson's Omnitrix]]
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Omnitrix (Copy)|Albedo's Omnitrix]]
File:ultimatrix albedo.png|link=[[Ultimatrix]]|[[Ultimatrix|Albedo's Ultimatrix]]
File:unitrix model.png|link=[[Eunice]]|[[Eunice|Unitrix]]
File:Omnitrix2 UAF.png|link=[[Ultimatrix (Ben 10,000 Returns)]]|[[Ultimatrix (Ben 10,000 Returns)|Ultimate Ben's Ultimatrix]]
File:nemetrix model.png|link=[[Nemetrix]]|[[Nemetrix]]
File:biotrix2.png|link=[[Biomnitrix]]|[[Biomnitrix]]
File:stabilizergif.gif|link=[[Stabilizer]]|[[Stabilizer|Albedo's Stabilizer]]
File:ultimatrix ov.png|link=[[Stabilizer]]|[[Stabilizer|Albedo's Upgraded Stabilizer]]
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Hero Watch|Ben 23's Hero Watch]]
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Omnitrix (Bad Dimension)|Bad Ben's Omnitrix]]
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Power Watch|Mad Ben's Power Watch]]
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Negatrix|Nega Ben's Negatrix]]
File:zombitrixm.png|link=[[Zombitrix]]|[[Zombitrix|Benzarro's Zombitrix]]
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Omnitrix (Gweniverse)|''Omniverse'' Gwen 10's Omnitrix]]
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argitrix]]
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Antitrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Ben 10,010)]]|[[Omnitrix (Ben 10,010)|''Reboot'' Ben 10,000's Omnitrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Evil Dimension)]]|[[Omnitrix (Evil Dimension)|Alien X's Omnitrix in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Omnitrix (Original Series Dimension)]]|[[Omnitrix (Original Series Dimension)|"Original Series Ben's" Omnitrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Alien Force Dimension)]]|[[Omnitrix (Alien Force Dimension)|"Alien Force Ben's" Omnitrix]]
File:PLACEHOLDER2.png|link=[[Ultimatrix (Ultimate Alien Dimension)]]|[[Ultimatrix (Ultimate Alien Dimension)|"Ultimate Alien Ben's" Ultimatrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Omniverse Dimension)]]|[[Omnitrix (Omniverse Dimension)|"Omniverse Ben's" Omnitrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Gwen 10 Dimension)]]|[[Omnitrix (Gwen 10 Dimension)|''Reboot'' Gwen 10's Omnitrix]]
</gallery></center>
{{-}}
==Full List of Omnitrices==
* placeholder
* every omnitrix of every [[Ben]], all the ones listed above
* any trices of any other trix wielders too, like tim 10.
* potis altiare
{{-}}
==Media Referencing the Omnitrix==
* placeholder
{{-}}
==See Also==
* [[Omnitrix Wielders]]
* [[Ultimatrix (Disambiguation)]]
* [[Ben Tennyson (Disambiguation)]]
* [[Albedo]]
{{-}}
34281ae72ba04c784a6f33c4d17e446d5be632d3
1903
1901
2022-04-24T04:16:44Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth]] of the [[Galvan]], in an effort to make peace among varying species. The original found its way onto the wrist of then 10-year-old [[Ben Tennyson]], who would go then use he device to save the world, universe, and multiverse, many times over. Throughout the greater multiverse, many versions of the Omnitrix have been seen.
__TOC__
{{-}}
<center><gallery widths="200px" heights="250px">
File:af trix.png|link=[[Omnitrix (Prototype)]]|[[Omnitrix (Prototype)|Prototype Omnitrix]]<br><hr>''[[Omnitrix (Prototype)/Toys|Toys]] • [[Omnitrix (Prototype)/Merchandise|Merchandise]]''
File:ultimatrix ben.png|link=[[Ultimatrix]]|[[Ultimatrix]]<br><hr>''[[Ultimatrix/Toys|Toys]] • [[Ultimatrix/Merchandise|Merchandise]]''
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|[[Omnitrix (Completed)|''Omniverse'' Omnitrix]]<br><hr>''[[Omnitrix (Completed)/Toys|Toys]] • [[Omnitrix (Completed)/Merchandise|Merchandise]]''
File:Omnitrix-reboot.gif|link=[[Omnitrix (Reboot)]]|[[Omnitrix (Reboot)|''Ben 10'' (2016) Omnitrix]]<br><hr>''[[Omnitrix (Reboot)/Toys|Toys]] • [[Omnitrix (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Major Omnitrices ==
<center><gallery widths="200px" heights="250px">
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Omnitrix (Ben 10,000)|''Original Series'' Ben 10,000's Omnitrix]]
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Omnitrix (Ken 10)|Ken Tennyson's Omnitrix]]
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Omnitrix (Copy)|Albedo's Omnitrix]]
File:ultimatrix albedo.png|link=[[Ultimatrix]]|[[Ultimatrix|Albedo's Ultimatrix]]
File:unitrix model.png|link=[[Eunice]]|[[Eunice|Unitrix]]
File:10kreturnstrix.png.png|link=[[Ultimatrix (Ben 10,000 Returns)]]|[[Ultimatrix (Ben 10,000 Returns)|Ultimate Ben's Ultimatrix]]
File:nemetrix model.png|link=[[Nemetrix]]|[[Nemetrix]]
File:biotrix2.png|link=[[Biomnitrix]]|[[Biomnitrix]]
File:stabilizergif.gif|link=[[Stabilizer]]|[[Stabilizer|Albedo's Stabilizer]]
File:ultimatrix ov.png|link=[[Stabilizer]]|[[Stabilizer|Albedo's Upgraded Stabilizer]]
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Hero Watch|Ben 23's Hero Watch]]
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Omnitrix (Bad Dimension)|Bad Ben's Omnitrix]]
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Power Watch|Mad Ben's Power Watch]]
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Negatrix|Nega Ben's Negatrix]]
File:zombitrixm.png|link=[[Zombitrix]]|[[Zombitrix|Benzarro's Zombitrix]]
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Omnitrix (Gweniverse)|''Omniverse'' Gwen 10's Omnitrix]]
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argitrix]]
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Antitrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Ben 10,010)]]|[[Omnitrix (Ben 10,010)|''Reboot'' Ben 10,000's Omnitrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Evil Dimension)]]|[[Omnitrix (Evil Dimension)|Alien X's Omnitrix in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Omnitrix (Original Series Dimension)]]|[[Omnitrix (Original Series Dimension)|"Original Series Ben's" Omnitrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Alien Force Dimension)]]|[[Omnitrix (Alien Force Dimension)|"Alien Force Ben's" Omnitrix]]
File:PLACEHOLDER2.png|link=[[Ultimatrix (Ultimate Alien Dimension)]]|[[Ultimatrix (Ultimate Alien Dimension)|"Ultimate Alien Ben's" Ultimatrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Omniverse Dimension)]]|[[Omnitrix (Omniverse Dimension)|"Omniverse Ben's" Omnitrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Gwen 10 Dimension)]]|[[Omnitrix (Gwen 10 Dimension)|''Reboot'' Gwen 10's Omnitrix]]
</gallery></center>
{{-}}
==Full List of Omnitrices==
* placeholder
* every omnitrix of every [[Ben]], all the ones listed above
* any trices of any other trix wielders too, like tim 10.
* potis altiare
{{-}}
==Media Referencing the Omnitrix==
* placeholder
{{-}}
==See Also==
* [[Omnitrix Wielders]]
* [[Ultimatrix (Disambiguation)]]
* [[Ben Tennyson (Disambiguation)]]
* [[Albedo]]
{{-}}
514e12fe0d8bb09f79767f5aeec9f14122da22a9
1904
1903
2022-04-24T04:16:56Z
Jaswacker
30585766
/* Major Omnitrices */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth]] of the [[Galvan]], in an effort to make peace among varying species. The original found its way onto the wrist of then 10-year-old [[Ben Tennyson]], who would go then use he device to save the world, universe, and multiverse, many times over. Throughout the greater multiverse, many versions of the Omnitrix have been seen.
__TOC__
{{-}}
<center><gallery widths="200px" heights="250px">
File:af trix.png|link=[[Omnitrix (Prototype)]]|[[Omnitrix (Prototype)|Prototype Omnitrix]]<br><hr>''[[Omnitrix (Prototype)/Toys|Toys]] • [[Omnitrix (Prototype)/Merchandise|Merchandise]]''
File:ultimatrix ben.png|link=[[Ultimatrix]]|[[Ultimatrix]]<br><hr>''[[Ultimatrix/Toys|Toys]] • [[Ultimatrix/Merchandise|Merchandise]]''
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|[[Omnitrix (Completed)|''Omniverse'' Omnitrix]]<br><hr>''[[Omnitrix (Completed)/Toys|Toys]] • [[Omnitrix (Completed)/Merchandise|Merchandise]]''
File:Omnitrix-reboot.gif|link=[[Omnitrix (Reboot)]]|[[Omnitrix (Reboot)|''Ben 10'' (2016) Omnitrix]]<br><hr>''[[Omnitrix (Reboot)/Toys|Toys]] • [[Omnitrix (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Major Omnitrices ==
<center><gallery widths="200px" heights="250px">
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Omnitrix (Ben 10,000)|''Original Series'' Ben 10,000's Omnitrix]]
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Omnitrix (Ken 10)|Ken Tennyson's Omnitrix]]
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Omnitrix (Copy)|Albedo's Omnitrix]]
File:ultimatrix albedo.png|link=[[Ultimatrix]]|[[Ultimatrix|Albedo's Ultimatrix]]
File:unitrix model.png|link=[[Eunice]]|[[Eunice|Unitrix]]
File:10kreturnstrix.png|link=[[Ultimatrix (Ben 10,000 Returns)]]|[[Ultimatrix (Ben 10,000 Returns)|Ultimate Ben's Ultimatrix]]
File:nemetrix model.png|link=[[Nemetrix]]|[[Nemetrix]]
File:biotrix2.png|link=[[Biomnitrix]]|[[Biomnitrix]]
File:stabilizergif.gif|link=[[Stabilizer]]|[[Stabilizer|Albedo's Stabilizer]]
File:ultimatrix ov.png|link=[[Stabilizer]]|[[Stabilizer|Albedo's Upgraded Stabilizer]]
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Hero Watch|Ben 23's Hero Watch]]
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Omnitrix (Bad Dimension)|Bad Ben's Omnitrix]]
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Power Watch|Mad Ben's Power Watch]]
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Negatrix|Nega Ben's Negatrix]]
File:zombitrixm.png|link=[[Zombitrix]]|[[Zombitrix|Benzarro's Zombitrix]]
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Omnitrix (Gweniverse)|''Omniverse'' Gwen 10's Omnitrix]]
File:Omnitrix Argitrix.png|link=[[Argitrix]]|[[Argitrix]]
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Antitrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Ben 10,010)]]|[[Omnitrix (Ben 10,010)|''Reboot'' Ben 10,000's Omnitrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Evil Dimension)]]|[[Omnitrix (Evil Dimension)|Alien X's Omnitrix in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Omnitrix (Original Series Dimension)]]|[[Omnitrix (Original Series Dimension)|"Original Series Ben's" Omnitrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Alien Force Dimension)]]|[[Omnitrix (Alien Force Dimension)|"Alien Force Ben's" Omnitrix]]
File:PLACEHOLDER2.png|link=[[Ultimatrix (Ultimate Alien Dimension)]]|[[Ultimatrix (Ultimate Alien Dimension)|"Ultimate Alien Ben's" Ultimatrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Omniverse Dimension)]]|[[Omnitrix (Omniverse Dimension)|"Omniverse Ben's" Omnitrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Gwen 10 Dimension)]]|[[Omnitrix (Gwen 10 Dimension)|''Reboot'' Gwen 10's Omnitrix]]
</gallery></center>
{{-}}
==Full List of Omnitrices==
* placeholder
* every omnitrix of every [[Ben]], all the ones listed above
* any trices of any other trix wielders too, like tim 10.
* potis altiare
{{-}}
==Media Referencing the Omnitrix==
* placeholder
{{-}}
==See Also==
* [[Omnitrix Wielders]]
* [[Ultimatrix (Disambiguation)]]
* [[Ben Tennyson (Disambiguation)]]
* [[Albedo]]
{{-}}
a403795480f2d0a93d4f1f14c1fce5c47a171f6b
1905
1904
2022-04-24T04:17:40Z
Jaswacker
30585766
/* Major Omnitrices */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth]] of the [[Galvan]], in an effort to make peace among varying species. The original found its way onto the wrist of then 10-year-old [[Ben Tennyson]], who would go then use he device to save the world, universe, and multiverse, many times over. Throughout the greater multiverse, many versions of the Omnitrix have been seen.
__TOC__
{{-}}
<center><gallery widths="200px" heights="250px">
File:af trix.png|link=[[Omnitrix (Prototype)]]|[[Omnitrix (Prototype)|Prototype Omnitrix]]<br><hr>''[[Omnitrix (Prototype)/Toys|Toys]] • [[Omnitrix (Prototype)/Merchandise|Merchandise]]''
File:ultimatrix ben.png|link=[[Ultimatrix]]|[[Ultimatrix]]<br><hr>''[[Ultimatrix/Toys|Toys]] • [[Ultimatrix/Merchandise|Merchandise]]''
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|[[Omnitrix (Completed)|''Omniverse'' Omnitrix]]<br><hr>''[[Omnitrix (Completed)/Toys|Toys]] • [[Omnitrix (Completed)/Merchandise|Merchandise]]''
File:Omnitrix-reboot.gif|link=[[Omnitrix (Reboot)]]|[[Omnitrix (Reboot)|''Ben 10'' (2016) Omnitrix]]<br><hr>''[[Omnitrix (Reboot)/Toys|Toys]] • [[Omnitrix (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Major Omnitrices ==
<center><gallery widths="200px" heights="250px">
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Omnitrix (Ben 10,000)|''Original Series'' Ben 10,000's Omnitrix]]
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Omnitrix (Ken 10)|Ken Tennyson's Omnitrix]]
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Omnitrix (Copy)|Albedo's Omnitrix]]
File:ultimatrix albedo.png|link=[[Ultimatrix]]|[[Ultimatrix|Albedo's Ultimatrix]]
File:unitrix model.png|link=[[Eunice]]|[[Eunice|Unitrix]]
File:10kreturnstrix.png|link=[[Ultimatrix (Ben 10,000 Returns)]]|[[Ultimatrix (Ben 10,000 Returns)|Ultimate Ben's Ultimatrix]]
File:nemetrix model.png|link=[[Nemetrix]]|[[Nemetrix]]
File:biotrix2.png|link=[[Biomnitrix]]|[[Biomnitrix]]
File:stabilizergif.gif|link=[[Stabilizer]]|[[Stabilizer|Albedo's Stabilizer]]
File:ultimatrix ov.png|link=[[Stabilizer]]|[[Stabilizer|Albedo's Upgraded Stabilizer]]
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Hero Watch|Ben 23's Hero Watch]]
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Omnitrix (Bad Dimension)|Bad Ben's Omnitrix]]
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Power Watch|Mad Ben's Power Watch]]
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Negatrix|Nega Ben's Negatrix]]
File:zombitrixm.png|link=[[Zombitrix]]|[[Zombitrix|Benzarro's Zombitrix]]
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Omnitrix (Gweniverse)|''Omniverse'' Gwen 10's Omnitrix]]
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Antitrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Ben 10,010)]]|[[Omnitrix (Ben 10,010)|''Reboot'' Ben 10,000's Omnitrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Evil Dimension)]]|[[Omnitrix (Evil Dimension)|Alien X's Omnitrix in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Omnitrix (Original Series Dimension)]]|[[Omnitrix (Original Series Dimension)|"Original Series Ben's" Omnitrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Alien Force Dimension)]]|[[Omnitrix (Alien Force Dimension)|"Alien Force Ben's" Omnitrix]]
File:PLACEHOLDER2.png|link=[[Ultimatrix (Ultimate Alien Dimension)]]|[[Ultimatrix (Ultimate Alien Dimension)|"Ultimate Alien Ben's" Ultimatrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Omniverse Dimension)]]|[[Omnitrix (Omniverse Dimension)|"Omniverse Ben's" Omnitrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Gwen 10 Dimension)]]|[[Omnitrix (Gwen 10 Dimension)|''Reboot'' Gwen 10's Omnitrix]]
</gallery></center>
{{-}}
==Full List of Omnitrices==
* placeholder
* every omnitrix of every [[Ben]], all the ones listed above
* any trices of any other trix wielders too, like tim 10.
* potis altiare
{{-}}
==Media Referencing the Omnitrix==
* placeholder
{{-}}
==See Also==
* [[Omnitrix Wielders]]
* [[Ultimatrix (Disambiguation)]]
* [[Ben Tennyson (Disambiguation)]]
* [[Albedo]]
{{-}}
563d9c34c49235d880bc3b29227420c1ae1c5c5d
1906
1905
2022-04-24T04:19:35Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth]] of the [[Galvan]], in an effort to promote peace among species in the universe. The original found its way onto the wrist of then 10-year-old [[Ben Tennyson]], who would go then use the device to save the world, universe, and multiverse, many times over.
__TOC__
{{-}}
<center><gallery widths="200px" heights="250px">
File:af trix.png|link=[[Omnitrix (Prototype)]]|[[Omnitrix (Prototype)|Prototype Omnitrix]]<br><hr>''[[Omnitrix (Prototype)/Toys|Toys]] • [[Omnitrix (Prototype)/Merchandise|Merchandise]]''
File:ultimatrix ben.png|link=[[Ultimatrix]]|[[Ultimatrix]]<br><hr>''[[Ultimatrix/Toys|Toys]] • [[Ultimatrix/Merchandise|Merchandise]]''
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|[[Omnitrix (Completed)|''Omniverse'' Omnitrix]]<br><hr>''[[Omnitrix (Completed)/Toys|Toys]] • [[Omnitrix (Completed)/Merchandise|Merchandise]]''
File:Omnitrix-reboot.gif|link=[[Omnitrix (Reboot)]]|[[Omnitrix (Reboot)|''Ben 10'' (2016) Omnitrix]]<br><hr>''[[Omnitrix (Reboot)/Toys|Toys]] • [[Omnitrix (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Major Omnitrices ==
<center><gallery widths="200px" heights="250px">
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Omnitrix (Ben 10,000)|''Original Series'' Ben 10,000's Omnitrix]]
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Omnitrix (Ken 10)|Ken Tennyson's Omnitrix]]
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Omnitrix (Copy)|Albedo's Omnitrix]]
File:ultimatrix albedo.png|link=[[Ultimatrix]]|[[Ultimatrix|Albedo's Ultimatrix]]
File:unitrix model.png|link=[[Eunice]]|[[Eunice|Unitrix]]
File:10kreturnstrix.png|link=[[Ultimatrix (Ben 10,000 Returns)]]|[[Ultimatrix (Ben 10,000 Returns)|Ultimate Ben's Ultimatrix]]
File:nemetrix model.png|link=[[Nemetrix]]|[[Nemetrix]]
File:biotrix2.png|link=[[Biomnitrix]]|[[Biomnitrix]]
File:stabilizergif.gif|link=[[Stabilizer]]|[[Stabilizer|Albedo's Stabilizer]]
File:ultimatrix ov.png|link=[[Stabilizer]]|[[Stabilizer|Albedo's Upgraded Stabilizer]]
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Hero Watch|Ben 23's Hero Watch]]
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Omnitrix (Bad Dimension)|Bad Ben's Omnitrix]]
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Power Watch|Mad Ben's Power Watch]]
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Negatrix|Nega Ben's Negatrix]]
File:zombitrixm.png|link=[[Zombitrix]]|[[Zombitrix|Benzarro's Zombitrix]]
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Omnitrix (Gweniverse)|''Omniverse'' Gwen 10's Omnitrix]]
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Antitrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Ben 10,010)]]|[[Omnitrix (Ben 10,010)|''Reboot'' Ben 10,000's Omnitrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Evil Dimension)]]|[[Omnitrix (Evil Dimension)|Alien X's Omnitrix in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Omnitrix (Original Series Dimension)]]|[[Omnitrix (Original Series Dimension)|"Original Series Ben's" Omnitrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Alien Force Dimension)]]|[[Omnitrix (Alien Force Dimension)|"Alien Force Ben's" Omnitrix]]
File:PLACEHOLDER2.png|link=[[Ultimatrix (Ultimate Alien Dimension)]]|[[Ultimatrix (Ultimate Alien Dimension)|"Ultimate Alien Ben's" Ultimatrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Omniverse Dimension)]]|[[Omnitrix (Omniverse Dimension)|"Omniverse Ben's" Omnitrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Gwen 10 Dimension)]]|[[Omnitrix (Gwen 10 Dimension)|''Reboot'' Gwen 10's Omnitrix]]
</gallery></center>
{{-}}
==Full List of Omnitrices==
* placeholder
* every omnitrix of every [[Ben]], all the ones listed above
* any trices of any other trix wielders too, like tim 10.
* potis altiare
{{-}}
==Media Referencing the Omnitrix==
* placeholder
{{-}}
==See Also==
* [[Omnitrix Wielders]]
* [[Ultimatrix (Disambiguation)]]
* [[Ben Tennyson (Disambiguation)]]
* [[Albedo]]
{{-}}
0332ece5b25fe40e37d38717dad93d0370f4b6dd
Ultimatrix
0
522
1902
2022-04-24T04:15:21Z
Jaswacker
30585766
Created blank page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Format:Disambig
0
523
1907
2022-04-24T04:39:01Z
Jaswacker
30585766
Created page with "{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}} {{Disambig}} A short, eye-catching description of the topic is always good. Don't get carried away though! Keep it..."
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
A short, eye-catching description of the topic is always good. Don't get carried away though! Keep it 2-3 sentences, informative, but vague enough to apply to the topic as a whole.
[[File:attwn.png|thumb|right|A good, relevant image should go with disambiguation articles for major topics. Get creative with the caption!]]
{{quote|text = Quote's should be used sparingly, but they might spice up an article for a major character!|origin = [[Rad Dudesman]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''1:''' Kevin Levin]]<br><hr>''[[Main Page|Toys]] • [[Main Page|Merchandise]]''
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''2:''' ''Vilgax Attacks'' Albedo]]
</gallery></center>
: ''These links should be '''the most important, most recognizable''' versions of the topic. Here are some additional rules:''
: '''A:''' ''For major topics, put quick links to the toys and merchandise pages for the article like this.''
: '''B:''' ''However, if the article itself '''doesn't have toys/merchandise pages''', then simply leave it off.''
{{-}}
==Major Versions of ''the Article''==
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''A:''' ''Original Series'' Gwen Tennyson]]
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''B:''' "Mad Ben"]]
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''C:''' Ben Tennyson (Action Packs)]]
</gallery></center>
: ''Any major versions of the topic should go here. Here are some rules:''
: '''A:''' ''If a version is exclusive to an episode or specific series, simply put the series/episode title ITALICIZED next to the topic.''
: '''B:''' ''When the name of the topic is a nickname '''outside the continuity of official material''', put it in quotation marks.''
: '''C:''' ''Don't know what to do? When all else fails, just put the name of the article!''
: ''Sometimes this whole section may be unnecessary. If there is only a couple important versions of the topic, put them in the section above this and leave this section off.''
{{-}}
==Full List of ''the Article''==
* [[Ben Tennyson (Prime)]], the main Ben followed throughout the events of ''[[Ben 10 (2005]], [[Ben 10: Alien Force]], [[Ben 10: Ultimate Alien]], and [[Ben 10: Omniverse]]''.
: ''Place links, with short a short description, to every version of the article's topic.'' '''''Repeat ones that were linked earlier in the article.'''''
{{-}}
==Media Referencing ''the Article''==
* [[Ghostfreaked Out]]
* [[Something Zombozo This Way Comes]]
: ''Link to some articles of other topics that are '''named after''' the topic of the main article.''
: ''Sometimes this section may be unnecessary, such as when the topic isn't referenced in the titles of '''any''' media. In these cases, leave this section off entirely.''
{{-}}
==See Also==
* [[Omnitrix]]
* [[Ultimatrix]]
* [[Ben Tennyson]]
: ''Put some links to similar articles that '''weren't''' mentioned elsewhere in the article.''
{{-}}
3ba623146820321f37e5d1b20976b3956baa74c2
1908
1907
2022-04-24T04:39:17Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
A short, eye-catching description of the topic is always good. Don't get carried away though! Keep it 2-3 sentences, informative, but vague enough to apply to the topic as a whole.
[[File:attwn.png|thumb|right|A good, relevant image should go with disambiguation articles for major topics. Get creative with the caption!]]
{{quote|text = Quote's should be used sparingly, but they might spice up an article for a major character!|origin = [[Rad Dudesman]]}}
__TOC__
{{-}}
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''1:''' Kevin Levin]]<br><hr>''[[Main Page|Toys]] • [[Main Page|Merchandise]]''
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''2:''' ''Vilgax Attacks'' Albedo]]
</gallery></center>
: ''These links should be '''the most important, most recognizable''' versions of the topic. Here are some additional rules:''
: '''A:''' ''For major topics, put quick links to the toys and merchandise pages for the article like this.''
: '''B:''' ''However, if the article itself '''doesn't have toys/merchandise pages''', then simply leave it off.''
{{-}}
==Major Versions of ''the Article''==
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''A:''' ''Original Series'' Gwen Tennyson]]
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''B:''' "Mad Ben"]]
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''C:''' Ben Tennyson (Action Packs)]]
</gallery></center>
: ''Any major versions of the topic should go here. Here are some rules:''
: '''A:''' ''If a version is exclusive to an episode or specific series, simply put the series/episode title ITALICIZED next to the topic.''
: '''B:''' ''When the name of the topic is a nickname '''outside the continuity of official material''', put it in quotation marks.''
: '''C:''' ''Don't know what to do? When all else fails, just put the name of the article!''
: ''Sometimes this whole section may be unnecessary. If there is only a couple important versions of the topic, put them in the section above this and leave this section off.''
{{-}}
==Full List of ''the Article''==
* [[Ben Tennyson (Prime)]], the main Ben followed throughout the events of ''[[Ben 10 (2005]], [[Ben 10: Alien Force]], [[Ben 10: Ultimate Alien]], and [[Ben 10: Omniverse]]''.
: ''Place links, with short a short description, to every version of the article's topic.'' '''''Repeat ones that were linked earlier in the article.'''''
{{-}}
==Media Referencing ''the Article''==
* [[Ghostfreaked Out]]
* [[Something Zombozo This Way Comes]]
: ''Link to some articles of other topics that are '''named after''' the topic of the main article.''
: ''Sometimes this section may be unnecessary, such as when the topic isn't referenced in the titles of '''any''' media. In these cases, leave this section off entirely.''
{{-}}
==See Also==
* [[Omnitrix]]
* [[Ultimatrix]]
* [[Ben Tennyson]]
: ''Put some links to similar articles that '''weren't''' mentioned elsewhere in the article.''
{{-}}
923b359691e4171b0c3f1941fc7f4565c4505ae4
1909
1908
2022-04-24T04:40:06Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
A short, eye-catching description of the topic is always good. Don't get carried away though! Keep it 2-3 sentences, informative, but vague enough to apply to the topic as a whole.
[[File:attwn.png|thumb|right|A good, relevant image should go with disambiguation articles for major topics. Get creative with the caption!]]
{{quote|text = Quote's should be used sparingly, but they might spice up an article for a major character!|origin = [[Rad Dudesman]]}}
__TOC__
{{-}}
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''1:''' Kevin Levin]]<br><hr>''[[Main Page|Toys]] • [[Main Page|Merchandise]]''
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''2:''' ''Vilgax Attacks'' Albedo]]
</gallery></center>
: ''These links should be '''the most important, most recognizable''' versions of the topic. Here are some additional rules:''
: '''A:''' ''For major topics, put quick links to the toys and merchandise pages for the article like this.''
: '''B:''' ''However, if the article itself '''doesn't have toys/merchandise pages''', then simply leave it off.''
{{-}}
==Major Versions of ''the Article''==
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''A:''' ''Original Series'' Gwen Tennyson]]
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''B:''' "Mad Ben"]]
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''C:''' Ben Tennyson (Action Packs)]]
</gallery></center>
:: ''Any major versions of the topic should go here. Here are some rules:''
:: '''A:''' ''If a version is exclusive to an episode or specific series, simply put the series/episode title ITALICIZED next to the topic.''
:: '''B:''' ''When the name of the topic is a nickname '''outside the continuity of official material''', put it in quotation marks.''
:: '''C:''' ''Don't know what to do? When all else fails, just put the name of the article!''
:: ''Sometimes this whole section may be unnecessary. If there is only a couple important versions of the topic, put them in the section above this and leave this section off.''
{{-}}
==Full List of ''the Article''==
* [[Ben Tennyson (Prime)]], the main Ben followed throughout the events of ''[[Ben 10 (2005]], [[Ben 10: Alien Force]], [[Ben 10: Ultimate Alien]], and [[Ben 10: Omniverse]]''.
:: ''Place links, with short a short description, to every version of the article's topic.'' '''''Repeat ones that were linked earlier in the article.'''''
{{-}}
==Media Referencing ''the Article''==
* [[Ghostfreaked Out]]
* [[Something Zombozo This Way Comes]]
:: ''Link to some articles of other topics that are '''named after''' the topic of the main article.''
:: ''Sometimes this section may be unnecessary, such as when the topic isn't referenced in the titles of '''any''' media. In these cases, leave this section off entirely.''
{{-}}
==See Also==
* [[Omnitrix]]
* [[Ultimatrix]]
* [[Ben Tennyson]]
:: ''Put some links to similar articles that '''weren't''' mentioned elsewhere in the article.''
{{-}}
d7aa8cc751d8e457cb8c5fc436ec559070889f37
1910
1909
2022-04-24T04:40:26Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|auu}}
{{Disambig}}
A short, eye-catching description of the topic is always good. Don't get carried away though! Keep it 2-3 sentences, informative, but vague enough to apply to the topic as a whole.
[[File:attwn.png|thumb|right|A good, relevant image should go with disambiguation articles for major topics. Get creative with the caption!]]
{{quote|text = Quote's should be used sparingly, but they might spice up an article for a major character!|origin = [[Rad Dudesman]]}}
__TOC__
{{-}}
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''1:''' Kevin Levin]]<br><hr>''[[Main Page|Toys]] • [[Main Page|Merchandise]]''
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''2:''' ''Vilgax Attacks'' Albedo]]
</gallery></center>
: ''These links should be '''the most important, most recognizable''' versions of the topic. Here are some additional rules:''
: '''A:''' ''For major topics, put quick links to the toys and merchandise pages for the article like this.''
: '''B:''' ''However, if the article itself '''doesn't have toys/merchandise pages''', then simply leave it off.''
{{-}}
==Major Versions of ''the Article''==
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''A:''' ''Original Series'' Gwen Tennyson]]
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''B:''' "Mad Ben"]]
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''C:''' Ben Tennyson (Action Packs)]]
</gallery></center>
:: ''Any major versions of the topic should go here. Here are some rules:''
:: '''A:''' ''If a version is exclusive to an episode or specific series, simply put the series/episode title ITALICIZED next to the topic.''
:: '''B:''' ''When the name of the topic is a nickname '''outside the continuity of official material''', put it in quotation marks.''
:: '''C:''' ''Don't know what to do? When all else fails, just put the name of the article!''
:: ''Sometimes this whole section may be unnecessary. If there is only a couple important versions of the topic, put them in the section above this and leave this section off.''
{{-}}
==Full List of ''the Article''==
* [[Ben Tennyson (Prime)]], the main Ben followed throughout the events of ''[[Ben 10 (2005]], [[Ben 10: Alien Force]], [[Ben 10: Ultimate Alien]], and [[Ben 10: Omniverse]]''.
:: ''Place links, with short a short description, to every version of the article's topic.'' '''''Repeat ones that were linked earlier in the article.'''''
{{-}}
==Media Referencing ''the Article''==
* [[Ghostfreaked Out]]
* [[Something Zombozo This Way Comes]]
:: ''Link to some articles of other topics that are '''named after''' the topic of the main article.''
:: ''Sometimes this section may be unnecessary, such as when the topic isn't referenced in the titles of '''any''' media. In these cases, leave this section off entirely.''
{{-}}
==See Also==
* [[Omnitrix]]
* [[Ultimatrix]]
* [[Ben Tennyson]]
:: ''Put some links to similar articles that '''weren't''' mentioned elsewhere in the article.''
{{-}}
009a89a349b80a00e8a4dbbcb7ef739e70f396b0
1911
1910
2022-04-24T04:41:12Z
Jaswacker
30585766
Protected "[[Format:Disambig]]" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))
wikitext
text/x-wiki
{{trix|auu}}
{{Disambig}}
A short, eye-catching description of the topic is always good. Don't get carried away though! Keep it 2-3 sentences, informative, but vague enough to apply to the topic as a whole.
[[File:attwn.png|thumb|right|A good, relevant image should go with disambiguation articles for major topics. Get creative with the caption!]]
{{quote|text = Quote's should be used sparingly, but they might spice up an article for a major character!|origin = [[Rad Dudesman]]}}
__TOC__
{{-}}
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''1:''' Kevin Levin]]<br><hr>''[[Main Page|Toys]] • [[Main Page|Merchandise]]''
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''2:''' ''Vilgax Attacks'' Albedo]]
</gallery></center>
: ''These links should be '''the most important, most recognizable''' versions of the topic. Here are some additional rules:''
: '''A:''' ''For major topics, put quick links to the toys and merchandise pages for the article like this.''
: '''B:''' ''However, if the article itself '''doesn't have toys/merchandise pages''', then simply leave it off.''
{{-}}
==Major Versions of ''the Article''==
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''A:''' ''Original Series'' Gwen Tennyson]]
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''B:''' "Mad Ben"]]
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''C:''' Ben Tennyson (Action Packs)]]
</gallery></center>
:: ''Any major versions of the topic should go here. Here are some rules:''
:: '''A:''' ''If a version is exclusive to an episode or specific series, simply put the series/episode title ITALICIZED next to the topic.''
:: '''B:''' ''When the name of the topic is a nickname '''outside the continuity of official material''', put it in quotation marks.''
:: '''C:''' ''Don't know what to do? When all else fails, just put the name of the article!''
:: ''Sometimes this whole section may be unnecessary. If there is only a couple important versions of the topic, put them in the section above this and leave this section off.''
{{-}}
==Full List of ''the Article''==
* [[Ben Tennyson (Prime)]], the main Ben followed throughout the events of ''[[Ben 10 (2005]], [[Ben 10: Alien Force]], [[Ben 10: Ultimate Alien]], and [[Ben 10: Omniverse]]''.
:: ''Place links, with short a short description, to every version of the article's topic.'' '''''Repeat ones that were linked earlier in the article.'''''
{{-}}
==Media Referencing ''the Article''==
* [[Ghostfreaked Out]]
* [[Something Zombozo This Way Comes]]
:: ''Link to some articles of other topics that are '''named after''' the topic of the main article.''
:: ''Sometimes this section may be unnecessary, such as when the topic isn't referenced in the titles of '''any''' media. In these cases, leave this section off entirely.''
{{-}}
==See Also==
* [[Omnitrix]]
* [[Ultimatrix]]
* [[Ben Tennyson]]
:: ''Put some links to similar articles that '''weren't''' mentioned elsewhere in the article.''
{{-}}
009a89a349b80a00e8a4dbbcb7ef739e70f396b0
1912
1911
2022-04-24T04:41:52Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|auu}}
{{Disambig}}
A short, eye-catching description of the topic is always good. Don't get carried away though! Keep it 2-3 sentences, informative, but vague enough to apply to the topic as a whole.
[[File:attwn.png|thumb|right|A good, relevant image should go with disambiguation articles for major topics. Get creative with the caption!]]
{{quote|text = Quote's should be used sparingly, but they might spice up an article for a major character!|origin = [[Rad Dudesman]]}}
__TOC__
{{-}}
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''1:''' Kevin Levin]]<br><hr>''[[Main Page|Toys]] • [[Main Page|Merchandise]]''
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''2:''' ''Vilgax Attacks'' Albedo]]
</gallery></center>
: ''These links should be '''the most important, most recognizable''' versions of the topic. Here are some additional rules:''
: '''1:''' ''For major topics, put quick links to the toys and merchandise pages for the article like this.''
: '''2:''' ''However, if the article itself '''doesn't have toys/merchandise pages''', then simply leave it off.''
{{-}}
==Major Versions of ''the Article''==
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''A:''' ''Original Series'' Gwen Tennyson]]
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''B:''' "Mad Ben"]]
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''C:''' Ben Tennyson (Action Packs)]]
</gallery></center>
:: ''Any major versions of the topic should go here. Here are some rules:''
:: '''A:''' ''If a version is exclusive to an episode or specific series, simply put the series/episode title ITALICIZED next to the topic.''
:: '''B:''' ''When the name of the topic is a nickname '''outside the continuity of official material''', put it in quotation marks.''
:: '''C:''' ''Don't know what to do? When all else fails, just put the name of the article!''
:: ''Sometimes this whole section may be unnecessary. If there is only a couple important versions of the topic, put them in the section above this and leave this section off.''
{{-}}
==Full List of ''the Article''==
* [[Ben Tennyson (Prime)]], the main Ben followed throughout the events of ''[[Ben 10 (2005]], [[Ben 10: Alien Force]], [[Ben 10: Ultimate Alien]], and [[Ben 10: Omniverse]]''.
:: ''Place links, with short a short description, to every version of the article's topic.'' '''''Repeat ones that were linked earlier in the article.'''''
{{-}}
==Media Referencing ''the Article''==
* [[Ghostfreaked Out]]
* [[Something Zombozo This Way Comes]]
:: ''Link to some articles of other topics that are '''named after''' the topic of the main article.''
:: ''Sometimes this section may be unnecessary, such as when the topic isn't referenced in the titles of '''any''' media. In these cases, leave this section off entirely.''
{{-}}
==See Also==
* [[Omnitrix]]
* [[Ultimatrix]]
* [[Ben Tennyson]]
:: ''Put some links to similar articles that '''weren't''' mentioned elsewhere in the article.''
{{-}}
8654c2ae40718717e6b5d1d79a1988cae6335ecc
1913
1912
2022-04-24T04:43:01Z
Jaswacker
30585766
/* Major Versions of the Article */
wikitext
text/x-wiki
{{trix|auu}}
{{Disambig}}
A short, eye-catching description of the topic is always good. Don't get carried away though! Keep it 2-3 sentences, informative, but vague enough to apply to the topic as a whole.
[[File:attwn.png|thumb|right|A good, relevant image should go with disambiguation articles for major topics. Get creative with the caption!]]
{{quote|text = Quote's should be used sparingly, but they might spice up an article for a major character!|origin = [[Rad Dudesman]]}}
__TOC__
{{-}}
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''1:''' Kevin Levin]]<br><hr>''[[Main Page|Toys]] • [[Main Page|Merchandise]]''
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''2:''' ''Vilgax Attacks'' Albedo]]
</gallery></center>
: ''These links should be '''the most important, most recognizable''' versions of the topic. Here are some additional rules:''
: '''1:''' ''For major topics, put quick links to the toys and merchandise pages for the article like this.''
: '''2:''' ''However, if the article itself '''doesn't have toys/merchandise pages''', then simply leave it off.''
{{-}}
==Major Versions of ''the Article''==
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''A:''' ''Original Series'' Gwen Tennyson]]
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''B:''' "Mad Ben"]]
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''C:''' Ben Tennyson (Action Packs)]]
</gallery></center>
:: ''Any major versions of the topic should go here. Here are some rules:''
:: '''A:''' ''If a version is exclusive to an episode or specific series, simply put the series/episode title ITALICIZED next to the topic.''
:: '''B:''' ''When the name of the topic is a nickname '''outside the continuity of official material''', put it in quotation marks.''
:: '''C:''' ''Don't know what to do? When all else fails, just put the name of the article!''
:: ''Sometimes this whole section may be unnecessary. If there is '''three or less''' important versions of the topic, put them in the section above this and leave this section off.''
{{-}}
==Full List of ''the Article''==
* [[Ben Tennyson (Prime)]], the main Ben followed throughout the events of ''[[Ben 10 (2005]], [[Ben 10: Alien Force]], [[Ben 10: Ultimate Alien]], and [[Ben 10: Omniverse]]''.
:: ''Place links, with short a short description, to every version of the article's topic.'' '''''Repeat ones that were linked earlier in the article.'''''
{{-}}
==Media Referencing ''the Article''==
* [[Ghostfreaked Out]]
* [[Something Zombozo This Way Comes]]
:: ''Link to some articles of other topics that are '''named after''' the topic of the main article.''
:: ''Sometimes this section may be unnecessary, such as when the topic isn't referenced in the titles of '''any''' media. In these cases, leave this section off entirely.''
{{-}}
==See Also==
* [[Omnitrix]]
* [[Ultimatrix]]
* [[Ben Tennyson]]
:: ''Put some links to similar articles that '''weren't''' mentioned elsewhere in the article.''
{{-}}
60527d70eb5b724fe3f186165adfd3bfa64e822b
1914
1913
2022-04-24T04:43:13Z
Jaswacker
30585766
/* Major Versions of the Article */
wikitext
text/x-wiki
{{trix|auu}}
{{Disambig}}
A short, eye-catching description of the topic is always good. Don't get carried away though! Keep it 2-3 sentences, informative, but vague enough to apply to the topic as a whole.
[[File:attwn.png|thumb|right|A good, relevant image should go with disambiguation articles for major topics. Get creative with the caption!]]
{{quote|text = Quote's should be used sparingly, but they might spice up an article for a major character!|origin = [[Rad Dudesman]]}}
__TOC__
{{-}}
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''1:''' Kevin Levin]]<br><hr>''[[Main Page|Toys]] • [[Main Page|Merchandise]]''
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''2:''' ''Vilgax Attacks'' Albedo]]
</gallery></center>
: ''These links should be '''the most important, most recognizable''' versions of the topic. Here are some additional rules:''
: '''1:''' ''For major topics, put quick links to the toys and merchandise pages for the article like this.''
: '''2:''' ''However, if the article itself '''doesn't have toys/merchandise pages''', then simply leave it off.''
{{-}}
==Major Versions of ''the Article''==
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''A:''' ''Original Series'' Gwen Tennyson]]
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''B:''' "Mad Ben"]]
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''C:''' Ben Tennyson (Action Packs)]]
</gallery></center>
:: ''Any major versions of the topic should go here. Here are some rules:''
:: '''A:''' ''If a version is exclusive to an episode or specific series, simply put the series/episode title ITALICIZED next to the topic.''
:: '''B:''' ''When the name of the topic is a nickname '''outside the continuity of official material''', put it in quotation marks.''
:: '''C:''' ''Don't know what to do? When all else fails, just put the name of the article!''
:: ''Sometimes this whole section may be unnecessary. If there are '''three or less''' important versions of the topic, put them in the section above this and leave this section off.''
{{-}}
==Full List of ''the Article''==
* [[Ben Tennyson (Prime)]], the main Ben followed throughout the events of ''[[Ben 10 (2005]], [[Ben 10: Alien Force]], [[Ben 10: Ultimate Alien]], and [[Ben 10: Omniverse]]''.
:: ''Place links, with short a short description, to every version of the article's topic.'' '''''Repeat ones that were linked earlier in the article.'''''
{{-}}
==Media Referencing ''the Article''==
* [[Ghostfreaked Out]]
* [[Something Zombozo This Way Comes]]
:: ''Link to some articles of other topics that are '''named after''' the topic of the main article.''
:: ''Sometimes this section may be unnecessary, such as when the topic isn't referenced in the titles of '''any''' media. In these cases, leave this section off entirely.''
{{-}}
==See Also==
* [[Omnitrix]]
* [[Ultimatrix]]
* [[Ben Tennyson]]
:: ''Put some links to similar articles that '''weren't''' mentioned elsewhere in the article.''
{{-}}
cafc3f828458c2e987466688242993fe6500f009
Format:Disambig
0
523
1915
1914
2022-04-24T04:43:25Z
Jaswacker
30585766
/* Full List of the Article */
wikitext
text/x-wiki
{{trix|auu}}
{{Disambig}}
A short, eye-catching description of the topic is always good. Don't get carried away though! Keep it 2-3 sentences, informative, but vague enough to apply to the topic as a whole.
[[File:attwn.png|thumb|right|A good, relevant image should go with disambiguation articles for major topics. Get creative with the caption!]]
{{quote|text = Quote's should be used sparingly, but they might spice up an article for a major character!|origin = [[Rad Dudesman]]}}
__TOC__
{{-}}
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''1:''' Kevin Levin]]<br><hr>''[[Main Page|Toys]] • [[Main Page|Merchandise]]''
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''2:''' ''Vilgax Attacks'' Albedo]]
</gallery></center>
: ''These links should be '''the most important, most recognizable''' versions of the topic. Here are some additional rules:''
: '''1:''' ''For major topics, put quick links to the toys and merchandise pages for the article like this.''
: '''2:''' ''However, if the article itself '''doesn't have toys/merchandise pages''', then simply leave it off.''
{{-}}
==Major Versions of ''the Article''==
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''A:''' ''Original Series'' Gwen Tennyson]]
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''B:''' "Mad Ben"]]
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''C:''' Ben Tennyson (Action Packs)]]
</gallery></center>
:: ''Any major versions of the topic should go here. Here are some rules:''
:: '''A:''' ''If a version is exclusive to an episode or specific series, simply put the series/episode title ITALICIZED next to the topic.''
:: '''B:''' ''When the name of the topic is a nickname '''outside the continuity of official material''', put it in quotation marks.''
:: '''C:''' ''Don't know what to do? When all else fails, just put the name of the article!''
:: ''Sometimes this whole section may be unnecessary. If there are '''three or less''' important versions of the topic, put them in the section above this and leave this section off.''
{{-}}
==Full List of ''the Article''==
* [[Ben Tennyson (Prime)]], the main Ben followed throughout the events of ''[[Ben 10 (2005}]], [[Ben 10: Alien Force]], [[Ben 10: Ultimate Alien]], and [[Ben 10: Omniverse]]''.
:: ''Place links, with short a short description, to every version of the article's topic.'' '''''Repeat ones that were linked earlier in the article.'''''
{{-}}
==Media Referencing ''the Article''==
* [[Ghostfreaked Out]]
* [[Something Zombozo This Way Comes]]
:: ''Link to some articles of other topics that are '''named after''' the topic of the main article.''
:: ''Sometimes this section may be unnecessary, such as when the topic isn't referenced in the titles of '''any''' media. In these cases, leave this section off entirely.''
{{-}}
==See Also==
* [[Omnitrix]]
* [[Ultimatrix]]
* [[Ben Tennyson]]
:: ''Put some links to similar articles that '''weren't''' mentioned elsewhere in the article.''
{{-}}
6c05a73da1d76da71fae6b4ad2b1f5b7d78665fb
1917
1915
2022-04-24T04:46:21Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|auu}}
{{Disambig}}
A short, eye-catching description of the topic is always good. Don't get carried away though! Keep it 2-3 sentences, informative, but vague enough to apply to the topic as a whole.
[[File:attwn.png|thumb|right|A good, relevant image should go with disambiguation articles for major topics. Get creative with the caption!]]
{{quote|text = Quote's should be used sparingly, but they might spice up an article for a major character!|origin = [[Rad Dudesman]]}}
__TOC__
{{-}}
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''1:''' Kevin Levin]]<br><hr>''[[Main Page|Toys]] • [[Main Page|Merchandise]]''
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''2:''' ''Vilgax Attacks'' Albedo]]
</gallery></center>
: ''These links should be '''the most important, most recognizable''' versions of the topic. Here are some additional rules:''
: '''1:''' ''For major topics, put quick links to the toys and merchandise pages for the article like this.''
: '''2:''' ''However, if the article itself '''doesn't have toys/merchandise pages''', then simply leave it off.''
{{-}}
==Major Versions of ''the Article''==
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''A:''' ''Original Series'' Gwen Tennyson]]
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''B:''' "Mad Ben"]]
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''C:''' Ben Tennyson (Action Packs)]]
</gallery></center>
:: ''Any major versions of the topic should go here. Here are some rules:''
:: '''A:''' ''If a version is exclusive to an episode or specific series, simply put the series/episode title ITALICIZED next to the topic.''
:: '''B:''' ''When the name of the topic is a nickname '''outside the continuity of official material''', put it in quotation marks.''
:: '''C:''' ''Don't know what to do? When all else fails, just put the name of the article!''
:: ''Sometimes this whole section may be unnecessary. If there are '''three or less''' important versions of the topic, put them in the section above this and leave this section off.''
{{-}}
==Full List of ''the Article''==
* [[Ben Tennyson (Prime)]], the main Ben followed throughout the events of ''[[Ben 10 (2005}]], [[Ben 10: Alien Force]], [[Ben 10: Ultimate Alien]], and [[Ben 10: Omniverse]]''.
:: ''Place links, with short a short description, to every version of the article's topic.'' '''''Repeat ones that were linked earlier in the article.'''''
{{-}}
==Media Referencing ''the Article''==
* [[Ghostfreaked Out]]
* [[Something Zombozo This Way Comes]]
:: ''Link to some articles of other topics that are '''named after''' the topic of the main article.''
:: ''Sometimes this section may be unnecessary, such as when the topic isn't referenced in the titles of '''any''' media. In these cases, leave this section off entirely.''
{{-}}
==See Also==
* [[Omnitrix]]
* [[Ultimatrix]]
* [[Ben Tennyson]]
:: ''Put some links to similar articles that '''weren't''' mentioned elsewhere in the article.''
:: ''This section can be left off for smaller topics and shorter articles, but add it whenever possible.''
{{-}}
0a0399766cc11672aed990cdbe1f25196998876a
1918
1917
2022-04-24T04:46:59Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|auu}}
{{Disambig}}
A short, eye-catching description of the topic is always good. Don't get carried away though! Keep it about 2-3 sentences and informative, but vague enough to apply to the topic as a whole.
[[File:attwn.png|thumb|right|A good, relevant image should go with disambiguation articles for major topics. Get creative with the caption!]]
{{quote|text = Quote's should be used sparingly, but they might spice up an article for a major character!|origin = [[Rad Dudesman]]}}
__TOC__
{{-}}
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''1:''' Kevin Levin]]<br><hr>''[[Main Page|Toys]] • [[Main Page|Merchandise]]''
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''2:''' ''Vilgax Attacks'' Albedo]]
</gallery></center>
: ''These links should be '''the most important, most recognizable''' versions of the topic. Here are some additional rules:''
: '''1:''' ''For major topics, put quick links to the toys and merchandise pages for the article like this.''
: '''2:''' ''However, if the article itself '''doesn't have toys/merchandise pages''', then simply leave it off.''
{{-}}
==Major Versions of ''the Article''==
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''A:''' ''Original Series'' Gwen Tennyson]]
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''B:''' "Mad Ben"]]
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''C:''' Ben Tennyson (Action Packs)]]
</gallery></center>
:: ''Any major versions of the topic should go here. Here are some rules:''
:: '''A:''' ''If a version is exclusive to an episode or specific series, simply put the series/episode title ITALICIZED next to the topic.''
:: '''B:''' ''When the name of the topic is a nickname '''outside the continuity of official material''', put it in quotation marks.''
:: '''C:''' ''Don't know what to do? When all else fails, just put the name of the article!''
:: ''Sometimes this whole section may be unnecessary. If there are '''three or less''' important versions of the topic, put them in the section above this and leave this section off.''
{{-}}
==Full List of ''the Article''==
* [[Ben Tennyson (Prime)]], the main Ben followed throughout the events of ''[[Ben 10 (2005}]], [[Ben 10: Alien Force]], [[Ben 10: Ultimate Alien]], and [[Ben 10: Omniverse]]''.
:: ''Place links, with short a short description, to every version of the article's topic.'' '''''Repeat ones that were linked earlier in the article.'''''
{{-}}
==Media Referencing ''the Article''==
* [[Ghostfreaked Out]]
* [[Something Zombozo This Way Comes]]
:: ''Link to some articles of other topics that are '''named after''' the topic of the main article.''
:: ''Sometimes this section may be unnecessary, such as when the topic isn't referenced in the titles of '''any''' media. In these cases, leave this section off entirely.''
{{-}}
==See Also==
* [[Omnitrix]]
* [[Ultimatrix]]
* [[Ben Tennyson]]
:: ''Put some links to similar articles that '''weren't''' mentioned elsewhere in the article.''
:: ''This section can be left off for smaller topics and shorter articles, but add it whenever possible.''
{{-}}
25914bb189769cd3b86b3ab5ef853bac48da31f9
Format:Disambiguation
0
524
1916
2022-04-24T04:45:01Z
Jaswacker
30585766
Redirected page to [[Format:Disambig]]
wikitext
text/x-wiki
#REDIRECT [[Format:Disambig]]
7711a458329fabf0a02356c3d713077e51c0d980
Ben Tennyson (Disambiguation)
0
24
1919
1899
2022-04-24T04:48:56Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
[[File:attwn.png|thumb|right|The gang's all here!]]
{{quote|text = Alien or not, I'm still the hero.|origin = [[Ben Tennyson (Omniverse Video Game)|Ben]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''[[Ben Tennyson (Prime)/Toys|Toys]] • [[Ben Tennyson (Prime)/Merchandise|Merchandise]]''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''[[Ben Tennyson (Reboot)/Toys|Toys]] • [[Ben Tennyson (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:RB10k.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|"Bad Ben"]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|"Benzarro"]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|"Mad Ben"]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|"Nega Ben"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* [[Ben Tennyson (Prime)]]
* [[Ben Tennyson (Reboot)]]
* [[Ben 10,000 (Original Series)]]
* [[Ultimate Ben]]
* [[Ben 10,000 (Ultimate Alien)]]
* [[Eon (Ultimate Alien)]]
* [[Eon (Omniverse)]]
* [[Ben 10,000 (Omniverse)]]
* [[Ben 10,000 (Reboot)]]
* [[Ben Tennyson (Evil Dimension)]]
* [[Ben Tennyson (Race Against Time)]]
* [[Ben Tennyson (Alien Swarm)]]
* [[Ben Tennyson (Dimension 23)]]
* [[Ben Tennyson (No-Watch Dimension)]]
* [[Ben Tennyson (Bad Dimension)]]
* [[Ben Tennyson (Negaverse)]]
* [[Ben Tennyson (Madworld)]]
* [[Ben Tennyson (Zombiverse)]]
* [[Ben Tennyson (Original Series Dimension)]]
* [[Ben Tennyson (Ultimate Alien Dimension)]]
* [[Ben Tennyson (Alien Force Dimension)]]
* [[Ben Tennyson (Omniverse Dimension)]]
* [[Ben Tennyson (Dimension 12041.5)]] Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction''
* [[Ben Tennyson (Maximillian's Dimension)]] Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction''
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters#Evil Ben's Victims|Evil Ben's Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run based on Omniverse, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Ben 10 Franklin]]'', see [[Benjamin Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
* [[Ben Tennyson (Hyperscan)]] game
* [[Ben Tennyson (Alien Force Video Game)]] game
* [[Ben Tennyson (Omniverse Video Game)]] game
* [[Ben Tennyson (Reboot Video Game)]] game
* [[Ben Tennyson (Power Trip)]] game
* [[Ben Tennyson (Galactic Racing)]] game
* [[Ben Tennyson (Classics)]] comics
* [[Ben Tennyson (Perfect Square)]] comics
* [[Ben Tennyson (Leapfrog)]] comics
* [[Ben Tennyson (Alien Force Video Game)]] game
* [[Ben Tennyson (Del Rey)]] manga
* [[Ben Tennyson (BOOM! Studios)]] comics
* [[Ben Tennyson (Bandai Comics)]] comics
* [[Ben Tennyson (Alien Race)]] game
* [[Ben Tennyson (Wrath of Psychobos)]] game
* [[Ben Tennyson (JoongAng MB Jr)]] korean comics (science hero and exploring hero)
* [[Ben Tennyson (Fuel Run)]] game
* [[Ben Tennyson {V-Tech)]] mobigo kids game called "Ben 10: Ultimate Alien: Mind Mine"
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* [[Omnitrix (Disambiguation)]]
* [[Omnitrix Wielders]]
* [[Albedo]]
* [[Kenny Tennyson (Disambiguation)]]
* [[Kevin Levin (Reboot)]]
* [[Gwen 10 (Disambiguation)]]
* [[Max Tennyson (Gwen 10)]]
* [[Argit (Argitrix Dimension)]]
* [[Timothy|Tim 10]]
{{-}}
ae6c67fbe9526daf1c91f75f847d75a47d55b619
1920
1919
2022-04-24T04:49:15Z
Jaswacker
30585766
/* Full List of Ben Tennysons */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
[[File:attwn.png|thumb|right|The gang's all here!]]
{{quote|text = Alien or not, I'm still the hero.|origin = [[Ben Tennyson (Omniverse Video Game)|Ben]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''[[Ben Tennyson (Prime)/Toys|Toys]] • [[Ben Tennyson (Prime)/Merchandise|Merchandise]]''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''[[Ben Tennyson (Reboot)/Toys|Toys]] • [[Ben Tennyson (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:RB10k.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|"Bad Ben"]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|"Benzarro"]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|"Mad Ben"]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|"Nega Ben"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* [[Ben Tennyson (Prime)]]
* [[Ben Tennyson (Reboot)]]
* [[Ben 10,000 (Original Series)]]
* [[Ultimate Ben]]
* [[Ben 10,000 (Ultimate Alien)]]
* [[Eon (Ultimate Alien)]]
* [[Eon (Omniverse)]]
* [[Ben 10,000 (Omniverse)]]
* [[Ben 10,000 (Reboot)]]
* [[Ben Tennyson (Evil Dimension)]]
* [[Ben Tennyson (Race Against Time)]]
* [[Ben Tennyson (Alien Swarm)]]
* [[Ben Tennyson (Dimension 23)]]
* [[Ben Tennyson (No-Watch Dimension)]]
* [[Ben Tennyson (Bad Dimension)]]
* [[Ben Tennyson (Negaverse)]]
* [[Ben Tennyson (Madworld)]]
* [[Ben Tennyson (Zombiverse)]]
* [[Ben Tennyson (Original Series Dimension)]]
* [[Ben Tennyson (Ultimate Alien Dimension)]]
* [[Ben Tennyson (Alien Force Dimension)]]
* [[Ben Tennyson (Omniverse Dimension)]]
* [[Ben Tennyson (Dimension 12041.5)]] Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction''
* [[Ben Tennyson (Maximillian's Dimension)]] Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction''
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters#Evil Ben's Victims|Evil Ben's Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run based on Omniverse, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Ben 10 Franklin]]'', see [[Benjamin Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
* [[Ben Tennyson (Hyperscan)]] game
* [[Ben Tennyson (Alien Force Video Game)]] game
* [[Ben Tennyson (Omniverse Video Game)]] game
* [[Ben Tennyson (Reboot Video Game)]] game
* [[Ben Tennyson (Power Trip)]] game
* [[Ben Tennyson (Galactic Racing)]] game
* [[Ben Tennyson (Classics)]] comics
* [[Ben Tennyson (Perfect Square)]] comics
* [[Ben Tennyson (Leapfrog)]] comics
* [[Ben Tennyson (Alien Force Video Game)]] game
* [[Ben Tennyson (Del Rey)]] manga
* [[Ben Tennyson (BOOM! Studios)]] comics
* [[Ben Tennyson (Bandai Comics)]] comics
* [[Ben Tennyson (Alien Race)]] game
* [[Ben Tennyson (Wrath of Psychobos)]] game
* [[Ben Tennyson (JoongAng MB Jr)]] korean comics (science hero and exploring hero)
* [[Ben Tennyson (Fuel Run)]] game
* [[Ben Tennyson (V-Tech)]] mobigo kids game called "Ben 10: Ultimate Alien: Mind Mine"
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* [[Omnitrix (Disambiguation)]]
* [[Omnitrix Wielders]]
* [[Albedo]]
* [[Kenny Tennyson (Disambiguation)]]
* [[Kevin Levin (Reboot)]]
* [[Gwen 10 (Disambiguation)]]
* [[Max Tennyson (Gwen 10)]]
* [[Argit (Argitrix Dimension)]]
* [[Timothy|Tim 10]]
{{-}}
c97da76d73a2eba7141cd96f832d16e047afa2f8
1921
1920
2022-04-24T04:49:31Z
Jaswacker
30585766
/* Full List of Ben Tennysons */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
[[File:attwn.png|thumb|right|The gang's all here!]]
{{quote|text = Alien or not, I'm still the hero.|origin = [[Ben Tennyson (Omniverse Video Game)|Ben]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''[[Ben Tennyson (Prime)/Toys|Toys]] • [[Ben Tennyson (Prime)/Merchandise|Merchandise]]''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''[[Ben Tennyson (Reboot)/Toys|Toys]] • [[Ben Tennyson (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:RB10k.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|"Bad Ben"]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|"Benzarro"]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|"Mad Ben"]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|"Nega Ben"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* [[Ben Tennyson (Prime)]]
* [[Ben Tennyson (Reboot)]]
* [[Ben 10,000 (Original Series)]]
* [[Ultimate Ben]] transformation
* [[Ben 10,000 (Ultimate Alien)]]
* [[Eon (Ultimate Alien)]]
* [[Eon (Omniverse)]]
* [[Ben 10,000 (Omniverse)]]
* [[Ben 10,000 (Reboot)]]
* [[Ben Tennyson (Evil Dimension)]]
* [[Ben Tennyson (Race Against Time)]]
* [[Ben Tennyson (Alien Swarm)]]
* [[Ben Tennyson (Dimension 23)]]
* [[Ben Tennyson (No-Watch Dimension)]]
* [[Ben Tennyson (Bad Dimension)]]
* [[Ben Tennyson (Negaverse)]]
* [[Ben Tennyson (Madworld)]]
* [[Ben Tennyson (Zombiverse)]]
* [[Ben Tennyson (Original Series Dimension)]]
* [[Ben Tennyson (Ultimate Alien Dimension)]]
* [[Ben Tennyson (Alien Force Dimension)]]
* [[Ben Tennyson (Omniverse Dimension)]]
* [[Ben Tennyson (Dimension 12041.5)]] Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction''
* [[Ben Tennyson (Maximillian's Dimension)]] Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction''
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters#Evil Ben's Victims|Evil Ben's Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run based on Omniverse, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Ben 10 Franklin]]'', see [[Benjamin Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''Cowboys and Alien Force'', see [[Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
* [[Ben Tennyson (Hyperscan)]] game
* [[Ben Tennyson (Alien Force Video Game)]] game
* [[Ben Tennyson (Omniverse Video Game)]] game
* [[Ben Tennyson (Reboot Video Game)]] game
* [[Ben Tennyson (Power Trip)]] game
* [[Ben Tennyson (Galactic Racing)]] game
* [[Ben Tennyson (Classics)]] comics
* [[Ben Tennyson (Perfect Square)]] comics
* [[Ben Tennyson (Leapfrog)]] comics
* [[Ben Tennyson (Alien Force Video Game)]] game
* [[Ben Tennyson (Del Rey)]] manga
* [[Ben Tennyson (BOOM! Studios)]] comics
* [[Ben Tennyson (Bandai Comics)]] comics
* [[Ben Tennyson (Alien Race)]] game
* [[Ben Tennyson (Wrath of Psychobos)]] game
* [[Ben Tennyson (JoongAng MB Jr)]] korean comics (science hero and exploring hero)
* [[Ben Tennyson (Fuel Run)]] game
* [[Ben Tennyson (V-Tech)]] mobigo kids game called "Ben 10: Ultimate Alien: Mind Mine"
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* [[Omnitrix (Disambiguation)]]
* [[Omnitrix Wielders]]
* [[Albedo]]
* [[Kenny Tennyson (Disambiguation)]]
* [[Kevin Levin (Reboot)]]
* [[Gwen 10 (Disambiguation)]]
* [[Max Tennyson (Gwen 10)]]
* [[Argit (Argitrix Dimension)]]
* [[Timothy|Tim 10]]
{{-}}
301371b2ee0bde4055dc7cd51ba67c9d6a26e873
1922
1921
2022-04-24T04:50:23Z
Jaswacker
30585766
/* Full List of Ben Tennysons */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
[[File:attwn.png|thumb|right|The gang's all here!]]
{{quote|text = Alien or not, I'm still the hero.|origin = [[Ben Tennyson (Omniverse Video Game)|Ben]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''[[Ben Tennyson (Prime)/Toys|Toys]] • [[Ben Tennyson (Prime)/Merchandise|Merchandise]]''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''[[Ben Tennyson (Reboot)/Toys|Toys]] • [[Ben Tennyson (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:RB10k.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|"Bad Ben"]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|"Benzarro"]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|"Mad Ben"]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|"Nega Ben"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* [[Ben Tennyson (Prime)]]
* [[Ben Tennyson (Reboot)]]
* [[Ben 10,000 (Original Series)]]
* [[Ultimate Ben]] transformation
* [[Ben 10,000 (Ultimate Alien)]]
* [[Eon (Ultimate Alien)]]
* [[Eon (Omniverse)]]
* [[Ben 10,000 (Omniverse)]]
* [[Ben 10,000 (Reboot)]]
* [[Ben Tennyson (Evil Dimension)]]
* [[Ben Tennyson (Race Against Time)]]
* [[Ben Tennyson (Alien Swarm)]]
* [[Ben Tennyson (Dimension 23)]]
* [[Ben Tennyson (No-Watch Dimension)]]
* [[Ben Tennyson (Bad Dimension)]]
* [[Ben Tennyson (Negaverse)]]
* [[Ben Tennyson (Madworld)]]
* [[Ben Tennyson (Zombiverse)]]
* [[Ben Tennyson (Original Series Dimension)]]
* [[Ben Tennyson (Ultimate Alien Dimension)]]
* [[Ben Tennyson (Alien Force Dimension)]]
* [[Ben Tennyson (Omniverse Dimension)]]
* [[Ben Tennyson (Dimension 12041.5)]] Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction''
* [[Ben Tennyson (Maximillian's Dimension)]] Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction''
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters#Evil Ben's Victims|Evil Ben's Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run based on Omniverse, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Ben 10 Franklin]]'', see [[Benjamin Franklin#Ben 10 Franklin|Benjamin Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Cowboys and Alien Force]]'', see [[Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
* [[Ben Tennyson (Hyperscan)]] game
* [[Ben Tennyson (Alien Force Video Game)]] game
* [[Ben Tennyson (Omniverse Video Game)]] game
* [[Ben Tennyson (Reboot Video Game)]] game
* [[Ben Tennyson (Power Trip)]] game
* [[Ben Tennyson (Galactic Racing)]] game
* [[Ben Tennyson (Classics)]] comics
* [[Ben Tennyson (Perfect Square)]] comics
* [[Ben Tennyson (Leapfrog)]] comics
* [[Ben Tennyson (Alien Force Video Game)]] game
* [[Ben Tennyson (Del Rey)]] manga
* [[Ben Tennyson (BOOM! Studios)]] comics
* [[Ben Tennyson (Bandai Comics)]] comics
* [[Ben Tennyson (Alien Race)]] game
* [[Ben Tennyson (Wrath of Psychobos)]] game
* [[Ben Tennyson (JoongAng MB Jr)]] korean comics (science hero and exploring hero)
* [[Ben Tennyson (Fuel Run)]] game
* [[Ben Tennyson (V-Tech)]] mobigo kids game called "Ben 10: Ultimate Alien: Mind Mine"
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* [[Omnitrix (Disambiguation)]]
* [[Omnitrix Wielders]]
* [[Albedo]]
* [[Kenny Tennyson (Disambiguation)]]
* [[Kevin Levin (Reboot)]]
* [[Gwen 10 (Disambiguation)]]
* [[Max Tennyson (Gwen 10)]]
* [[Argit (Argitrix Dimension)]]
* [[Timothy|Tim 10]]
{{-}}
545e98291ceda6eb67de7663ed96aba80025bef4
1923
1922
2022-04-24T04:51:28Z
Jaswacker
30585766
/* Full List of Ben Tennysons */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
[[File:attwn.png|thumb|right|The gang's all here!]]
{{quote|text = Alien or not, I'm still the hero.|origin = [[Ben Tennyson (Omniverse Video Game)|Ben]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''[[Ben Tennyson (Prime)/Toys|Toys]] • [[Ben Tennyson (Prime)/Merchandise|Merchandise]]''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''[[Ben Tennyson (Reboot)/Toys|Toys]] • [[Ben Tennyson (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:RB10k.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|"Bad Ben"]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|"Benzarro"]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|"Mad Ben"]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|"Nega Ben"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* [[Ben Tennyson (Prime)]]
* [[Ben Tennyson (Reboot)]]
* [[Ben 10,000 (Original Series)]]
* [[Ultimate Ben]] transformation
* [[Ben 10,000 (Ultimate Alien)]]
* [[Eon (Ultimate Alien)]]
* [[Eon (Omniverse)]]
* [[Ben 10,000 (Omniverse)]]
* [[Ben 10,000 (Reboot)]]
* [[Ben Tennyson (Evil Dimension)]]
* [[Ben Tennyson (Race Against Time)]]
* [[Ben Tennyson (Alien Swarm)]]
* [[Ben Tennyson (Dimension 23)]]
* [[Ben Tennyson (No-Watch Dimension)]]
* [[Ben Tennyson (Bad Dimension)]]
* [[Ben Tennyson (Negaverse)]]
* [[Ben Tennyson (Madworld)]]
* [[Ben Tennyson (Zombiverse)]]
* [[Ben Tennyson (Original Series Dimension)]]
* [[Ben Tennyson (Ultimate Alien Dimension)]]
* [[Ben Tennyson (Alien Force Dimension)]]
* [[Ben Tennyson (Omniverse Dimension)]]
* [[Ben Tennyson (Dimension 12041.5)]] Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction''
* [[Ben Tennyson (Maximillian's Dimension)]] Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction''
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters#Evil Ben's Victims|Evil Ben's Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run based on Omniverse, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Ben 10 Franklin]]'', see [[Benjamin Franklin#Ben 10 Franklin|Benjamin Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Cowboys and Alien Force]]'', see [[Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
* [[Ben Tennyson (Hyperscan)]] game
* [[Ben Tennyson (Alien Force Video Game)]] game
* [[Ben Tennyson (Omniverse Video Game)]] game
* [[Ben Tennyson (Reboot Video Game)]] game
* [[Ben Tennyson (Power Trip)]] game
* [[Ben Tennyson (Galactic Racing)]] game
* [[Ben Tennyson (Classics)]] comics
* [[Ben Tennyson (Perfect Square)]] comics
* [[Ben Tennyson (Leapfrog)]] comics and kids learning games
* [[Ben Tennyson (Alien Force Video Game)]] game
* [[Ben Tennyson (Del Rey)]] manga
* [[Ben Tennyson (BOOM! Studios)]] comics
* [[Ben Tennyson (Bandai Comics)]] comics
* [[Ben Tennyson (Alien Race)]] game
* [[Ben Tennyson (Wrath of Psychobos)]] game
* [[Ben Tennyson (JoongAng MB Jr)]] korean comics (science hero and exploring hero)
* [[Ben Tennyson (Fuel Run)]] game
* [[Ben Tennyson (V-Tech)]] mobigo kids learning game called "Ben 10: Ultimate Alien: Mind Mine"
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* [[Omnitrix (Disambiguation)]]
* [[Omnitrix Wielders]]
* [[Albedo]]
* [[Kenny Tennyson (Disambiguation)]]
* [[Kevin Levin (Reboot)]]
* [[Gwen 10 (Disambiguation)]]
* [[Max Tennyson (Gwen 10)]]
* [[Argit (Argitrix Dimension)]]
* [[Timothy|Tim 10]]
{{-}}
a99ad17648f0d5fe9ca2ec99065ecad132b10ca9
1924
1923
2022-04-24T04:53:16Z
Jaswacker
30585766
/* Full List of Ben Tennysons */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
[[File:attwn.png|thumb|right|The gang's all here!]]
{{quote|text = Alien or not, I'm still the hero.|origin = [[Ben Tennyson (Omniverse Video Game)|Ben]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''[[Ben Tennyson (Prime)/Toys|Toys]] • [[Ben Tennyson (Prime)/Merchandise|Merchandise]]''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''[[Ben Tennyson (Reboot)/Toys|Toys]] • [[Ben Tennyson (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:RB10k.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|"Bad Ben"]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|"Benzarro"]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|"Mad Ben"]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|"Nega Ben"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* [[Ben Tennyson (Prime)]]
* [[Ben Tennyson (Reboot)]]
* [[Ben 10,000 (Original Series)]]
* [[Ultimate Ben]] transformation
* [[Ben 10,000 (Ultimate Alien)]]
* [[Eon (Ultimate Alien)]]
* [[Eon (Omniverse)]]
* [[Ben 10,000 (Omniverse)]]
* [[Ben 10,000 (Reboot)]]
* [[Ben Tennyson (Evil Dimension)]]
* [[Ben Tennyson (Race Against Time)]]
* [[Ben Tennyson (Alien Swarm)]]
* [[Ben Tennyson (Dimension 23)]]
* [[Ben Tennyson (No-Watch Dimension)]]
* [[Ben Tennyson (Bad Dimension)]]
* [[Ben Tennyson (Negaverse)]]
* [[Ben Tennyson (Madworld)]]
* [[Ben Tennyson (Zombiverse)]]
* [[Ben Tennyson (Original Series Dimension)]]
* [[Ben Tennyson (Ultimate Alien Dimension)]]
* [[Ben Tennyson (Alien Force Dimension)]]
* [[Ben Tennyson (Omniverse Dimension)]]
* [[Ben Tennyson (Dimension 12041.5)]] Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction''
* [[Ben Tennyson (Maximillian's Dimension)]] Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction''
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters#Evil Ben's Victims|Evil Ben's Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run based on Omniverse, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Ben 10 Franklin]]'', see [[Benjamin Franklin#Ben 10 Franklin|Benjamin Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Cowboys and Alien Force]]'', see [[Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
* [[Ben Tennyson (Hyperscan)]] game
* [[Ben Tennyson (Alien Force Video Game)]] game
* [[Ben Tennyson (Omniverse Video Game)]] game
* [[Ben Tennyson (Reboot Video Game)]] game
* [[Ben Tennyson (Power Trip)]] game
* [[Ben Tennyson (Galactic Racing)]] game
* [[Ben Tennyson (Classics)]] comics
* [[Ben Tennyson (Perfect Square)]] comics
* [[Ben Tennyson (Leapfrog)]] comics and kids learning games
* [[Ben Tennyson (Del Rey)]] manga
* [[Ben Tennyson (BOOM! Studios)]] comics
* [[Ben Tennyson (Bandai Comics)]] comics
* [[Ben Tennyson (Alien Race)]] game
* [[Ben Tennyson (Wrath of Psychobos)]] game
* [[Ben Tennyson (JoongAng MB Jr)]] korean comics (science hero and exploring hero)
* [[Ben Tennyson (Fuel Run)]] game
* [[Ben Tennyson (V-Tech)]] mobigo kids learning game called "Ben 10: Ultimate Alien: Mind Mine"
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* [[Omnitrix (Disambiguation)]]
* [[Omnitrix Wielders]]
* [[Albedo]]
* [[Kenny Tennyson (Disambiguation)]]
* [[Kevin Levin (Reboot)]]
* [[Gwen 10 (Disambiguation)]]
* [[Max Tennyson (Gwen 10)]]
* [[Argit (Argitrix Dimension)]]
* [[Timothy|Tim 10]]
{{-}}
b6873a83374de1f6b8edc03739b04499ac5e8661
1925
1924
2022-04-24T04:58:21Z
Jaswacker
30585766
/* Full List of Ben Tennysons */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
[[File:attwn.png|thumb|right|The gang's all here!]]
{{quote|text = Alien or not, I'm still the hero.|origin = [[Ben Tennyson (Omniverse Video Game)|Ben]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''[[Ben Tennyson (Prime)/Toys|Toys]] • [[Ben Tennyson (Prime)/Merchandise|Merchandise]]''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''[[Ben Tennyson (Reboot)/Toys|Toys]] • [[Ben Tennyson (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:RB10k.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|"Bad Ben"]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|"Benzarro"]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|"Mad Ben"]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|"Nega Ben"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* [[Ben Tennyson (Prime)]]
* [[Ben Tennyson (Reboot)]]
* [[Ben 10,000 (Original Series)]]
* [[Ultimate Ben]] transformation
* [[Ben 10,000 (Ultimate Alien)]]
* [[Eon (Ultimate Alien)]]
* [[Eon (Omniverse)]]
* [[Ben 10,000 (Omniverse)]]
* [[Ben 10,000 (Reboot)]]
* [[Ben Tennyson (Evil Dimension)]]
* [[Ben Tennyson (Race Against Time)]]
* [[Ben Tennyson (Alien Swarm)]]
* [[Ben Tennyson (Dimension 23)]]
* [[Ben Tennyson (No-Watch Dimension)]]
* [[Ben Tennyson (Bad Dimension)]]
* [[Ben Tennyson (Negaverse)]]
* [[Ben Tennyson (Madworld)]]
* [[Ben Tennyson (Zombiverse)]]
* [[Ben Tennyson (Original Series Dimension)]]
* [[Ben Tennyson (Ultimate Alien Dimension)]]
* [[Ben Tennyson (Alien Force Dimension)]]
* [[Ben Tennyson (Omniverse Dimension)]]
* [[Ben Tennyson (Dimension 12041.5)]] Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction''
* [[Ben Tennyson (Maximillian's Dimension)]] Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction''
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters#Evil Ben's Victims|Evil Ben's Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run based on Omniverse, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Ben 10 Franklin]]'', see [[Benjamin Franklin#Ben 10 Franklin|Benjamin Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Cowboys and Alien Force]]'', see [[Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
* [[Ben Tennyson (Hyperscan)]] game
* [[Ben Tennyson (Prime)|Ben Tennyson (Alien Force Video Game)]] canon to Prime, placed in this list temporarily so we don't forget about it
* [[Ben Tennyson (Omniverse Video Game)]] game
* [[Ben Tennyson (Reboot Video Game)]] game
* [[Ben Tennyson (Power Trip)]] game
* [[Ben Tennyson (Galactic Racing)]] game
* [[Ben Tennyson (Classics)]] comics
* [[Ben Tennyson (Perfect Square)]] comics
* [[Ben Tennyson (Leapfrog)]] AF storybook, two UA learning games
* [[Ben Tennyson (Del Rey)]] manga
* [[Ben Tennyson (BOOM! Studios)]] comics
* [[Ben Tennyson (Bandai Comics)]] comics
* [[Ben Tennyson (Alien Race)]] game
* [[Ben Tennyson (Wrath of Psychobos)]] game
* [[Ben Tennyson (JoongAng MB Jr)]] korean comics (science hero and exploring hero)
* [[Ben Tennyson (Fuel Run)]] game
* [[Ben Tennyson (V-Tech)]] mobigo kids learning game called "Ben 10: Ultimate Alien: Mind Mine"
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* [[Omnitrix (Disambiguation)]]
* [[Omnitrix Wielders]]
* [[Albedo]]
* [[Kenny Tennyson (Disambiguation)]]
* [[Kevin Levin (Reboot)]]
* [[Gwen 10 (Disambiguation)]]
* [[Max Tennyson (Gwen 10)]]
* [[Argit (Argitrix Dimension)]]
* [[Timothy|Tim 10]]
{{-}}
c1cc6228f85b1cc328c14c11aa299918477d23e8
1926
1925
2022-04-24T05:04:46Z
Jaswacker
30585766
/* Full List of Ben Tennysons */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
[[File:attwn.png|thumb|right|The gang's all here!]]
{{quote|text = Alien or not, I'm still the hero.|origin = [[Ben Tennyson (Omniverse Video Game)|Ben]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''[[Ben Tennyson (Prime)/Toys|Toys]] • [[Ben Tennyson (Prime)/Merchandise|Merchandise]]''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''[[Ben Tennyson (Reboot)/Toys|Toys]] • [[Ben Tennyson (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:RB10k.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|"Bad Ben"]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|"Benzarro"]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|"Mad Ben"]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|"Nega Ben"]]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* [[Ben Tennyson (Prime)]]
* [[Ben Tennyson (Reboot)]]
* [[Ben 10,000 (Original Series)]]
* [[Ultimate Ben]] transformation
* [[Ben 10,000 (Ultimate Alien)]]
* [[Eon (Ultimate Alien)]]
* [[Eon (Omniverse)]]
* [[Ben 10,000 (Omniverse)]]
* [[Ben 10,000 (Reboot)]]
* [[Ben Tennyson (Evil Dimension)]]
* [[Ben Tennyson (Race Against Time)]]
* [[Ben Tennyson (Alien Swarm)]]
* [[Ben Tennyson (Dimension 23)]]
* [[Ben Tennyson (No-Watch Dimension)]]
* [[Ben Tennyson (Bad Dimension)]]
* [[Ben Tennyson (Negaverse)]]
* [[Ben Tennyson (Madworld)]]
* [[Ben Tennyson (Zombiverse)]]
* [[Ben Tennyson (Original Series Dimension)]]
* [[Ben Tennyson (Ultimate Alien Dimension)]]
* [[Ben Tennyson (Alien Force Dimension)]]
* [[Ben Tennyson (Omniverse Dimension)]]
* [[Ben Tennyson (Dimension 12041.5)]] Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction''
* [[Ben Tennyson (Maximillian's Dimension)]] Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction''
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters#Evil Ben's Victims|Evil Ben's Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run based on Omniverse, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Ben 10 Franklin]]'', see [[Benjamin Franklin#Ben 10 Franklin|Benjamin Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Cowboys and Alien Force]]'', see [[Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
* [[Ben Tennyson (Hyperscan)]] game
* [[Ben Tennyson (Prime)|Ben Tennyson (Alien Force Video Game)]] canon to Prime, placed in this list temporarily so we don't forget about it
* [[Ben Tennyson (Omniverse Video Game)]] refers to the alternate timeline made in the game. the events of Omniverse 2 are canon.
* [[Ben Tennyson (Reboot Video Game)]] game, may be canon to the reboot or to the other reboot game(s)
* [[Ben Tennyson (Power Trip)]] game, may be canon to the reboot or to the other reboot game(s)
* [[Ben Tennyson (Galactic Racing)]] game. likely not canon.
* [[Ben Tennyson (Classics)]] comics
* [[Ben Tennyson (Perfect Square)]] comics
* [[Ben Tennyson (Leapfrog)]] AF storybook, two UA learning games
* [[Ben Tennyson (Del Rey)]] manga
* [[Ben Tennyson (BOOM! Studios)]] comics
* [[Ben Tennyson (Bandai Comics)]] comics
* [[Ben Tennyson (Alien Race)]] game. Might be canon. Might not have any story implications at all (in that case, this article is not needed)
* [[Ben Tennyson (Wrath of Psychobos)]] game. Might be canon to prime, might not.
* [[Ben Tennyson (JoongAng MB Jr)]] korean comics (science hero and exploring hero)
* [[Ben Tennyson (Fuel Run)]] game
* [[Ben Tennyson (V-Tech)]] mobigo kids learning game called "Ben 10: Ultimate Alien: Mind Mine"
* [[Ben Tennyson (Storybooks)]] picture books made that adapted episodes of UAF
* [[Ben Tennyson (Scholastic)]] chapter books published by scholastic of original stories set during UAF
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* [[Omnitrix (Disambiguation)]]
* [[Omnitrix Wielders]]
* [[Albedo]]
* [[Kenny Tennyson (Disambiguation)]]
* [[Kevin Levin (Reboot)]]
* [[Gwen 10 (Disambiguation)]]
* [[Max Tennyson (Gwen 10)]]
* [[Argit (Argitrix Dimension)]]
* [[Timothy|Tim 10]]
{{-}}
0989e75a950dc6ff55114e2b77f8f5e779404b0b
Benzarro
0
525
1927
2022-04-24T05:12:55Z
Jaswacker
30585766
Created blank page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Template:Charbox
10
123
1928
1058
2022-04-24T06:48:27Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=280px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{alias|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Aliases'''
{{!}} {{{alias}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Details'''
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Home World'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{residence|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Residence'''
{{!}} {{{residence}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliations|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliations'''
{{!}} {{{affiliations}}}
|}}
|- style="vertical-align: top"
{{#if:{{{relationships|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Relationships'''
{{!}} {{{relationships}}}
|}}
|- style="vertical-align: top"
{{#if:{{{equipment|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Equipment'''
{{!}} {{{equipment}}}
|}}
|- style="vertical-align: top"
{{#if:{{{status|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Status'''
{{!}} {{{status}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Production Information'''
|- style="vertical-align: top"
{{#if:{{{first|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''First Appearance'''
{{!}} style="width:17em" {{!}} {{{first|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{last|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Last Appearance'''
{{!}} {{{last}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|fullname=
|nickname=
|alias=
|species=
|homeworld=
|residence=
|affiliations=
|relationships=
|equipment=
|status=
|first=
|last=
}}
</pre>
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Name'''
|- style="vertical-align: top"
[[Category:Templates]]</noinclude>
6804b8632a4a95de576ca9aa86b340fabde05d00
1929
1928
2022-04-24T06:51:19Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=360px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{alias|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Aliases'''
{{!}} {{{alias}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Details'''
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Home World'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{residence|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Residence'''
{{!}} {{{residence}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliations|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliations'''
{{!}} {{{affiliations}}}
|}}
|- style="vertical-align: top"
{{#if:{{{relationships|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Relationships'''
{{!}} {{{relationships}}}
|}}
|- style="vertical-align: top"
{{#if:{{{equipment|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Equipment'''
{{!}} {{{equipment}}}
|}}
|- style="vertical-align: top"
{{#if:{{{status|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Status'''
{{!}} {{{status}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Production Information'''
|- style="vertical-align: top"
{{#if:{{{first|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''First Appearance'''
{{!}} style="width:17em" {{!}} {{{first|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{last|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Last Appearance'''
{{!}} {{{last}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|fullname=
|nickname=
|alias=
|species=
|homeworld=
|residence=
|affiliations=
|relationships=
|equipment=
|status=
|first=
|last=
}}
</pre>
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Name'''
|- style="vertical-align: top"
[[Category:Templates]]</noinclude>
0fab956851d50a4baa33d96459cd01d6db8d96aa
1931
1929
2022-04-24T06:52:48Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=310px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:20px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{alias|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Aliases'''
{{!}} {{{alias}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Details'''
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Home World'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{residence|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Residence'''
{{!}} {{{residence}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliations|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliations'''
{{!}} {{{affiliations}}}
|}}
|- style="vertical-align: top"
{{#if:{{{relationships|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Relationships'''
{{!}} {{{relationships}}}
|}}
|- style="vertical-align: top"
{{#if:{{{equipment|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Equipment'''
{{!}} {{{equipment}}}
|}}
|- style="vertical-align: top"
{{#if:{{{status|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Status'''
{{!}} {{{status}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Production Information'''
|- style="vertical-align: top"
{{#if:{{{first|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''First Appearance'''
{{!}} style="width:17em" {{!}} {{{first|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{last|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Last Appearance'''
{{!}} {{{last}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|fullname=
|nickname=
|alias=
|species=
|homeworld=
|residence=
|affiliations=
|relationships=
|equipment=
|status=
|first=
|last=
}}
</pre>
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Name'''
|- style="vertical-align: top"
[[Category:Templates]]</noinclude>
a1a15c94311bfb625267400d358d1e5720a646d5
1935
1931
2022-04-24T07:00:11Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=0 cellspacing=2 align={{{align|right}}} width=310px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 8px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:5px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{alias|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Aliases'''
{{!}} {{{alias}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:3px" | '''Details'''
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Birthplace'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{residence|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Residence'''
{{!}} {{{residence}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliations|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliations'''
{{!}} {{{affiliations}}}
|}}
|- style="vertical-align: top"
{{#if:{{{relationships|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Relationships'''
{{!}} {{{relationships}}}
|}}
|- style="vertical-align: top"
{{#if:{{{equipment|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Equipment'''
{{!}} {{{equipment}}}
|}}
|- style="vertical-align: top"
{{#if:{{{status|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Status'''
{{!}} {{{status}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:3px" | '''Production Information'''
|- style="vertical-align: top"
{{#if:{{{first|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''First Appearance'''
{{!}} style="width:17em" {{!}} {{{first|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{last|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Last Appearance'''
{{!}} {{{last}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|fullname=
|nickname=
|alias=
|species=
|homeworld=
|residence=
|affiliations=
|relationships=
|equipment=
|status=
|first=
|last=
}}
</pre>
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Name'''
|- style="vertical-align: top"
[[Category:Templates]]</noinclude>
01c5903d847a325c8c61e7add8ec219a2f4ba60b
1936
1935
2022-04-24T07:01:42Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=0 cellspacing=2 align={{{align|right}}} width=307px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:5px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{alias|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Aliases'''
{{!}} {{{alias}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:3px" | '''Details'''
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Birthplace'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{residence|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Residence'''
{{!}} {{{residence}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliations|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliations'''
{{!}} {{{affiliations}}}
|}}
|- style="vertical-align: top"
{{#if:{{{relationships|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Relationships'''
{{!}} {{{relationships}}}
|}}
|- style="vertical-align: top"
{{#if:{{{equipment|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Equipment'''
{{!}} {{{equipment}}}
|}}
|- style="vertical-align: top"
{{#if:{{{status|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Status'''
{{!}} {{{status}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:3px" | '''Production Information'''
|- style="vertical-align: top"
{{#if:{{{first|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''First Appearance'''
{{!}} style="width:17em" {{!}} {{{first|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{last|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Last Appearance'''
{{!}} {{{last}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|fullname=
|nickname=
|alias=
|species=
|homeworld=
|residence=
|affiliations=
|relationships=
|equipment=
|status=
|first=
|last=
}}
</pre>
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Name'''
|- style="vertical-align: top"
[[Category:Templates]]</noinclude>
1f328c5bc5ecc936a038e3a2c97c3d26bfeb5d55
1939
1936
2022-04-24T07:03:59Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=0 cellspacing=2 align={{{align|right}}} width=308px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 9px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:5px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{alias|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Aliases'''
{{!}} {{{alias}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:3px; font-size: 10px;" | '''Details'''
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Birthplace'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{residence|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Residence'''
{{!}} {{{residence}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliations|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliations'''
{{!}} {{{affiliations}}}
|}}
|- style="vertical-align: top"
{{#if:{{{relationships|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Relationships'''
{{!}} {{{relationships}}}
|}}
|- style="vertical-align: top"
{{#if:{{{equipment|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Equipment'''
{{!}} {{{equipment}}}
|}}
|- style="vertical-align: top"
{{#if:{{{status|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Status'''
{{!}} {{{status}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:3px; font-size: 10px;" | '''Production'''
|- style="vertical-align: top"
{{#if:{{{first|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''First Appearance'''
{{!}} style="width:17em" {{!}} {{{first|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{last|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Last Appearance'''
{{!}} {{{last}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|fullname=
|nickname=
|alias=
|species=
|homeworld=
|residence=
|affiliations=
|relationships=
|equipment=
|status=
|first=
|last=
}}
</pre>
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Name'''
|- style="vertical-align: top"
[[Category:Templates]]</noinclude>
48abbfc376cf848a87a7b1c9e2caaddb429f2c42
1941
1939
2022-04-24T07:05:07Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=0 cellspacing=2 align={{{align|right}}} width=309px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:5px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{alias|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Aliases'''
{{!}} {{{alias}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:3px; font-size: 10px;" | '''Details'''
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Birthplace'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{residence|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Residence'''
{{!}} {{{residence}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliations|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliations'''
{{!}} {{{affiliations}}}
|}}
|- style="vertical-align: top"
{{#if:{{{relationships|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Relationships'''
{{!}} {{{relationships}}}
|}}
|- style="vertical-align: top"
{{#if:{{{equipment|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Equipment'''
{{!}} {{{equipment}}}
|}}
|- style="vertical-align: top"
{{#if:{{{status|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Status'''
{{!}} {{{status}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:3px; font-size: 10px;" | '''Production'''
|- style="vertical-align: top"
{{#if:{{{first|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''First Appearance'''
{{!}} style="width:17em" {{!}} {{{first|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{last|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Last Appearance'''
{{!}} {{{last}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|fullname=
|nickname=
|alias=
|species=
|homeworld=
|residence=
|affiliations=
|relationships=
|equipment=
|status=
|first=
|last=
}}
</pre>
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Name'''
|- style="vertical-align: top"
[[Category:Templates]]</noinclude>
e983cb3f7cc80b5345dbdcb1c78a180647433a52
1942
1941
2022-04-24T07:05:28Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=0 cellspacing=2 align={{{align|right}}} width=309px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1.4em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:5px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{alias|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Aliases'''
{{!}} {{{alias}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:3px; font-size: 10px;" | '''Details'''
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Birthplace'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{residence|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Residence'''
{{!}} {{{residence}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliations|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Affiliations'''
{{!}} {{{affiliations}}}
|}}
|- style="vertical-align: top"
{{#if:{{{relationships|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Relationships'''
{{!}} {{{relationships}}}
|}}
|- style="vertical-align: top"
{{#if:{{{equipment|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Equipment'''
{{!}} {{{equipment}}}
|}}
|- style="vertical-align: top"
{{#if:{{{status|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Status'''
{{!}} {{{status}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:3px; font-size: 10px;" | '''Production'''
|- style="vertical-align: top"
{{#if:{{{first|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''First Appearance'''
{{!}} style="width:17em" {{!}} {{{first|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{last|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Last Appearance'''
{{!}} {{{last}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|fullname=
|nickname=
|alias=
|species=
|homeworld=
|residence=
|affiliations=
|relationships=
|equipment=
|status=
|first=
|last=
}}
</pre>
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Name'''
|- style="vertical-align: top"
[[Category:Templates]]</noinclude>
e301a573b10ff8ac4d2477c4a555f3e0c5f63aad
1943
1942
2022-04-24T07:06:58Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=0 cellspacing=2 align={{{align|right}}} width=309px style="font-family: verdana, sans-serif; padding: 4px 4px 4px 8px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #02b70c; color:#000; border-radius:5px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{alias|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Aliases'''
{{!}} {{{alias}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:3px; font-size: 10px;" | '''Details'''
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Birthplace'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{residence|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Residence'''
{{!}} {{{residence}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliations|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Affiliations'''
{{!}} {{{affiliations}}}
|}}
|- style="vertical-align: top"
{{#if:{{{relationships|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Relationships'''
{{!}} {{{relationships}}}
|}}
|- style="vertical-align: top"
{{#if:{{{equipment|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Equipment'''
{{!}} {{{equipment}}}
|}}
|- style="vertical-align: top"
{{#if:{{{status|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Status'''
{{!}} {{{status}}}
|}}
|-
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:3px; font-size: 10px;" | '''Production'''
|- style="vertical-align: top"
{{#if:{{{first|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}}'''First Appearance'''
{{!}} style="width:17em" {{!}} {{{first|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{last|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Last Appearance'''
{{!}} {{{last}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|fullname=
|nickname=
|alias=
|species=
|homeworld=
|residence=
|affiliations=
|relationships=
|equipment=
|status=
|first=
|last=
}}
</pre>
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Name'''
|- style="vertical-align: top"
[[Category:Templates]]</noinclude>
d4ccb9169e4766f2061cb2c2879fa64bc09767b4
1944
1943
2022-04-24T07:09:06Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=0 cellspacing=2 align={{{align|right}}} width=309px style="font-family: verdana, sans-serif; padding: 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #110f21; color:#000; border-radius:5px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{alias|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Aliases'''
{{!}} {{{alias}}}
|}}
|-
|align="center" colspan="2" style="background:#110f21; color:#fff; border-radius:3px; font-size: 10px;" | '''Details'''
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Birthplace'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{residence|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Residence'''
{{!}} {{{residence}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliations|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Affiliations'''
{{!}} {{{affiliations}}}
|}}
|- style="vertical-align: top"
{{#if:{{{relationships|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Relationships'''
{{!}} {{{relationships}}}
|}}
|- style="vertical-align: top"
{{#if:{{{equipment|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Equipment'''
{{!}} {{{equipment}}}
|}}
|- style="vertical-align: top"
{{#if:{{{status|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Status'''
{{!}} {{{status}}}
|}}
|-
|align="center" colspan="2" style="background:#110f21; color:#fff; border-radius:3px; font-size: 10px;" | '''Production'''
|- style="vertical-align: top"
{{#if:{{{first|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}}'''First Appearance'''
{{!}} style="width:17em" {{!}} {{{first|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{last|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Last Appearance'''
{{!}} {{{last}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|fullname=
|nickname=
|alias=
|species=
|homeworld=
|residence=
|affiliations=
|relationships=
|equipment=
|status=
|first=
|last=
}}
</pre>
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Name'''
|- style="vertical-align: top"
#02b70c
[[Category:Templates]]</noinclude>
df4d871d97c07c38781d5bc7bcb3a0eea03ad742
1946
1944
2022-04-24T07:19:20Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=1 0 0 0 cellspacing=2 align={{{align|right}}} width=309px style="font-family: verdana, sans-serif; padding: 0px 4px 4px 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #c8ccd0; color:#000; border-radius:5px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{alias|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Aliases'''
{{!}} {{{alias}}}
|}}
|-
|align="center" colspan="2" style="background:#110f21; color:#fff; border-radius:3px; font-size: 10px;" | '''Details'''
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Birthplace'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{residence|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Residence'''
{{!}} {{{residence}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliations|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Affiliations'''
{{!}} {{{affiliations}}}
|}}
|- style="vertical-align: top"
{{#if:{{{relationships|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Relationships'''
{{!}} {{{relationships}}}
|}}
|- style="vertical-align: top"
{{#if:{{{equipment|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Equipment'''
{{!}} {{{equipment}}}
|}}
|- style="vertical-align: top"
{{#if:{{{status|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Status'''
{{!}} {{{status}}}
|}}
|-
|align="center" colspan="2" style="background:#110f21; color:#fff; border-radius:3px; font-size: 10px;" | '''Production'''
|- style="vertical-align: top"
{{#if:{{{first|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}}'''First Appearance'''
{{!}} style="width:17em" {{!}} {{{first|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{last|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Last Appearance'''
{{!}} {{{last}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|fullname=
|nickname=
|alias=
|species=
|homeworld=
|residence=
|affiliations=
|relationships=
|equipment=
|status=
|first=
|last=
}}
</pre>
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Name'''
|- style="vertical-align: top"
#02b70c
[[Category:Templates]]</noinclude>
18c1c3b5b7bdb121b3cd9fa2438e22a136fd24e0
1947
1946
2022-04-24T07:21:35Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=1 0 0 0 cellspacing=2 align={{{align|right}}} width=310px style="font-family: verdana, sans-serif; padding: 0px 4px 4px 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #c8ccd0; color:#000; border-radius:5px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{alias|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Aliases'''
{{!}} {{{alias}}}
|}}
|-
|align="center" colspan="2" style="background:#2e2f3c; color:#fff; border-radius:3px; font-size: 10px;" | '''Details'''
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Birthplace'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{residence|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Residence'''
{{!}} {{{residence}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliations|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Affiliations'''
{{!}} {{{affiliations}}}
|}}
|- style="vertical-align: top"
{{#if:{{{relationships|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Relationships'''
{{!}} {{{relationships}}}
|}}
|- style="vertical-align: top"
{{#if:{{{equipment|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Equipment'''
{{!}} {{{equipment}}}
|}}
|- style="vertical-align: top"
{{#if:{{{status|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Status'''
{{!}} {{{status}}}
|}}
|-
|align="center" colspan="2" style="background:#2e2f3c; color:#fff; border-radius:3px; font-size: 10px;" | '''Production'''
|- style="vertical-align: top"
{{#if:{{{first|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}}'''First Appearance'''
{{!}} style="width:17em" {{!}} {{{first|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{last|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Last Appearance'''
{{!}} {{{last}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|fullname=
|nickname=
|alias=
|species=
|homeworld=
|residence=
|affiliations=
|relationships=
|equipment=
|status=
|first=
|last=
}}
</pre>
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Name'''
|- style="vertical-align: top"
#02b70c
[[Category:Templates]]</noinclude>
43a9453fcbe92f28b3dacf8b9bbcb4cedacf2278
1948
1947
2022-04-24T07:22:01Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=1 0 0 0 cellspacing=2 align={{{align|right}}} width=310px style="font-family: verdana, sans-serif; padding: 0px 4px 4px 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #c8ccd0; color:#000; border-radius:5px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{alias|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Aliases'''
{{!}} {{{alias}}}
|}}
|-
|align="center" colspan="2" style="background:#3d3f4c; color:#fff; border-radius:3px; font-size: 10px;" | '''Details'''
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Birthplace'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{residence|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Residence'''
{{!}} {{{residence}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliations|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Affiliations'''
{{!}} {{{affiliations}}}
|}}
|- style="vertical-align: top"
{{#if:{{{relationships|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Relationships'''
{{!}} {{{relationships}}}
|}}
|- style="vertical-align: top"
{{#if:{{{equipment|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Equipment'''
{{!}} {{{equipment}}}
|}}
|- style="vertical-align: top"
{{#if:{{{status|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Status'''
{{!}} {{{status}}}
|}}
|-
|align="center" colspan="2" style="background:#3d3f4c; color:#fff; border-radius:3px; font-size: 10px;" | '''Production'''
|- style="vertical-align: top"
{{#if:{{{first|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}}'''First Appearance'''
{{!}} style="width:17em" {{!}} {{{first|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{last|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Last Appearance'''
{{!}} {{{last}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|fullname=
|nickname=
|alias=
|species=
|homeworld=
|residence=
|affiliations=
|relationships=
|equipment=
|status=
|first=
|last=
}}
</pre>
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Name'''
|- style="vertical-align: top"
#02b70c
[[Category:Templates]]</noinclude>
84c3d07b4a5de0ef80aff192eae670825a29fe62
Ben Tennyson (Prime)
0
93
1930
1824
2022-04-24T06:52:26Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
{{charbox
|fullname=Benjamin Kirby Tennyson
|alias=Ben 10
|species=[[Human]]
|homeworld=[[Earth]]
|residence=[Bellwood]]
|status=Alive
|first=And Then There Were 10
|last=Placeholder
}}
bio
13628d65192d6629ca970e96012ffc47fcc43ab8
1932
1930
2022-04-24T06:52:52Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
{{charbox
|fullname=Benjamin Kirby Tennyson
|alias=Ben 10
|species=[[Human]]
|homeworld=[[Earth]]
|residence=[[Bellwood]]
|status=Alive
|first=And Then There Were 10
|last=Placeholder
}}
bio
54635c9e283005416277b2ae2660db5fbd760fb9
1933
1932
2022-04-24T06:53:41Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
[[File:Omniverserender1.png|thumb|right|''It started when an alien device did what it did...'']]
{{charbox
|fullname=Benjamin Kirby Tennyson
|alias=Ben 10
|species=[[Human]]
|homeworld=[[Earth]]
|residence=[[Bellwood]]
|status=Alive
|first=And Then There Were 10
|last=Placeholder
}}
bio
7bc5c0f338f82d7e2e1f749026ea60009ca8f951
1934
1933
2022-04-24T06:54:12Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
[[File:Omniverserender1.png|thumb|right|]]
{{charbox
|fullname=Benjamin Kirby Tennyson
|alias=Ben 10
|species=[[Human]]
|homeworld=[[Earth]]
|residence=[[Bellwood]]
|status=Alive
|first=And Then There Were 10
|last=Placeholder
}}
bio
60fbc2164a48a00e8179850422ee151df6909440
1937
1934
2022-04-24T07:01:46Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
[[File:Omniverserender1.png|thumb|right|]]
{{charbox
|fullname=Benjamin Kirby Tennyson
|alias=Ben 10<br>The Oncoming Storm
|species=[[Human]]
|homeworld=[[Earth]]
|residence=[[Bellwood]]
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
bio
9f16636ab0b2684c55ae9b0f514dfd64bc2cb72b
1938
1937
2022-04-24T07:02:44Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
[[File:Omniverserender1.png|thumb|right|]]
{{charbox
|fullname=Benjamin Kirby Tennyson
|alias=Ben 10<br>The Oncoming Storm
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
bio
e3efd102e60cb53302b29db6868d80e6fc731491
1940
1938
2022-04-24T07:04:42Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
[[File:Omniverserender1.png|thumb|right|]]
{{charbox
|fullname=Benjamin Kirby Tennyson
|alias=Ben 10<br>The Oncoming Storm
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships=[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small>
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
bio
bb84c3f2d21ec96934215aa0e65080eb807664a0
1945
1940
2022-04-24T07:14:06Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
{{subsuite|content=[[Ben Tennyson (Prime)/Toys|Toys]]
[[Ben Tennyson (Prime)/Merchandise|Merchandise]]
}}
[[File:Omniverserender1.png|thumb|right|]]
{{charbox
|fullname=Benjamin Kirby Tennyson
|alias=Ben 10<br>The Oncoming Storm
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships=[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small>
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
bio
6b9e878ee7efc7191d4f1fbefd472a8718da7c54
1949
1945
2022-04-24T07:24:06Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
{{subsuite|content=[[Ben Tennyson (Prime)/Toys|Toys]]
[[Ben Tennyson (Prime)/Merchandise|Merchandise]]
}}
[[File:Omniverserender1.png|thumb|right|]]
{{charbox
|fullname=Benjamin Kirby Tennyson
|alias={{scroll|Ben 10<br>The Oncoming Storm}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small>}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
bio
dd247f972fa4d539ff808e836a95820fa3ba6baa
1950
1949
2022-04-24T07:24:41Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
[[File:Omniverserender1.png|thumb|right|]]
{{charbox
|fullname=Benjamin Kirby Tennyson
|alias={{scroll|Ben 10<br>The Oncoming Storm}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small>}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
bio
336ef48785cf0bd581696e25e5b916609c3d170a
1951
1950
2022-04-24T07:25:24Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
[[File:Omniverserender1.png|thumb|right|]]
{{charbox
|fullname=Benjamin Kirby Tennyson
|alias={{scroll|Ben 10<br>The Oncoming Storm}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test<br>test<br>test<br>test<br>test<br>test<br>test|h=20}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
bio
935de6658c15656677df292ba65558b72587136a
1952
1951
2022-04-24T07:27:04Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
[[File:Omniverserender1.png|thumb|right|]]
{{charbox
|image=Omniverserender1.png
|fullname=Benjamin Kirby Tennyson
|alias={{scroll|Ben 10<br>The Oncoming Storm}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test<br>test<br>test<br>test<br>test<br>test<br>test|h=20|w=20}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
bio
bb381cea0e5e087f9c09ccf778138dcffdf873bb
1953
1952
2022-04-24T07:27:19Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
{{charbox
|image=File:Omniverserender1.png
|fullname=Benjamin Kirby Tennyson
|alias={{scroll|Ben 10<br>The Oncoming Storm}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test<br>test<br>test<br>test<br>test<br>test<br>test|h=20|w=20}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
bio
e94c35bd0e70a8efb0a0c96e9539a3b70b508265
1954
1953
2022-04-24T07:31:16Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
{{charbox
|image=file:Omniverserender1.png
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Oncoming Storm|h=60px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test<br>test<br>test<br>test<br>test<br>test<br>test|h=60px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
bio
fa97b50106775a3cc7d2a664361c7309b2a6c851
1957
1954
2022-04-24T07:35:34Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
{{charbox
|image={{tabs|{{tab2|OV (Perk)|PLACEHOLDER2.png}}{{tab2|OV (Murk)|PLACEHOLDER2.png}}{{tab2|AF|PLACEHOLDER2.png}}{{tab2|OS|PLACEHOLDER2.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Oncoming Storm|h=60px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test<br>test<br>test<br>test<br>test<br>test<br>test|h=60px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
bio
b0c9c1154d9b0ef8ad89f0856a41a379ce40b755
1960
1957
2022-04-24T07:38:56Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
{{charbox
|image={{tabs|{{tab2|OV|Omniverserender1.png}}{{tab2|UAF|PLACEHOLDER2.png}}{{tab2|OS|PLACEHOLDER2.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Oncoming Storm|h=60px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test<br>test<br>test<br>test<br>test<br>test<br>test|h=60px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
bio
94e25a2ed7bc1dee0b062b74add681c156f965bf
1961
1960
2022-04-24T07:40:48Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
{{charbox
|image={{tabs|{{tab2|OV|Omniverserender1.png}}{{tab2|UAF|modelben.png}}{{tab2|OS|osben.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Oncoming Storm|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test<br>test<br>test<br>test<br>test<br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
bio
a5060751025f1da1f36159ca8975279561b5496d
Template:Tabs
10
234
1955
891
2022-04-24T07:33:02Z
Jaswacker
30585766
wikitext
text/x-wiki
<div class="tabcontainer" style="align:right; background: #fff; border:1px solid #3d3f4c; color:#000; border-radius:3px">
{{{1}}}
</div>
1c9ca760387740091722fc2d51cf1ac3d916c296
Template:Tab2
10
236
1956
894
2022-04-24T07:35:31Z
Jaswacker
30585766
wikitext
text/x-wiki
<div class="tabbox" style="margin:auto; align:right; background: #fff; border:1px solid #c8ccd0; color:#000; border-radius:5px">
<div class="tab">{{{1}}}</div>
{{#if: {{{2|}}}|[[Image:{{{2}}}|borderless|250px]]}}
</div>
913f8099628758e8a09fb68b4ea6f8b0d1760e73
1958
1956
2022-04-24T07:36:32Z
Jaswacker
30585766
wikitext
text/x-wiki
<div class="tabbox" style="margin:auto; align:right; background: #fff; border:1px solid #fff; color:#000; border-radius:5px">
<div class="tab" style="margin:auto; align:center; background: #fff; border:1px solid #c8ccd0; color:#000; border-radius:5px">>{{{1}}}</div>
{{#if: {{{2|}}}|[[Image:{{{2}}}|borderless|250px]]}}
</div>
e470dbed05ed4ac418a2ca23f7940b167b4ff45b
1959
1958
2022-04-24T07:37:57Z
Jaswacker
30585766
wikitext
text/x-wiki
<div class="tabbox" style="margin:auto; align:right; background: #fff; border:1px solid #fff; color:#000; border-radius:5px">
<div class="tab" style="margin:auto; align:right; background: #fff; border:1px solid #c8ccd0; color:#000; border-radius:5px">{{{1}}}</div>
{{#if: {{{2|}}}|[[Image:{{{2}}}|borderless|250px]]}}
</div>
645a579b0a8886dd538857a4f88a0b77358750d4
1962
1959
2022-04-24T07:45:16Z
Jaswacker
30585766
wikitext
text/x-wiki
<div class="tabbox" style="margin:auto; align:right; background: #fff; border:1px solid #fff; color:#000; border-radius:5px">
<div class="tab" style="margin:auto; align:right; background: #fff; border:1px solid #c8ccd0; color:#000; border-radius:5px">{{{1}}}</div>
{{#if: {{{2|}}}|[[Image:{{{2}}}|borderless|height:350px]]}}
</div>
e269cb709765a8b3c55becac81ef7d9554e12b99
1963
1962
2022-04-24T07:46:33Z
Jaswacker
30585766
wikitext
text/x-wiki
<div class="tabbox" style="margin:auto; align:right; background: #fff; border:1px solid #fff; color:#000; border-radius:5px">
<div class="tab" style="margin:auto; align:right; background: #fff; border:1px solid #c8ccd0; color:#000; border-radius:5px">{{{1}}}</div>
{{#if: {{{2|}}}|[[Image:{{{2}}}|borderless|x350px]]}}
</div>
2390eebf43d0726bfb250f1f1355887203faa30c
1964
1963
2022-04-24T07:47:02Z
Jaswacker
30585766
wikitext
text/x-wiki
<div class="tabbox" style="margin:auto; align:right; background: #fff; border:1px solid #fff; color:#000; border-radius:5px">
<div class="tab" style="margin:auto; align:right; background: #fff; border:1px solid #c8ccd0; color:#000; border-radius:5px">{{{1}}}</div>
{{#if: {{{2|}}}|[[Image:{{{2}}}|borderless|x400px]]}}
</div>
1ace5e81e37b601ca1449c97ba76540c8ab26487
Template:Tab2
10
236
1965
1964
2022-04-24T07:47:38Z
Jaswacker
30585766
wikitext
text/x-wiki
<div class="tabbox" style="margin:auto; align:right; background: #fff; border:1px solid #fff; color:#000; border-radius:5px">
<div class="tab" style="margin:auto; align:right; background: #fff; border:1px solid #c8ccd0; color:#000; border-radius:5px">{{{1}}}</div>
{{#if: {{{2|}}}|[[Image:{{{2}}}|borderless|x300px]]}}
</div>
b7accc2ded42ecdc2f9f9555f088fc8134f6aac2
1966
1965
2022-04-24T07:48:07Z
Jaswacker
30585766
wikitext
text/x-wiki
<div class="tabbox" style="margin:auto; align:right; background: #fff; border:1px solid #fff; color:#000; border-radius:5px">
<div class="tab" style="margin:auto; align:right; background: #fff; border:1px solid #c8ccd0; color:#000; border-radius:5px">{{{1}}}</div>
{{#if: {{{2|}}}|[[Image:{{{2}}}|borderless|x350px]]}}
</div>
2390eebf43d0726bfb250f1f1355887203faa30c
1967
1966
2022-04-24T07:49:48Z
Jaswacker
30585766
wikitext
text/x-wiki
<div class="tabbox" style="align:left; background: #fff; border:1px solid #fff; color:#000; border-radius:5px">
<div class="tab" style="align:left; background: #fff; border:1px solid #c8ccd0; color:#000; border-radius:5px">{{{1}}}</div>
{{#if: {{{2|}}}|[[Image:{{{2}}}|borderless|x350px]]}}
</div>
2a5e87037315e510691c4d4c4e3626331b6f6311
1971
1967
2022-04-24T07:54:48Z
Jaswacker
30585766
wikitext
text/x-wiki
<div class="tabbox" style="text-align:left; background: #fff; border:1px solid #fff; color:#000; border-radius:5px">
<div class="tab" style="text-align:left; background: #fff; border:1px solid #c8ccd0; color:#000; border-radius:5px">{{{1}}}</div>
{{#if: {{{2|}}}|[[Image:{{{2}}}|borderless|x350px]]}}
</div>
3e88939798a743338fb8bf0df884a98a65c22781
1973
1971
2022-04-24T07:56:23Z
Jaswacker
30585766
wikitext
text/x-wiki
<div class="tabbox" style="text-align:center; background: #fff; border:1px solid #fff; color:#000; border-radius:5px">
<div class="tab" style="text-align:center; background: #fff; border:1px solid #c8ccd0; color:#000; border-radius:5px">{{{1}}}</div>
{{#if: {{{2|}}}|[[Image:{{{2}}}|borderless|x350px]]}}
</div>
b6a465e074250686a38390a4918adc7c9aed9d6a
1976
1973
2022-04-24T07:59:45Z
Jaswacker
30585766
wikitext
text/x-wiki
<div class="tabbox" style="text-align:center; background: #fff; border:1px solid #fff; color:#000; border-radius:5px">
<div class="tab" style="text-align:center; float: none; display: inline-block; background: #fff; border:1px solid #c8ccd0; color:#000; border-radius:5px">{{{1}}}</div>
{{#if: {{{2|}}}|[[Image:{{{2}}}|borderless|x350px]]}}
</div>
2f090e1450a39c376301b2810fe0ab2fcfd5bb62
1977
1976
2022-04-24T08:02:43Z
Jaswacker
30585766
wikitext
text/x-wiki
<div class="tabbox" style="text-align: center; float: none; display: inline-block; background: #fff; border:1px solid #fff; color:#000; border-radius:5px">
<div class="tab" style="text-align: center; background: #fff; border:1px solid #c8ccd0; color:#000; border-radius:5px">{{{1}}}</div>
{{#if: {{{2|}}}|[[Image:{{{2}}}|borderless|x350px]]}}
</div>
c6a8e20fc5f7af4d02760435c12a0231b005d7ac
Template:Tabs
10
234
1968
1955
2022-04-24T07:50:21Z
Jaswacker
30585766
wikitext
text/x-wiki
<div class="tabcontainer" style="text-align: center; background: #fff; border:1px solid #3d3f4c; color:#000; border-radius:3px">
{{{1}}}
</div>
b285924ea569f0c53bf7400e60e7d50ec0ef39cd
1970
1968
2022-04-24T07:54:32Z
Jaswacker
30585766
wikitext
text/x-wiki
<div style="text-align:center">
<div class="tabcontainer" style="text-align: left; background: #fff; border:1px solid #3d3f4c; color:#000; border-radius:3px">
</div>
{{{1}}}
</div>
076023b369b99f657a370107ce56902e9bcb4dc0
1972
1970
2022-04-24T07:55:37Z
Jaswacker
30585766
wikitext
text/x-wiki
<div class="tabcontainer" style="text-align: center; background: #fff; border:1px solid #3d3f4c; color:#000; border-radius:3px">
{{{1}}}
</div>
b285924ea569f0c53bf7400e60e7d50ec0ef39cd
1974
1972
2022-04-24T07:57:39Z
Jaswacker
30585766
wikitext
text/x-wiki
<div class="tabcontainer" style="text-align: center; float: none; display: inline-block; background: #fff; border:1px solid #3d3f4c; color:#000; border-radius:3px">
{{{1}}}
</div>
0d3915853b8df61fca84578dee87f8d25c2a117b
1975
1974
2022-04-24T07:59:22Z
Jaswacker
30585766
wikitext
text/x-wiki
<div class="tabcontainer" style="text-align: center; background: #fff; border:1px solid #3d3f4c; color:#000; border-radius:3px">
{{{1}}}
</div>
b285924ea569f0c53bf7400e60e7d50ec0ef39cd
MediaWiki:Common.css
8
3
1969
1502
2022-04-24T07:52:15Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: left;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
text-align: center;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.3em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:4px;
padding-top:3px;
border-radius:1.5em;
-moz-border-radius:1.5em;
-webkit-border-radius:1.5m;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:125%;
font-weight:1000;
margin:10px;
padding:1.5em;
text-align:center;
border-radius:1em;
-moz-border-radius:1em;
-webkit-border-radius:1em;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
/* test remove thing */
#p-ShoutWiki_messages-label {
display: none !important;
}
#p-ShoutWiki_messages.portlet.generated-sidebar {
display: none !important;
}
b40627ea37c5558d4a7070e1b3e3b932efb8fccb
1978
1969
2022-04-24T08:09:09Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
float: none;
display: contents;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: none;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
display: inline-block;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
text-align: center;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.3em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:4px;
padding-top:3px;
border-radius:1.5em;
-moz-border-radius:1.5em;
-webkit-border-radius:1.5m;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:125%;
font-weight:1000;
margin:10px;
padding:1.5em;
text-align:center;
border-radius:1em;
-moz-border-radius:1em;
-webkit-border-radius:1em;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
/* test remove thing */
#p-ShoutWiki_messages-label {
display: none !important;
}
#p-ShoutWiki_messages.portlet.generated-sidebar {
display: none !important;
}
7d872742846d3736a9341d2af1e837a17be5581b
Template:Charbox
10
123
1979
1948
2022-04-24T08:10:47Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=1 0 0 0 cellspacing=2 align={{{align|right}}} width=310px style="font-family: verdana, sans-serif; padding: 0px 4px 4px 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #c8ccd0; color:#000; border-radius:5px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top; horizontal-align:right;"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top; horizontal-align:right;"
{{#if:{{{alias|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Aliases'''
{{!}} {{{alias}}}
|}}
|-
|align="center" colspan="2" style="background:#3d3f4c; color:#fff; border-radius:3px; font-size: 10px;" | '''Details'''
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Birthplace'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{residence|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Residence'''
{{!}} {{{residence}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliations|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Affiliations'''
{{!}} {{{affiliations}}}
|}}
|- style="vertical-align: top"
{{#if:{{{relationships|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Relationships'''
{{!}} {{{relationships}}}
|}}
|- style="vertical-align: top"
{{#if:{{{equipment|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Equipment'''
{{!}} {{{equipment}}}
|}}
|- style="vertical-align: top"
{{#if:{{{status|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Status'''
{{!}} {{{status}}}
|}}
|-
|align="center" colspan="2" style="background:#3d3f4c; color:#fff; border-radius:3px; font-size: 10px;" | '''Production'''
|- style="vertical-align: top"
{{#if:{{{first|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}}'''First Appearance'''
{{!}} style="width:17em" {{!}} {{{first|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{last|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Last Appearance'''
{{!}} {{{last}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|fullname=
|nickname=
|alias=
|species=
|homeworld=
|residence=
|affiliations=
|relationships=
|equipment=
|status=
|first=
|last=
}}
</pre>
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Name'''
|- style="vertical-align: top"
#02b70c
[[Category:Templates]]</noinclude>
c3e9e625813492b220a8aa177e6ec43599fb21ad
1980
1979
2022-04-24T08:11:58Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=310px style="font-family: verdana, sans-serif; padding: 0px 4px 4px 4px; margin: 0 0 1em 1em; font-size: 10px; background: #fff; border:1px solid #c8ccd0; color:#000; border-radius:5px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{alias|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Aliases'''
{{!}} {{{alias}}}
|}}
|-
|align="center" colspan="2" style="background:#3d3f4c; color:#fff; border-radius:3px; font-size: 10px;" | '''Details'''
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Birthplace'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{residence|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Residence'''
{{!}} {{{residence}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliations|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Affiliations'''
{{!}} {{{affiliations}}}
|}}
|- style="vertical-align: top"
{{#if:{{{relationships|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Relationships'''
{{!}} {{{relationships}}}
|}}
|- style="vertical-align: top"
{{#if:{{{equipment|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Equipment'''
{{!}} {{{equipment}}}
|}}
|- style="vertical-align: top"
{{#if:{{{status|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Status'''
{{!}} {{{status}}}
|}}
|-
|align="center" colspan="2" style="background:#3d3f4c; color:#fff; border-radius:3px; font-size: 10px;" | '''Production'''
|- style="vertical-align: top"
{{#if:{{{first|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}}'''First Appearance'''
{{!}} style="width:17em" {{!}} {{{first|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{last|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Last Appearance'''
{{!}} {{{last}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|fullname=
|nickname=
|alias=
|species=
|homeworld=
|residence=
|affiliations=
|relationships=
|equipment=
|status=
|first=
|last=
}}
</pre>
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Name'''
|- style="vertical-align: top"
#02b70c
[[Category:Templates]]</noinclude>
3d813ee590a34500a85e8120e1955d3cbe0d8ea7
1981
1980
2022-04-24T08:12:40Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=310px style="font-family: verdana, sans-serif; padding: 0px 4px 4px 4px; margin: 0 0 1em 2em; font-size: 10px; background: #fff; border:1px solid #c8ccd0; color:#000; border-radius:5px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{alias|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Aliases'''
{{!}} {{{alias}}}
|}}
|-
|align="center" colspan="2" style="background:#3d3f4c; color:#fff; border-radius:3px; font-size: 10px;" | '''Details'''
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Birthplace'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{residence|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Residence'''
{{!}} {{{residence}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliations|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Affiliations'''
{{!}} {{{affiliations}}}
|}}
|- style="vertical-align: top"
{{#if:{{{relationships|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Relationships'''
{{!}} {{{relationships}}}
|}}
|- style="vertical-align: top"
{{#if:{{{equipment|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Equipment'''
{{!}} {{{equipment}}}
|}}
|- style="vertical-align: top"
{{#if:{{{status|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Status'''
{{!}} {{{status}}}
|}}
|-
|align="center" colspan="2" style="background:#3d3f4c; color:#fff; border-radius:3px; font-size: 10px;" | '''Production'''
|- style="vertical-align: top"
{{#if:{{{first|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}}'''First Appearance'''
{{!}} style="width:17em" {{!}} {{{first|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{last|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Last Appearance'''
{{!}} {{{last}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|fullname=
|nickname=
|alias=
|species=
|homeworld=
|residence=
|affiliations=
|relationships=
|equipment=
|status=
|first=
|last=
}}
</pre>
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Name'''
|- style="vertical-align: top"
#02b70c
[[Category:Templates]]</noinclude>
1f6829a23e264c59857a8f26ee7ab622b5765f4f
1982
1981
2022-04-24T08:15:22Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=310px style="font-family: verdana, sans-serif; padding: 0px 4px 4px 4px; margin: 0 0 1em 2em; font-size: 10px; background: #fff; border:1px solid #c8ccd0; color:#000; border-radius:5px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{alias|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Aliases'''
{{!}} {{{alias}}}
|}}
|-
|align="center" colspan="2" style="background:#3d3f4c; color:#fff; border-radius:3px; font-size: 10px;" | '''Details'''
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Birthplace'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{residence|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Residence'''
{{!}} {{{residence}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliations|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Affiliations'''
{{!}} {{{affiliations}}}
|}}
|- style="vertical-align: top"
{{#if:{{{relationships|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Relationships'''
{{!}} {{{relationships}}}
|}}
|- style="vertical-align: top"
{{#if:{{{equipment|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Equipment'''
{{!}} {{{equipment}}}
|}}
|- style="vertical-align: top"
{{#if:{{{status|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Status'''
{{!}} {{{status}}}
|}}
|-
|align="center" colspan="2" style="background:#3d3f4c; color:#fff; border-radius:3px; font-size: 10px;" | '''Production Information'''
|- style="vertical-align: top"
{{#if:{{{first|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}}'''First Appearance'''
{{!}} style="width:17em" {{!}} {{{first|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{last|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Last Appearance'''
{{!}} {{{last}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|fullname=
|nickname=
|alias=
|species=
|homeworld=
|residence=
|affiliations=
|relationships=
|equipment=
|status=
|first=
|last=
}}
</pre>
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Name'''
|- style="vertical-align: top"
#02b70c
[[Category:Templates]]</noinclude>
9df35312665d392c6d4f87530e48b69f010ca4d0
1986
1982
2022-04-24T08:19:07Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=310px style="font-family: verdana, sans-serif; padding: 0px 4px 4px 4px; margin: 0 0 1em 2em; font-size: 10px; background: #fff; border:1px solid #c8ccd0; color:#000; border-radius:5px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
{{#if:{{{fullname|}}}|{{!}}- style="vertical-align: top"
{{!}}'''Full name'''
{{!}} style="width:17em" {{!}} {{{fullname|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{alias|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Aliases'''
{{!}} {{{alias}}}
|}}
|-
|align="center" colspan="2" style="background:#3d3f4c; color:#fff; border-radius:3px; font-size: 10px;" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{species|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Species'''
{{!}} {{{species}}}
|}}
|- style="vertical-align: top"
{{#if:{{{homeworld|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Birthplace'''
{{!}} {{{homeworld}}}
|}}
|- style="vertical-align: top"
{{#if:{{{residence|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Residence'''
{{!}} {{{residence}}}
|}}
|- style="vertical-align: top"
{{#if:{{{affiliations|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Affiliations'''
{{!}} {{{affiliations}}}
|}}
|- style="vertical-align: top"
{{#if:{{{relationships|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Relationships'''
{{!}} {{{relationships}}}
|}}
|- style="vertical-align: top"
{{#if:{{{equipment|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Equipment'''
{{!}} {{{equipment}}}
|}}
|- style="vertical-align: top"
{{#if:{{{status|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Status'''
{{!}} {{{status}}}
|}}
|-
|align="center" colspan="2" style="background:#3d3f4c; color:#fff; border-radius:3px; font-size: 10px;" | '''Production Information'''
|- style="vertical-align: top"
{{#if:{{{first|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}}'''First Appearance'''
{{!}} style="width:17em" {{!}} {{{first|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{last|}}}|{{!}}- style="vertical-align: top; horizontal-align:right;"
{{!}} '''Last Appearance'''
{{!}} {{{last}}}
|}}
|}<noinclude>
<pre>
{{charbox
|image=
|fullname=
|nickname=
|alias=
|species=
|homeworld=
|residence=
|affiliations=
|relationships=
|equipment=
|status=
|first=
|last=
}}
</pre>
|align="center" colspan="2" style="background:#02b70c; color:#fff; border-radius:5px" | '''Name'''
|- style="vertical-align: top"
#02b70c
[[Category:Templates]]</noinclude>
3422b238d80b411b56af3289ca7aa65f5d993971
Template:Itembox
10
342
1983
1288
2022-04-24T08:15:25Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=310px style="font-family: verdana, sans-serif; padding: 0px 4px 4px 4px; margin: 0 0 1em 2em; font-size: 10px; background: #fff; border:1px solid #c8ccd0; color:#000; border-radius:5px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
{{#if:{{{name|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Name'''
{{!}} style="width:17em" {{!}} {{{name|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{alias|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Aliases'''
{{!}} {{{alias}}}
|}}
|-
|align="center" colspan="2" style="background:#3d3f4c; color:#fff; border-radius:3px; font-size: 10px;" | '''Details'''
|- style="vertical-align: top"
{{#if:{{{level|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Level'''
{{!}} {{{level}}}
|}}
|- style="vertical-align: top"
{{#if:{{{function|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Function'''
{{!}} {{{function}}}
|}}
|- style="vertical-align: top"
{{#if:{{{creator|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Creator'''
{{!}} {{{creator}}}
|}}
|- style="vertical-align: top"
{{#if:{{{user|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''User(s)'''
{{!}} {{{user}}}
|}}
|- style="vertical-align: top"
{{#if:{{{status|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Status'''
{{!}} {{{status}}}
|}}
|-
|align="center" colspan="2" style="background:#3d3f4c; color:#fff; border-radius:3px; font-size: 10px;" | '''Production Information'''
|- style="vertical-align: top"
{{#if:{{{first|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''First Appearance'''
{{!}} style="width:17em" {{!}} {{{first|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{last|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Last Appearance'''
{{!}} {{{last}}}
|}}
|}<noinclude>
<pre>
{{itembox
|image=
|name=
|nickname=
|alias=
|level=
|function=
|creator=
|user=
|status=
|first=
|last=
}}
</pre>
[[Category:Templates]]</noinclude>
3ccde447049daa4c9692d440afc8c1f5c6fa45c9
1985
1983
2022-04-24T08:18:52Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=310px style="font-family: verdana, sans-serif; padding: 0px 4px 4px 4px; margin: 0 0 1em 2em; font-size: 10px; background: #fff; border:1px solid #c8ccd0; color:#000; border-radius:5px 0px"
|align="center" colspan="2" | {{{image|}}}
|-
{{#if:{{{name|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Name'''
{{!}} style="width:17em" {{!}} {{{name|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{nickname|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Nicknames'''
{{!}} {{{nickname}}}
|}}
|- style="vertical-align: top"
{{#if:{{{alias|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Aliases'''
{{!}} {{{alias}}}
|}}
|-
|align="center" colspan="2" style="background:#3d3f4c; color:#fff; border-radius:3px; font-size: 10px;" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{level|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Level'''
{{!}} {{{level}}}
|}}
|- style="vertical-align: top"
{{#if:{{{function|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Function'''
{{!}} {{{function}}}
|}}
|- style="vertical-align: top"
{{#if:{{{creator|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Creator'''
{{!}} {{{creator}}}
|}}
|- style="vertical-align: top"
{{#if:{{{user|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''User(s)'''
{{!}} {{{user}}}
|}}
|- style="vertical-align: top"
{{#if:{{{status|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Status'''
{{!}} {{{status}}}
|}}
|-
|align="center" colspan="2" style="background:#3d3f4c; color:#fff; border-radius:3px; font-size: 10px;" | '''Production Information'''
|- style="vertical-align: top"
{{#if:{{{first|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''First Appearance'''
{{!}} style="width:17em" {{!}} {{{first|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{last|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Last Appearance'''
{{!}} {{{last}}}
|}}
|}<noinclude>
<pre>
{{itembox
|image=
|name=
|nickname=
|alias=
|level=
|function=
|creator=
|user=
|status=
|first=
|last=
}}
</pre>
[[Category:Templates]]</noinclude>
47c0f65fd78dd223d8a241c4f81f0571ff5762e7
Template:Mediabox
10
246
1984
1070
2022-04-24T08:16:44Z
Jaswacker
30585766
wikitext
text/x-wiki
{| class="infobox" cellpadding=2 cellspacing=2 align={{{align|right}}} width=310px style="font-family: verdana, sans-serif; padding: 0px 4px 4px 4px; margin: 0 0 1em 2em; font-size: 10px; background: #fff; border:1px solid #c8ccd0; color:#000; border-radius:5px 0px"
|align="center" colspan="2" | [[Image:{{{image|}}}|300px]]{{#if: {{{caption|}}} |<br>{{{caption|}}}}}
|-
|align="center" colspan="2" style="background:#3d3f4c; color:#fff; border-radius:3px; font-size: 10px;" | '''General Information'''
|- style="vertical-align: top"
{{#if:{{{broadcast|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Broadcast date'''
{{!}} style="width:17em" {{!}} {{{broadcast|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{release|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Release date''
{{!}} {{{release}}}
|}}
|- style="vertical-align: top"
{{#if:{{{series|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Series'''
{{!}} {{{series}}}
|}}
|-
|align="center" colspan="2" style="background:#3d3f4c; color:#fff; border-radius:3px; font-size: 10px;" | '''Credits'''
|- style="vertical-align: top"
{{#if:{{{writer|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Writer'''
{{!}} style="width:17em" {{!}} {{{writer|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{writers|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Writers'''
{{!}} {{{writers}}}
|}}
|- style="vertical-align: top"
{{#if:{{{writtenby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Written by'''
{{!}} {{{writtenby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{storyby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Story by'''
{{!}} {{{storyby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{scriptby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Script by'''
{{!}} {{{scriptby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{director|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Director'''
{{!}} {{{director}}}
|}}
|- style="vertical-align: top"
{{#if:{{{directors|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Directors'''
{{!}} {{{directors}}}
|}}
|- style="vertical-align: top"
{{#if:{{{directedby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Directed by'''
{{!}} {{{directedby}}}
|}}
|- style="vertical-align: top"
{{#if:{{{producer|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Producer'''
{{!}} {{{producer}}}
|}}
|- style="vertical-align: top"
{{#if:{{{producers|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Producers'''
{{!}} {{{producers}}}
|}}
|- style="vertical-align: top"
{{#if:{{{execproducer|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Executive producer'''
{{!}} {{{execproducer}}}
|}}
|- style="vertical-align: top"
{{#if:{{{assocproducer|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Associate producer'''
{{!}} {{{assocproducer}}}
|}}
|- style="vertical-align: top"
{{#if:{{{illustratedby|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Illustrated by'''
{{!}} {{{illustratedby}}}
|}}
|-
|align="center" colspan="2" style="background:#3d3f4c; color:#fff; border-radius:3px; font-size: 10px;" | '''Production Information'''
|- style="vertical-align: top"
{{#if:{{{prodcode|}}}|{{!}}- style="vertical-align: top;"
{{!}}'''Production code'''
{{!}} style="width:17em" {{!}} {{{prodcode|}}}
|}}
|- style="vertical-align: top"
{{#if:{{{prodstudio|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Production studio'''
{{!}} {{{prodstudio}}}
|}}
|- style="vertical-align: top"
{{#if:{{{animstudio|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Animation studio'''
{{!}} {{{animstudio}}}
|}}
|- style="vertical-align: top"
{{#if:{{{postprod|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Post-production services'''
{{!}} {{{postprod}}}
|}}
|- style="vertical-align: top"
{{#if:{{{publisher|}}}|{{!}}- style="vertical-align: top;"
{{!}} '''Publisher'''
{{!}} {{{publisher}}}
|}}
|}<noinclude>
<pre>
{{mediabox
|image=
|caption=
|broadcast=
|release=
|series=
|writer= [Writer]
|writers= [Writers]
|writtenby= [Written by]
|storyby= [Story by]
|scriptby= [Script by]
|director= [Director]
|directors= [Directors]
|directedby= [Directed by]
|producer= [Producer]
|producers= [Producers]
|execproducer= [Executive producer]
|assocproducer= [Associate producer]
|illustratedby= [Illustrated by]
|prodcode= [Production code]
|prodstudio= [Production studio]
|animstudio= [Animation studio]
|postprod= [Post-production services]
|publisher= [Publisher]
}}
</pre>
[[Category:Templates]]</noinclude>
4468eab9d05f6ef4b49293590219c4d5b7ba5047
Ben Tennyson (Prime)
0
93
1987
1961
2022-04-24T08:19:51Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
{{charbox
|image={{tabs|{{tab2|OV|Omniverserender1.png}}{{tab2|UAF|modelben.png}}{{tab2|OS|osben.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
bio
cfb1a0a356ba633191d68e0f37f45e836b6d214a
1989
1987
2022-04-24T08:23:09Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{stub}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
{{charbox
|image={{tabs|{{tab2|OV|Omniverserender1.png}}{{tab2|UAF|modelben.png}}{{tab2|OS|osben.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
bio
ce4e98ffa681dca5d46ee5c1a34daeb39801e19a
1990
1989
2022-04-24T08:23:20Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
{{stub}}
{{charbox
|image={{tabs|{{tab2|OV|Omniverserender1.png}}{{tab2|UAF|modelben.png}}{{tab2|OS|osben.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
bio
06d2a9c72377928b3fe3dba5299b3bfc66e8aa24
1991
1990
2022-04-24T08:23:32Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{stub}}
<br>
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
{{charbox
|image={{tabs|{{tab2|OV|Omniverserender1.png}}{{tab2|UAF|modelben.png}}{{tab2|OS|osben.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
bio
e42e879ce8af16508761a14b78e53527390cdf42
1992
1991
2022-04-24T08:23:44Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
{{charbox
|image={{tabs|{{tab2|OV|Omniverserender1.png}}{{tab2|UAF|modelben.png}}{{tab2|OS|osben.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
bio
cfb1a0a356ba633191d68e0f37f45e836b6d214a
1993
1992
2022-04-24T08:25:25Z
Jaswacker
30585766
Protected "[[Ben Tennyson (Prime)]]" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
{{charbox
|image={{tabs|{{tab2|OV|Omniverserender1.png}}{{tab2|UAF|modelben.png}}{{tab2|OS|osben.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
bio
cfb1a0a356ba633191d68e0f37f45e836b6d214a
2000
1993
2022-04-24T08:30:08Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
bio
1f2ae0927c1f3aa7f1257493eb0db0b7928f005a
2001
2000
2022-04-24T08:33:17Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
placeholder
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 2, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|''Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck, Battle Version''' (Wave 3, 2007)
: placeholder
: for new lines
: do this thing
{{quote|''Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave #, year)
: Release of Wave 2 Upchuck with the ''Ultimate Alien'' toyline.
{{quote|toybio}}
{{-}}
=== DNA Alien Heroes ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Rocks ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Benwolf and Upchuck''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Planetary Powder Sets ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck Planetary Powder Set''' (year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Alien Force'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Creation Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Murk Upchuck and Gorvan''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Alien Creation Transporter: Upchuck & Clear Heatblast''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Ultimate Alien'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Haywire''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Four Arms, Upchuck, & XLR8''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Four Arms/Stinkfly, Swampfire/Diamondhead, Goop/Wildmutt''' (Wave 4, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== 2" Mini Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
[[File:PLACEHOLDER2.png|thumb|250px|clear green variant]]
*'''Upchuck''', Blind Bag (Series 3, year)
: toyinfo
{{-}}
=== ''Omniverse'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Role Play ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Omnitrix Challenge (2012)
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Transformations]]</noinclude>
71890ea05b6077b152d906c67b9614f08b01a1ea
2002
2001
2022-04-24T08:36:00Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{quote|text=Adipiscing elit duis tristique sollicitudin nibh sit amet.|origin=John Doe}}
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 2, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|''Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck, Battle Version''' (Wave 3, 2007)
: placeholder
: for new lines
: do this thing
{{quote|''Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave #, year)
: Release of Wave 2 Upchuck with the ''Ultimate Alien'' toyline.
{{quote|toybio}}
{{-}}
=== DNA Alien Heroes ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Rocks ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Benwolf and Upchuck''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Planetary Powder Sets ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck Planetary Powder Set''' (year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Alien Force'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Creation Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Murk Upchuck and Gorvan''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Alien Creation Transporter: Upchuck & Clear Heatblast''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Ultimate Alien'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Haywire''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Four Arms, Upchuck, & XLR8''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Four Arms/Stinkfly, Swampfire/Diamondhead, Goop/Wildmutt''' (Wave 4, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== 2" Mini Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
[[File:PLACEHOLDER2.png|thumb|250px|clear green variant]]
*'''Upchuck''', Blind Bag (Series 3, year)
: toyinfo
{{-}}
=== ''Omniverse'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Role Play ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Omnitrix Challenge (2012)
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Transformations]]</noinclude>
accc74c960fda3c45b87f51492ac998cefa05961
2003
2002
2022-04-24T08:37:08Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{quote|text=Adipiscing elit duis tristique sollicitudin nibh sit amet.|origin=John Doe}}
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 2, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|''Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck, Battle Version''' (Wave 3, 2007)
: placeholder
: for new lines
: do this thing
{{quote|''Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave #, year)
: Release of Wave 2 Upchuck with the ''Ultimate Alien'' toyline.
{{quote|toybio}}
{{-}}
=== DNA Alien Heroes ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Rocks ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Benwolf and Upchuck''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Planetary Powder Sets ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck Planetary Powder Set''' (year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Alien Force'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Creation Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Murk Upchuck and Gorvan''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Alien Creation Transporter: Upchuck & Clear Heatblast''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Ultimate Alien'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Haywire''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Four Arms, Upchuck, & XLR8''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Four Arms/Stinkfly, Swampfire/Diamondhead, Goop/Wildmutt''' (Wave 4, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== 2" Mini Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
[[File:PLACEHOLDER2.png|thumb|250px|clear green variant]]
*'''Upchuck''', Blind Bag (Series 3, year)
: toyinfo
{{-}}
=== ''Omniverse'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Role Play ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Omnitrix Challenge (2012)
: toyinfo
{{quote|toybio}}
{{-}}
== Merchandise ==
{{-}}
==Notes==
* trivia
* and such
* goes here
{{-}}
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Characters]]</noinclude>
34e2c370087dc0cc8a380f74652135f003d6bf07
2004
2003
2022-04-24T08:38:39Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. {{flag|US}} {{flag|JP}}
{{quote|text=Adipiscing elit duis tristique sollicitudin nibh sit amet.|origin=John Doe}}
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 2, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|''Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck, Battle Version''' (Wave 3, 2007)
: placeholder
: for new lines
: do this thing
{{quote|''Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave #, year)
: Release of Wave 2 Upchuck with the ''Ultimate Alien'' toyline.
{{quote|toybio}}
{{-}}
=== DNA Alien Heroes ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Rocks ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Benwolf and Upchuck''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Planetary Powder Sets ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck Planetary Powder Set''' (year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Alien Force'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Creation Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Murk Upchuck and Gorvan''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Alien Creation Transporter: Upchuck & Clear Heatblast''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Ultimate Alien'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Haywire''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Four Arms, Upchuck, & XLR8''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Four Arms/Stinkfly, Swampfire/Diamondhead, Goop/Wildmutt''' (Wave 4, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== 2" Mini Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
[[File:PLACEHOLDER2.png|thumb|250px|clear green variant]]
*'''Upchuck''', Blind Bag (Series 3, year)
: toyinfo
{{-}}
=== ''Omniverse'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Role Play ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Omnitrix Challenge (2012)
: toyinfo
{{quote|toybio}}
{{-}}
== Merchandise ==
{{-}}
==Notes==
* trivia
* and such
* goes here
{{-}}
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Characters]]</noinclude>
2e32385560629d5bd5bd44551ed80f0b5b86ad36
2005
2004
2022-04-24T08:40:18Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. {{flag|US}} {{flag|JP}} {{flag|CA}}
{{quote|text=Adipiscing elit duis tristique sollicitudin nibh sit amet.|origin=John Doe}}
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 2, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|''Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck, Battle Version''' (Wave 3, 2007)
: placeholder
: for new lines
: do this thing
{{quote|''Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave #, year)
: Release of Wave 2 Upchuck with the ''Ultimate Alien'' toyline.
{{quote|toybio}}
{{-}}
=== DNA Alien Heroes ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Rocks ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Benwolf and Upchuck''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Planetary Powder Sets ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck Planetary Powder Set''' (year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Alien Force'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Creation Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Murk Upchuck and Gorvan''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Alien Creation Transporter: Upchuck & Clear Heatblast''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Ultimate Alien'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Haywire''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Four Arms, Upchuck, & XLR8''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Four Arms/Stinkfly, Swampfire/Diamondhead, Goop/Wildmutt''' (Wave 4, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== 2" Mini Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
[[File:PLACEHOLDER2.png|thumb|250px|clear green variant]]
*'''Upchuck''', Blind Bag (Series 3, year)
: toyinfo
{{-}}
=== ''Omniverse'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Role Play ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Omnitrix Challenge (2012)
: toyinfo
{{quote|toybio}}
{{-}}
== Merchandise ==
{{-}}
==Notes==
* trivia
* and such
* goes here
{{-}}
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Characters]]</noinclude>
3527f68eb31a9c68816711828c19c00d6754d562
2006
2005
2022-04-24T08:40:42Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{quote|text=Adipiscing elit duis tristique sollicitudin nibh sit amet.|origin=John Doe}}
{{drop|test|test}}
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 2, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|''Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck, Battle Version''' (Wave 3, 2007)
: placeholder
: for new lines
: do this thing
{{quote|''Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave #, year)
: Release of Wave 2 Upchuck with the ''Ultimate Alien'' toyline.
{{quote|toybio}}
{{-}}
=== DNA Alien Heroes ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Rocks ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Benwolf and Upchuck''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Planetary Powder Sets ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck Planetary Powder Set''' (year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Alien Force'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Creation Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Murk Upchuck and Gorvan''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Alien Creation Transporter: Upchuck & Clear Heatblast''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Ultimate Alien'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Haywire''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Four Arms, Upchuck, & XLR8''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Four Arms/Stinkfly, Swampfire/Diamondhead, Goop/Wildmutt''' (Wave 4, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== 2" Mini Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
[[File:PLACEHOLDER2.png|thumb|250px|clear green variant]]
*'''Upchuck''', Blind Bag (Series 3, year)
: toyinfo
{{-}}
=== ''Omniverse'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Role Play ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Omnitrix Challenge (2012)
: toyinfo
{{quote|toybio}}
{{-}}
== Merchandise ==
{{-}}
==Notes==
* trivia
* and such
* goes here
{{-}}
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Characters]]</noinclude>
61d323d5b02cdc7c069586b1a081d86ed7eb0ccc
2008
2006
2022-04-24T08:42:08Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. {{flag|UK}}
{{quote|text=Adipiscing elit duis tristique sollicitudin nibh sit amet.|origin=John Doe}}
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 2, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|''Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck, Battle Version''' (Wave 3, 2007)
: placeholder
: for new lines
: do this thing
{{quote|''Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave #, year)
: Release of Wave 2 Upchuck with the ''Ultimate Alien'' toyline.
{{quote|toybio}}
{{-}}
=== DNA Alien Heroes ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Rocks ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Benwolf and Upchuck''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Planetary Powder Sets ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck Planetary Powder Set''' (year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Alien Force'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Creation Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Murk Upchuck and Gorvan''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Alien Creation Transporter: Upchuck & Clear Heatblast''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Ultimate Alien'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Haywire''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Four Arms, Upchuck, & XLR8''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Four Arms/Stinkfly, Swampfire/Diamondhead, Goop/Wildmutt''' (Wave 4, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== 2" Mini Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
[[File:PLACEHOLDER2.png|thumb|250px|clear green variant]]
*'''Upchuck''', Blind Bag (Series 3, year)
: toyinfo
{{-}}
=== ''Omniverse'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Role Play ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Omnitrix Challenge (2012)
: toyinfo
{{quote|toybio}}
{{-}}
== Merchandise ==
{{-}}
==Notes==
* trivia
* and such
* goes here
{{-}}
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Characters]]</noinclude>
463c040b00a71ffcdec3768931606166aac01937
2009
2008
2022-04-24T08:42:19Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. {{flag|GB}}
{{quote|text=Adipiscing elit duis tristique sollicitudin nibh sit amet.|origin=John Doe}}
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 2, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|''Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck, Battle Version''' (Wave 3, 2007)
: placeholder
: for new lines
: do this thing
{{quote|''Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave #, year)
: Release of Wave 2 Upchuck with the ''Ultimate Alien'' toyline.
{{quote|toybio}}
{{-}}
=== DNA Alien Heroes ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Rocks ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Benwolf and Upchuck''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Planetary Powder Sets ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck Planetary Powder Set''' (year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Alien Force'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Creation Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Murk Upchuck and Gorvan''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Alien Creation Transporter: Upchuck & Clear Heatblast''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Ultimate Alien'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Haywire''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Four Arms, Upchuck, & XLR8''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Four Arms/Stinkfly, Swampfire/Diamondhead, Goop/Wildmutt''' (Wave 4, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== 2" Mini Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
[[File:PLACEHOLDER2.png|thumb|250px|clear green variant]]
*'''Upchuck''', Blind Bag (Series 3, year)
: toyinfo
{{-}}
=== ''Omniverse'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Role Play ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Omnitrix Challenge (2012)
: toyinfo
{{quote|toybio}}
{{-}}
== Merchandise ==
{{-}}
==Notes==
* trivia
* and such
* goes here
{{-}}
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Characters]]</noinclude>
846c1eceb462a1fbfb4d37f3b9ffbaaef965fe7f
2010
2009
2022-04-24T08:42:40Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{quote|text=Adipiscing elit duis tristique sollicitudin nibh sit amet.|origin=John Doe}}
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 2, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|''Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck, Battle Version''' (Wave 3, 2007)
: placeholder
: for new lines
: do this thing
{{quote|''Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave #, year)
: Release of Wave 2 Upchuck with the ''Ultimate Alien'' toyline.
{{quote|toybio}}
{{-}}
=== DNA Alien Heroes ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Rocks ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Benwolf and Upchuck''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Planetary Powder Sets ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck Planetary Powder Set''' (year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Alien Force'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Creation Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Murk Upchuck and Gorvan''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Alien Creation Transporter: Upchuck & Clear Heatblast''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Ultimate Alien'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Haywire''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Four Arms, Upchuck, & XLR8''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Four Arms/Stinkfly, Swampfire/Diamondhead, Goop/Wildmutt''' (Wave 4, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== 2" Mini Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
[[File:PLACEHOLDER2.png|thumb|250px|clear green variant]]
*'''Upchuck''', Blind Bag (Series 3, year)
: toyinfo
{{-}}
=== ''Omniverse'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Role Play ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Omnitrix Challenge (2012)
: toyinfo
{{quote|toybio}}
{{-}}
== Merchandise ==
{{-}}
==Notes==
* trivia
* and such
* goes here
{{-}}
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Characters]]</noinclude>
34e2c370087dc0cc8a380f74652135f003d6bf07
2014
2010
2022-04-24T08:49:27Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (Disambiguation)|Ben 10,000 (Disambiguation)}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{quote|text=Adipiscing elit duis tristique sollicitudin nibh sit amet.|origin=John Doe}}
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 2, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|''Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck, Battle Version''' (Wave 3, 2007)
: placeholder
: for new lines
: do this thing
{{quote|''Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave #, year)
: Release of Wave 2 Upchuck with the ''Ultimate Alien'' toyline.
{{quote|toybio}}
{{-}}
=== DNA Alien Heroes ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Rocks ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Benwolf and Upchuck''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Planetary Powder Sets ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck Planetary Powder Set''' (year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Alien Force'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Creation Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Murk Upchuck and Gorvan''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Alien Creation Transporter: Upchuck & Clear Heatblast''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Ultimate Alien'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Haywire''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Four Arms, Upchuck, & XLR8''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Four Arms/Stinkfly, Swampfire/Diamondhead, Goop/Wildmutt''' (Wave 4, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== 2" Mini Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
[[File:PLACEHOLDER2.png|thumb|250px|clear green variant]]
*'''Upchuck''', Blind Bag (Series 3, year)
: toyinfo
{{-}}
=== ''Omniverse'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Role Play ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Omnitrix Challenge (2012)
: toyinfo
{{quote|toybio}}
{{-}}
== Merchandise ==
{{-}}
==Notes==
* trivia
* and such
* goes here
{{-}}
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Characters]]</noinclude>
11e6b05d01bc0c757afea10e9c874b96c1fe212f
Upchuck
0
6
1988
886
2022-04-24T08:21:35Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image={{tabs|{{tab2|OV (Perk)|PLACEHOLDER2.png}}{{tab2|OV (Murk)|PLACEHOLDER2.png}}{{tab2|AF|PLACEHOLDER2.png}}{{tab2|OS|PLACEHOLDER2.png}}}}
|nickname={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Gourmand]]
|homeworld=[[Peptos XII]]
|equipment=[[Omnitrix]]
|first=Placeholder
|last=Placeholder
}}
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 2, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|''Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck, Battle Version''' (Wave 3, 2007)
: placeholder
: for new lines
: do this thing
{{quote|''Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave #, year)
: Release of Wave 2 Upchuck with the ''Ultimate Alien'' toyline.
{{quote|toybio}}
{{-}}
=== DNA Alien Heroes ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Rocks ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Benwolf and Upchuck''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Planetary Powder Sets ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck Planetary Powder Set''' (year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Alien Force'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Creation Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Murk Upchuck and Gorvan''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Alien Creation Transporter: Upchuck & Clear Heatblast''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Ultimate Alien'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Haywire''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Four Arms, Upchuck, & XLR8''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Four Arms/Stinkfly, Swampfire/Diamondhead, Goop/Wildmutt''' (Wave 4, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== 2" Mini Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
[[File:PLACEHOLDER2.png|thumb|250px|clear green variant]]
*'''Upchuck''', Blind Bag (Series 3, year)
: toyinfo
{{-}}
=== ''Omniverse'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Role Play ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Omnitrix Challenge (2012)
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Transformations]]</noinclude>
85ac4013e34baf769ce43946102ea585caa36431
1998
1988
2022-04-24T08:28:19Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{charbox
|image={{tabs|{{tab2|OV (Perk)|c.png}}{{tab2|OV (Murk)|c.png}}{{tab2|AF|c.png}}{{tab2|OS|c.png}}}}
|nickname={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Gourmand]]
|homeworld=[[Peptos XII]]
|equipment=[[Omnitrix]]
|first=Placeholder
|last=Placeholder
}}
Placeholder, general bio/description of Upchuck.
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 2, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|''Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck, Battle Version''' (Wave 3, 2007)
: placeholder
: for new lines
: do this thing
{{quote|''Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave #, year)
: Release of Wave 2 Upchuck with the ''Ultimate Alien'' toyline.
{{quote|toybio}}
{{-}}
=== DNA Alien Heroes ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Rocks ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Benwolf and Upchuck''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Planetary Powder Sets ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck Planetary Powder Set''' (year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Alien Force'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Creation Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Murk Upchuck and Gorvan''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Alien Creation Transporter: Upchuck & Clear Heatblast''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Ultimate Alien'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Haywire''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Four Arms, Upchuck, & XLR8''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Four Arms/Stinkfly, Swampfire/Diamondhead, Goop/Wildmutt''' (Wave 4, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== 2" Mini Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
[[File:PLACEHOLDER2.png|thumb|250px|clear green variant]]
*'''Upchuck''', Blind Bag (Series 3, year)
: toyinfo
{{-}}
=== ''Omniverse'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Role Play ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Omnitrix Challenge (2012)
: toyinfo
{{quote|toybio}}
{{-}}
==Notes==
* trivia
* and such
* goes here
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Transformations]]</noinclude>
2923820069d43a12dbe7af68d45c4fca07af36b3
File:Placeholder Char.png
6
526
1994
2022-04-24T08:26:37Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
1995
1994
2022-04-24T08:26:44Z
Jaswacker
30585766
Protected "[[File:Placeholder Char.png]]" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) [Upload=Allow only administrators] (indefinite))
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:C.png
6
527
1996
2022-04-24T08:27:54Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
1997
1996
2022-04-24T08:28:01Z
Jaswacker
30585766
Protected "[[File:C.png]]" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) [Upload=Allow only administrators] (indefinite))
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Ben Tennyson (Disambiguation)
0
24
1999
1926
2022-04-24T08:29:02Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
[[File:attwn.png|thumb|right|The gang's all here!]]
{{quote|text = Alien or not, I'm still the hero.|origin = [[Ben Tennyson (Omniverse Video Game)|Ben]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''[[Ben Tennyson (Prime)/Toys|Toys]] • [[Ben Tennyson (Prime)/Merchandise|Merchandise]]''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''[[Ben Tennyson (Reboot)/Toys|Toys]] • [[Ben Tennyson (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:RB10k.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:c.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|"Bad Ben"]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|"Benzarro"]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|"Mad Ben"]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|"Nega Ben"]]
File:c.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:c.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:c.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:c.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* [[Ben Tennyson (Prime)]]
* [[Ben Tennyson (Reboot)]]
* [[Ben 10,000 (Original Series)]]
* [[Ultimate Ben]] transformation
* [[Ben 10,000 (Ultimate Alien)]]
* [[Eon (Ultimate Alien)]]
* [[Eon (Omniverse)]]
* [[Ben 10,000 (Omniverse)]]
* [[Ben 10,000 (Reboot)]]
* [[Ben Tennyson (Evil Dimension)]]
* [[Ben Tennyson (Race Against Time)]]
* [[Ben Tennyson (Alien Swarm)]]
* [[Ben Tennyson (Dimension 23)]]
* [[Ben Tennyson (No-Watch Dimension)]]
* [[Ben Tennyson (Bad Dimension)]]
* [[Ben Tennyson (Negaverse)]]
* [[Ben Tennyson (Madworld)]]
* [[Ben Tennyson (Zombiverse)]]
* [[Ben Tennyson (Original Series Dimension)]]
* [[Ben Tennyson (Ultimate Alien Dimension)]]
* [[Ben Tennyson (Alien Force Dimension)]]
* [[Ben Tennyson (Omniverse Dimension)]]
* [[Ben Tennyson (Dimension 12041.5)]] Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction''
* [[Ben Tennyson (Maximillian's Dimension)]] Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction''
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters#Evil Ben's Victims|Evil Ben's Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run based on Omniverse, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Ben 10 Franklin]]'', see [[Benjamin Franklin#Ben 10 Franklin|Benjamin Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Cowboys and Alien Force]]'', see [[Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
* [[Ben Tennyson (Hyperscan)]] game
* [[Ben Tennyson (Prime)|Ben Tennyson (Alien Force Video Game)]] canon to Prime, placed in this list temporarily so we don't forget about it
* [[Ben Tennyson (Omniverse Video Game)]] refers to the alternate timeline made in the game. the events of Omniverse 2 are canon.
* [[Ben Tennyson (Reboot Video Game)]] game, may be canon to the reboot or to the other reboot game(s)
* [[Ben Tennyson (Power Trip)]] game, may be canon to the reboot or to the other reboot game(s)
* [[Ben Tennyson (Galactic Racing)]] game. likely not canon.
* [[Ben Tennyson (Classics)]] comics
* [[Ben Tennyson (Perfect Square)]] comics
* [[Ben Tennyson (Leapfrog)]] AF storybook, two UA learning games
* [[Ben Tennyson (Del Rey)]] manga
* [[Ben Tennyson (BOOM! Studios)]] comics
* [[Ben Tennyson (Bandai Comics)]] comics
* [[Ben Tennyson (Alien Race)]] game. Might be canon. Might not have any story implications at all (in that case, this article is not needed)
* [[Ben Tennyson (Wrath of Psychobos)]] game. Might be canon to prime, might not.
* [[Ben Tennyson (JoongAng MB Jr)]] korean comics (science hero and exploring hero)
* [[Ben Tennyson (Fuel Run)]] game
* [[Ben Tennyson (V-Tech)]] mobigo kids learning game called "Ben 10: Ultimate Alien: Mind Mine"
* [[Ben Tennyson (Storybooks)]] picture books made that adapted episodes of UAF
* [[Ben Tennyson (Scholastic)]] chapter books published by scholastic of original stories set during UAF
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* [[Omnitrix (Disambiguation)]]
* [[Omnitrix Wielders]]
* [[Albedo]]
* [[Kenny Tennyson (Disambiguation)]]
* [[Kevin Levin (Reboot)]]
* [[Gwen 10 (Disambiguation)]]
* [[Max Tennyson (Gwen 10)]]
* [[Argit (Argitrix Dimension)]]
* [[Timothy|Tim 10]]
{{-}}
22bdbe6663719dc62f821498a40bd6a3f26625e1
Template:Drop
10
298
2007
1174
2022-04-24T08:41:42Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div class="metadata" style="z-index: 100;" id="Drop-down-list">
{| cellspacing="0" style="border-collapse: collapse; width: {{{1}}}px; font-size: 0.9em; background-color: white; margin: auto; background: #fff; border:1px solid white; color:#000; border-radius:20px 0px;"
|-
! colspan="2" style="border-bottom: 0.5px solid #02b70c; background-color: white; text-align: center; padding-left: .7em; border-radius:20px 0px; font-size: 1.1em;" |<div class="mw-customtoggle-{{{id|desks}}}">
{{{name|Text}}} [[File:MediaWiki Vector skin action arrow.png|link=]]
</div>
<div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-{{{id|desks}}}" style="padding:0px; border:0px; border-radius:20px 0px; font-size: 0.9em; font-weight:normal;">
<div class="mw-collapsible-content" style="text-align:left;">
{{{2}}}
</div></div>
|}</div></includeonly>
<pre>
{{drop
|TITLE
|content
}}
</pre>
<noinclude>[[Category:Templates]]</noinclude>
c66eba7be0359a2517502ceaf73ef4a9fb498233
Template:Flag
10
288
2011
1118
2022-04-24T08:43:38Z
Jaswacker
30585766
wikitext
text/x-wiki
[[File:{{{1}}}.png|20px|link= ]]<noinclude>
<pre>
{{flag|1}}
</pre>
Type in the country's [https://www.iban.com/country-codes Alpha-2 code], and that country's flag will appear as a small icon.
Not every country's flag is supported by this template.
The countries included are:
* United States (US)
* United Kingdom (GB)
* Japan (JP)
To add a country flag for this template, simply upload the flag image (as a png) with the name ''being'' just the two-letter country code in all caps.
[[Category:Templates]]</noinclude>
3f5842576f3db57ea0f11d340202b27e3580eae1
Ben Tennyson (Reboot)
0
182
2012
1708
2022-04-24T08:48:07Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Prime)|Ben Tennyson (disambiguation)|Ben 10,000 (disambiguation)}}
{{charbox
|image={{tabs|{{tab2||c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>test<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Reboot)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Reboot)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=Placeholder
|last=Placeholder
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{quote|text=Adipiscing elit duis tristique sollicitudin nibh sit amet.|origin=John Doe}}
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 2, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|''Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck, Battle Version''' (Wave 3, 2007)
: placeholder
: for new lines
: do this thing
{{quote|''Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave #, year)
: Release of Wave 2 Upchuck with the ''Ultimate Alien'' toyline.
{{quote|toybio}}
{{-}}
=== DNA Alien Heroes ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Rocks ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Benwolf and Upchuck''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Planetary Powder Sets ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck Planetary Powder Set''' (year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Alien Force'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Creation Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Murk Upchuck and Gorvan''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Alien Creation Transporter: Upchuck & Clear Heatblast''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Ultimate Alien'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Haywire''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Four Arms, Upchuck, & XLR8''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Four Arms/Stinkfly, Swampfire/Diamondhead, Goop/Wildmutt''' (Wave 4, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== 2" Mini Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
[[File:PLACEHOLDER2.png|thumb|250px|clear green variant]]
*'''Upchuck''', Blind Bag (Series 3, year)
: toyinfo
{{-}}
=== ''Omniverse'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Role Play ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Omnitrix Challenge (2012)
: toyinfo
{{quote|toybio}}
{{-}}
== Merchandise ==
{{-}}
==Notes==
* trivia
* and such
* goes here
{{-}}
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Characters]]</noinclude>
aacbcce57f908289263c7f3e7c5fac64a3657600
2013
2012
2022-04-24T08:49:07Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Prime)|Ben Tennyson (Disambiguation)|Ben 10,000 (Disambiguation)}}
{{charbox
|image={{tabs|{{tab2||c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>test<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Reboot)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Reboot)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=Placeholder
|last=Placeholder
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{quote|text=Adipiscing elit duis tristique sollicitudin nibh sit amet.|origin=John Doe}}
__TOC__
{{-}}
== History ==
{{notebook}}
=== Original Series ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
Entire history of Upchuck in the Original Series. {{storylink|Episode|Episode}}
=== ''Alien Force'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the AF. {{storylink|Episode|Episode}}
=== ''Ultimate Alien'' ===
{{voiceactor|[[Dee Bradley Baker]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the UA. {{storylink|Episode|Episode}}
=== ''Omniverse'' ===
{{voiceactor|[[Eric Bauza]] (English)|[[Ami Mandelman]] (Hebrew)}}
Entire history of Upchuck in the OV. {{storylink|Episode|Episode}}
== Attributes ==
=== Abilities ===
* Bulleted list item
* Bulleted list item
=== Weaknesses ===
* Bulleted list item
* Bulleted list item
== Appearances ==
placeholder, some dropdown menus for each show/season preferably
== Toys ==
=== BANDAI 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 2, 2007)
: Upchuck's first toy was in the BANDAI Alien Collection toyline.
: Although limited in articulation, the figure itself was generally accurate to the onscreen model.
: In the box was also a "collectable lenticular card" and an "animation disk."
{{quote|''Gourmands' acid-filled stomachs dissolve all matter into a brew of combustible gasses and liquids that can be expelled with great accuracy. This bile has proven to be one of the most destructive and corrosive substances in the universe.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck, Battle Version''' (Wave 3, 2007)
: placeholder
: for new lines
: do this thing
{{quote|''Peptos XI once a planet with rich crops and a diverse spice trade with a growing intergalactic demand for its famous foodstuffs that has literally eaten it away, leaving behind only the sparsest of nutritional materials.''}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave #, year)
: Release of Wave 2 Upchuck with the ''Ultimate Alien'' toyline.
{{quote|toybio}}
{{-}}
=== DNA Alien Heroes ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Rocks ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Benwolf and Upchuck''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Planetary Powder Sets ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck Planetary Powder Set''' (year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Alien Force'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Alien Creation Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Murk Upchuck and Gorvan''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Alien Creation Transporter: Upchuck & Clear Heatblast''' (Wave 3, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== ''Ultimate Alien'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Haywire''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Four Arms, Upchuck, & XLR8''' (Wave 2, year)
: toyinfo
{{quote|toybio}}
{{-}}
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck/Heatblast, Four Arms/Stinkfly, Swampfire/Diamondhead, Goop/Wildmutt''' (Wave 4, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== 2" Mini Figures ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
[[File:PLACEHOLDER2.png|thumb|250px|clear green variant]]
*'''Upchuck''', Blind Bag (Series 3, year)
: toyinfo
{{-}}
=== ''Omniverse'' 4" Alien Collection ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Upchuck''' (Wave 5, year)
: toyinfo
{{quote|toybio}}
{{-}}
=== Role Play ===
[[File:PLACEHOLDER2.png|thumb|250px|caption]]
*'''Omnitrix Challenge (2012)
: toyinfo
{{quote|toybio}}
{{-}}
== Merchandise ==
{{-}}
==Notes==
* trivia
* and such
* goes here
{{-}}
===Foreign Names===
*''Language:'' '''Direct Translation''' (''Anglicization, if needed'' ー Meaning)
{{Chargallery}}
<noinclude>[[Category:Characters]]</noinclude>
365f14a51d79c044180564d6a7a9a33cb66e5814
Ben Tennyson (Prime)
0
93
2015
2014
2022-04-24T09:54:45Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (Disambiguation)|Ben 10,000 (Disambiguation)}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{quote|text=Adipiscing elit duis tristique sollicitudin nibh sit amet.|origin=John Doe}}
__TOC__
{{-}}
== Fiction ==
{{-}}
== Games ==
{{-}}
== Commercial Appearances ==
{{-}}
== Appearances ==
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{Chargallery}}
<noinclude>[[Category:Characters]]</noinclude>
70fe891748f058c93d4eeb325bf9b748bf4034fe
2016
2015
2022-04-24T10:08:49Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (Disambiguation)|Ben 10,000 (Disambiguation)}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{quote|text=Adipiscing elit duis tristique sollicitudin nibh sit amet.|origin=John Doe}}
__TOC__
{{-}}
== History ==
events of the shows, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2005) ===
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{Chargallery}}
<noinclude>[[Category:Characters]]</noinclude>
3534364676f1beb808432be71102ca53e1af9c3c
2017
2016
2022-04-24T10:10:00Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (Disambiguation)|Ben 10,000 (Disambiguation)}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|text=Adipiscing elit duis tristique sollicitudin nibh sit amet.|origin=John Doe}}
__TOC__
{{-}}
== History ==
events of the shows, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2005) ===
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
<noinclude>[[Category:Characters]]</noinclude>
8b7c8a41dbe574f63bb7ea63c6e045b0157f0181
2018
2017
2022-04-24T10:10:52Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (Disambiguation)|Ben 10,000 (Disambiguation)}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|text=Adipiscing elit duis tristique sollicitudin nibh sit amet.|origin=John Doe}}
__TOC__
{{-}}
== History ==
events of the shows, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2005) ===
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
==References==
{{reflist}}
<noinclude>[[Category:Characters]]</noinclude>
db4e31533cd62ec501f26023dd954924308d0643
2020
2018
2022-04-24T10:15:31Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Reboot)|Ben Tennyson (Disambiguation)|Ben 10,000 (Disambiguation)}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|text=Adipiscing elit duis tristique sollicitudin nibh sit amet.|origin=John Doe}}
__TOC__
{{-}}
== History ==
events of the shows, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2005) ===
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Prime Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Plumbers]]
[[Category:Introduced in the Original Series]]
[[Category:Bellwood Residents]]
</noinclude>
f9d9db9a2db235bb65016ba8978db375d194fa3e
2038
2020
2022-04-25T00:03:31Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Disambiguation)}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|text=Adipiscing elit duis tristique sollicitudin nibh sit amet.|origin=John Doe}}
__TOC__
{{-}}
== History ==
events of the shows, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2005) ===
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Prime Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Plumbers]]
[[Category:Introduced in the Original Series]]
[[Category:Bellwood Residents]]
</noinclude>
2c19a4ce03cb656eae668f3d4e2b3e59151e3853
2039
2038
2022-04-25T00:03:50Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|text=Adipiscing elit duis tristique sollicitudin nibh sit amet.|origin=John Doe}}
__TOC__
{{-}}
== History ==
events of the shows, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2005) ===
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Prime Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Plumbers]]
[[Category:Introduced in the Original Series]]
[[Category:Bellwood Residents]]
</noinclude>
9e52bca167d471ba279d3ebc3d144d9e40174de0
2040
2039
2022-04-25T00:04:18Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
{{-}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|Adipiscing elit duis tristique sollicitudin nibh sit amet.|John Doe}}
__TOC__
{{-}}
== History ==
events of the shows, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2005) ===
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Prime Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Plumbers]]
[[Category:Introduced in the Original Series]]
[[Category:Bellwood Residents]]
</noinclude>
cea072e39f8eee14c829267ec06104461cf0332b
2041
2040
2022-04-25T00:04:28Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|Adipiscing elit duis tristique sollicitudin nibh sit amet.|John Doe}}
__TOC__
{{-}}
== History ==
events of the shows, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2005) ===
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Prime Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Plumbers]]
[[Category:Introduced in the Original Series]]
[[Category:Bellwood Residents]]
</noinclude>
4c15a394669ea6309e497df9757332381d805309
Template:Reflist
10
528
2019
2022-04-24T10:11:21Z
Jaswacker
30585766
Created page with "<includeonly><div class="references-small" {{#if: {{{colwidth|}}}| style="-moz-column-width:{{{colwidth}}}; -webkit-column-width:{{{colwidth}}}; column-width:{{{colwidth}}};"..."
wikitext
text/x-wiki
<includeonly><div class="references-small" {{#if: {{{colwidth|}}}| style="-moz-column-width:{{{colwidth}}}; -webkit-column-width:{{{colwidth}}}; column-width:{{{colwidth}}};" | {{#if: {{{1|}}}| style="-moz-column-count:{{{1}}}; -webkit-column-count:{{{1}}}; column-count:{{{1}}} }};" |}}><references /></div></includeonly><noinclude>
Use '''<tt><nowiki>{{reflist}}</nowiki></tt>''' instead of <tt><nowiki><references/></nowiki></tt> to create multi-column footnote lists for heavily cited articles.<br/>
You can see the 2-column footnote layout at the bottom of this article!
:This template and the exerpted documentation below are <strike>lifted from</strike> based on the Wikimedia template {{w|Template:Reflist|<nowiki>{{reflist}}</nowiki>}}. Both have 1:1 correlation with the originating Wikimedia template as of the July 9 2007 revision. ''Don't expect that to last, even at maturity the originating template is receiving ~1 minor tweak per month. However, it is unlikely to see fundamental revision (and require re-porting) until {{w|Cascading Style Sheets|CSS3}} reaches a {{w|tipping point}}.
== Usage ==
Use this template to create a reference list in an article with a small font. Note that there is no consensus that small font size should always for all references; when normal-sized font is more appropriate on an article, use <tt><nowiki><references /></nowiki></tt> instead.
If used with no parameters, it will produce a reference list with a single column.
=== Multiple columns ===
Using <tt><nowiki>{{reflist|2}}</nowiki></tt> will create a two-column reference list, and <tt><nowiki>{{reflist|3}}</nowiki></tt> will create a three-column list.
Using <tt><nowiki>{{reflist|colwidth=30em}}</nowiki></tt> will allow the browser to automatically choose the number of columns based on the width of the web browser. Choose a column width that's appropriate for the average width of the references on the page.
Note: multiple columns currently render properly only in {{w|Mozilla Firefox}} and other {{w|Gecko (layout engine)|Gecko}}-based browsers,<ref>[http://www.stuffandnonsense.co.uk/archives/css3_multi-column_thriller.html CSS3 Multi-Column Thriller]</ref> though the feature is included in {{w|Cascading Style Sheets|CSS3}}, so it should work for a larger number of browsers in the future.<ref>[http://www.w3.org/TR/css3-multicol CSS3 module: Multi-column layout]</ref>
===References===
{{reflist|2}}
[[Category:Layout templates]]
</noinclude>
4b4e528767b665a3453080b02437d0168d8638b2
Format:Disambig
0
523
2021
1918
2022-04-24T10:17:06Z
Jaswacker
30585766
/* Major Versions of the Article */
wikitext
text/x-wiki
{{trix|auu}}
{{Disambig}}
A short, eye-catching description of the topic is always good. Don't get carried away though! Keep it about 2-3 sentences and informative, but vague enough to apply to the topic as a whole.
[[File:attwn.png|thumb|right|A good, relevant image should go with disambiguation articles for major topics. Get creative with the caption!]]
{{quote|text = Quote's should be used sparingly, but they might spice up an article for a major character!|origin = [[Rad Dudesman]]}}
__TOC__
{{-}}
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''1:''' Kevin Levin]]<br><hr>''[[Main Page|Toys]] • [[Main Page|Merchandise]]''
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''2:''' ''Vilgax Attacks'' Albedo]]
</gallery></center>
: ''These links should be '''the most important, most recognizable''' versions of the topic. Here are some additional rules:''
: '''1:''' ''For major topics, put quick links to the toys and merchandise pages for the article like this.''
: '''2:''' ''However, if the article itself '''doesn't have toys/merchandise pages''', then simply leave it off.''
{{-}}
==Major Versions of ''the Article''==
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''A:''' ''Original Series'' (2005) Gwen Tennyson]]
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''B:''' "Mad Ben"]]
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''C:''' Ben Tennyson (Action Packs)]]
</gallery></center>
:: ''Any major versions of the topic should go here. Here are some rules:''
:: '''A:''' ''If a version is exclusive to an episode or specific series, simply put the series/episode title ITALICIZED next to the topic. If the year is listed with the series/episode title, it should not be italicized. The year should '''only''' be added if there are multiple series/episodes with the name name, such as with the original series and the reboot.''
:: '''B:''' ''When the name of the topic is a nickname '''outside the continuity of official material''', put it in quotation marks.''
:: '''C:''' ''Don't know what to do? When all else fails, just put the name of the article!''
:: ''Sometimes this whole section may be unnecessary. If there are '''three or less''' important versions of the topic, put them in the section above this and leave this section off.''
{{-}}
==Full List of ''the Article''==
* [[Ben Tennyson (Prime)]], the main Ben followed throughout the events of ''[[Ben 10 (2005}]], [[Ben 10: Alien Force]], [[Ben 10: Ultimate Alien]], and [[Ben 10: Omniverse]]''.
:: ''Place links, with short a short description, to every version of the article's topic.'' '''''Repeat ones that were linked earlier in the article.'''''
{{-}}
==Media Referencing ''the Article''==
* [[Ghostfreaked Out]]
* [[Something Zombozo This Way Comes]]
:: ''Link to some articles of other topics that are '''named after''' the topic of the main article.''
:: ''Sometimes this section may be unnecessary, such as when the topic isn't referenced in the titles of '''any''' media. In these cases, leave this section off entirely.''
{{-}}
==See Also==
* [[Omnitrix]]
* [[Ultimatrix]]
* [[Ben Tennyson]]
:: ''Put some links to similar articles that '''weren't''' mentioned elsewhere in the article.''
:: ''This section can be left off for smaller topics and shorter articles, but add it whenever possible.''
{{-}}
e580686a693c7bb48af29c2a753f75f145a4919e
2022
2021
2022-04-24T10:17:21Z
Jaswacker
30585766
/* Major Versions of the Article */
wikitext
text/x-wiki
{{trix|auu}}
{{Disambig}}
A short, eye-catching description of the topic is always good. Don't get carried away though! Keep it about 2-3 sentences and informative, but vague enough to apply to the topic as a whole.
[[File:attwn.png|thumb|right|A good, relevant image should go with disambiguation articles for major topics. Get creative with the caption!]]
{{quote|text = Quote's should be used sparingly, but they might spice up an article for a major character!|origin = [[Rad Dudesman]]}}
__TOC__
{{-}}
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''1:''' Kevin Levin]]<br><hr>''[[Main Page|Toys]] • [[Main Page|Merchandise]]''
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''2:''' ''Vilgax Attacks'' Albedo]]
</gallery></center>
: ''These links should be '''the most important, most recognizable''' versions of the topic. Here are some additional rules:''
: '''1:''' ''For major topics, put quick links to the toys and merchandise pages for the article like this.''
: '''2:''' ''However, if the article itself '''doesn't have toys/merchandise pages''', then simply leave it off.''
{{-}}
==Major Versions of ''the Article''==
<center><gallery widths="200px" heights="250px">
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''A:''' ''Ben 10'' (2005) Gwen Tennyson]]
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''B:''' "Mad Ben"]]
File:PLACEHOLDER2.png|link=[[Main Page]]|[[Main Page|'''C:''' Ben Tennyson (Action Packs)]]
</gallery></center>
:: ''Any major versions of the topic should go here. Here are some rules:''
:: '''A:''' ''If a version is exclusive to an episode or specific series, simply put the series/episode title ITALICIZED next to the topic. If the year is listed with the series/episode title, it should not be italicized. The year should '''only''' be added if there are multiple series/episodes with the name name, such as with the original series and the reboot.''
:: '''B:''' ''When the name of the topic is a nickname '''outside the continuity of official material''', put it in quotation marks.''
:: '''C:''' ''Don't know what to do? When all else fails, just put the name of the article!''
:: ''Sometimes this whole section may be unnecessary. If there are '''three or less''' important versions of the topic, put them in the section above this and leave this section off.''
{{-}}
==Full List of ''the Article''==
* [[Ben Tennyson (Prime)]], the main Ben followed throughout the events of ''[[Ben 10 (2005}]], [[Ben 10: Alien Force]], [[Ben 10: Ultimate Alien]], and [[Ben 10: Omniverse]]''.
:: ''Place links, with short a short description, to every version of the article's topic.'' '''''Repeat ones that were linked earlier in the article.'''''
{{-}}
==Media Referencing ''the Article''==
* [[Ghostfreaked Out]]
* [[Something Zombozo This Way Comes]]
:: ''Link to some articles of other topics that are '''named after''' the topic of the main article.''
:: ''Sometimes this section may be unnecessary, such as when the topic isn't referenced in the titles of '''any''' media. In these cases, leave this section off entirely.''
{{-}}
==See Also==
* [[Omnitrix]]
* [[Ultimatrix]]
* [[Ben Tennyson]]
:: ''Put some links to similar articles that '''weren't''' mentioned elsewhere in the article.''
:: ''This section can be left off for smaller topics and shorter articles, but add it whenever possible.''
{{-}}
61d89c676a956aa62339a4f56f8bdf6b28c70be5
Category:Characters
14
529
2023
2022-04-24T10:18:22Z
Jaswacker
30585766
Created blank page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Category:Heroes
14
530
2024
2022-04-24T10:18:34Z
Jaswacker
30585766
Created blank page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Ben Tennyson (Reboot)
0
182
2025
2013
2022-04-24T10:24:34Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Prime)|Ben Tennyson (Disambiguation)|Ben 10,000 (Disambiguation)}}
{{charbox
|image={{tabs|{{tab2||c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>test<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Reboot)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Reboot)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=Placeholder
|last=Placeholder
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|text=Adipiscing elit duis tristique sollicitudin nibh sit amet.|origin=John Doe}}
__TOC__
{{-}}
== History ==
events of the show, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2016) ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Reboot Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Introduced in the Reboot]]
[[Category:Bellwood Residents]]
</noinclude>
b0ba73c2c7479521342d17755b73455b4a0b0983
Template:Quote
10
85
2026
1827
2022-04-24T22:25:33Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| align="center" style="border: 1px solid #fff; margin-left:auto;margin-right:auto; border-radius:5px; padding-right: 10px;{{#if: {{{bgcolor|}}}|border: 1px solid #fff;}}" class="cquote"
| align="center" width="15" valign="middle" style="color:#02b70c; font-size:25px; font-family:'Nunito', serif; font-weight:bold; text-align:left; padding:1px;" | “
| align="center" valign="bottom" style="font-family:Nunito, sans-serif; padding:2px; font-size:12px; text-align:center;" |
{{{1|{{{1|}}}}}}
| align="center" width="15" valign="middle" style="color:#02b70c; font-size:25px; font-family:'Nunito', serif; font-weight:bold; text-align:right; padding:0em; margin:0em -5em 0em 0em" | ”
|-
{{#if:{{{2|{{{2|}}}}}}|
{{!}} colspan="3" style="line-height: .2; font-family:Nunito, sans-serif; font-size:12px; text-align:right;"{{!}}<cite style="font-size:normal; text-align:right;">'''— '''{{{2|{{{2}}}}}}</cite>
}}
|}
</includeonly><noinclude>
== Example usage ==
'''Quoted text only''':
<pre>{{Quote
|Sometimes when I close my eyes, I can't see.}}</pre>
result:
{{Quote
|Sometimes when I close my eyes, I can't see.}}
'''Quoted text with origin''':
<pre>{{Quote
|Uh, one of my balls fell off.
|[[Humungousaur]] in [[Video Games (episode)|Video Games]]}}</pre>
result:
{{Quote
|Uh, one of my balls fell off.
|[[Humungousaur]] in [[Video Games (episode)|Video Games]]}}
[[Category:Templates]]</noinclude>
09338cef83b8fb48abc8984da572904c6cb7cb70
Ben Tennyson (Disambiguation)
0
24
2027
1999
2022-04-24T22:29:39Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
[[File:attwn.png|thumb|right|The gang's all here!]]
{{quote|Alien or not, I'm still the hero.|[[Ben Tennyson (Omniverse Video Game)|Ben]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''[[Ben Tennyson (Prime)/Toys|Toys]] • [[Ben Tennyson (Prime)/Merchandise|Merchandise]]''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''[[Ben Tennyson (Reboot)/Toys|Toys]] • [[Ben Tennyson (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:RB10k.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:c.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|"Bad Ben"]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|"Benzarro"]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|"Mad Ben"]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|"Nega Ben"]]
File:c.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:c.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:c.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:c.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* [[Ben Tennyson (Prime)]]
* [[Ben Tennyson (Reboot)]]
* [[Ben 10,000 (Original Series)]]
* [[Ultimate Ben]] transformation
* [[Ben 10,000 (Ultimate Alien)]]
* [[Eon (Ultimate Alien)]]
* [[Eon (Omniverse)]]
* [[Ben 10,000 (Omniverse)]]
* [[Ben 10,000 (Reboot)]]
* [[Ben Tennyson (Evil Dimension)]]
* [[Ben Tennyson (Race Against Time)]]
* [[Ben Tennyson (Alien Swarm)]]
* [[Ben Tennyson (Dimension 23)]]
* [[Ben Tennyson (No-Watch Dimension)]]
* [[Ben Tennyson (Bad Dimension)]]
* [[Ben Tennyson (Negaverse)]]
* [[Ben Tennyson (Madworld)]]
* [[Ben Tennyson (Zombiverse)]]
* [[Ben Tennyson (Original Series Dimension)]]
* [[Ben Tennyson (Ultimate Alien Dimension)]]
* [[Ben Tennyson (Alien Force Dimension)]]
* [[Ben Tennyson (Omniverse Dimension)]]
* [[Ben Tennyson (Dimension 12041.5)]] Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction''
* [[Ben Tennyson (Maximillian's Dimension)]] Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction''
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters#Evil Ben's Victims|Evil Ben's Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run based on Omniverse, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Ben 10 Franklin]]'', see [[Benjamin Franklin#Ben 10 Franklin|Benjamin Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Cowboys and Alien Force]]'', see [[Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
* [[Ben Tennyson (Hyperscan)]] game
* [[Ben Tennyson (Prime)|Ben Tennyson (Alien Force Video Game)]] canon to Prime, placed in this list temporarily so we don't forget about it
* [[Ben Tennyson (Omniverse Video Game)]] refers to the alternate timeline made in the game. the events of Omniverse 2 are canon.
* [[Ben Tennyson (Reboot Video Game)]] game, may be canon to the reboot or to the other reboot game(s)
* [[Ben Tennyson (Power Trip)]] game, may be canon to the reboot or to the other reboot game(s)
* [[Ben Tennyson (Galactic Racing)]] game. likely not canon.
* [[Ben Tennyson (Classics)]] comics
* [[Ben Tennyson (Perfect Square)]] comics
* [[Ben Tennyson (Leapfrog)]] AF storybook, two UA learning games
* [[Ben Tennyson (Del Rey)]] manga
* [[Ben Tennyson (BOOM! Studios)]] comics
* [[Ben Tennyson (Bandai Comics)]] comics
* [[Ben Tennyson (Alien Race)]] game. Might be canon. Might not have any story implications at all (in that case, this article is not needed)
* [[Ben Tennyson (Wrath of Psychobos)]] game. Might be canon to prime, might not.
* [[Ben Tennyson (JoongAng MB Jr)]] korean comics (science hero and exploring hero)
* [[Ben Tennyson (Fuel Run)]] game
* [[Ben Tennyson (V-Tech)]] mobigo kids learning game called "Ben 10: Ultimate Alien: Mind Mine"
* [[Ben Tennyson (Storybooks)]] picture books made that adapted episodes of UAF
* [[Ben Tennyson (Scholastic)]] chapter books published by scholastic of original stories set during UAF
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* [[Omnitrix (Disambiguation)]]
* [[Omnitrix Wielders]]
* [[Albedo]]
* [[Kenny Tennyson (Disambiguation)]]
* [[Kevin Levin (Reboot)]]
* [[Gwen 10 (Disambiguation)]]
* [[Max Tennyson (Gwen 10)]]
* [[Argit (Argitrix Dimension)]]
* [[Timothy|Tim 10]]
{{-}}
c0e2ca24dae9f6a923504403f73061d2e51fdbf5
Template:Subsuite
10
500
2028
1828
2022-04-24T22:36:26Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><center>
{| cellspacing="0" style="{{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;text-align:right;" |<div style="padding:.5em; background-color:#{{{bgcolor|efefff}}}; border:solid 1px #{{{border|9f9fff}}};text-align:{{{justification|center}}};margin:auto;display:table;width:100%">{{#if: {{{image_name|}}} |
[[Image:{{{image_name|}}}|left{{ #if: {{{image_width|}}}|{{!}}{{{image_width|}}}px|}}{{ #if: {{{mouseover|}}} |{{!}}{{{mouseover|}}}|}}]] | }}
<div style="display:table-cell;vertical-align:middle;width:100%">{{ #if: {{{header|}}} |<span style="font-size:125%;font-weight:900;">{{{header|}}}</span><hr/>|}}
{{{message_text|Your message text goes here. Generally speaking, you should have more than 1 line of text in order to force the thing to lay out correctly.}}}
{{ #if: {{{talkpage|}}}|<small>{{ #if: {{{talkSameLine|}}}| |<br/>}}{{{talkpage|}}} [[:{{TALKPAGENAME}}{{!}}talk page]].</small>|}}</div>
<div style="clear: both"></div>
</div>{{#if: {{{bottomtext|}}}|<small>{{{bottomtext|}}}</small>|}}
|}
</center>{{ #if: {{{noCats|}}}||{{{categories|}}}}}</includeonly><noinclude>
{{subsuite|
|message_text=test
|header=test 2
||
[[Category:Templates]]</noinclude>
4c1cbe96bf3466a55144de818c4ece05e11eafa6
Template:Buzz
10
531
2029
2022-04-24T23:11:05Z
Jaswacker
30585766
Created page with "<div style="margin-top: -1.1em; width: 310px; text-align: center; display:flex; float:right;"><div style="background-color:#cfd0d7; border: 1px solid #3d3e4c; padding: 5px; wi..."
wikitext
text/x-wiki
<div style="margin-top: -1.1em; width: 310px; text-align: center; display:flex; float:right;"><div style="background-color:#cfd0d7; border: 1px solid #3d3e4c; padding: 5px; width: 100%; text-align: center; border-radius:1px 1px 5px 5px;">
[[{{PAGENAME}}/{{{1}}}|{{{1}}}]] - [[{{PAGENAME}}/{{{2}}}|{{{2}}}]] - [[{{PAGENAME}}/{{{3}}}|{{{3}}}]] - [[{{PAGENAME}}/{{{4}}}|{{{4}}}]]</div>
{{test|yeah|okay|yes}}
6aa36629bb3a248a803e5bbecb8c7da4d1a1a145
2030
2029
2022-04-24T23:11:15Z
Jaswacker
30585766
Jaswacker moved page [[Test]] to [[Template:Test]]
wikitext
text/x-wiki
<div style="margin-top: -1.1em; width: 310px; text-align: center; display:flex; float:right;"><div style="background-color:#cfd0d7; border: 1px solid #3d3e4c; padding: 5px; width: 100%; text-align: center; border-radius:1px 1px 5px 5px;">
[[{{PAGENAME}}/{{{1}}}|{{{1}}}]] - [[{{PAGENAME}}/{{{2}}}|{{{2}}}]] - [[{{PAGENAME}}/{{{3}}}|{{{3}}}]] - [[{{PAGENAME}}/{{{4}}}|{{{4}}}]]</div>
{{test|yeah|okay|yes}}
6aa36629bb3a248a803e5bbecb8c7da4d1a1a145
2032
2030
2022-04-24T23:33:24Z
Jaswacker
30585766
wikitext
text/x-wiki
<div style="margin-top: -1.1em; width: 310px; text-align: center; margin-right:.9em;"><div style="background-color:#cfd0d7; border: 1px solid #3d3e4c; padding: 5px; width: 100%; text-align: center; border-radius:1px 1px 5px 5px;">
[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]
</div>
<pre>
{{buzz|page title|link 1|link 2|link 3}}
</pre>
random text testing
8254c7d8fbbdd27975ff27c07a1fd821d9393a15
2033
2032
2022-04-24T23:41:15Z
Jaswacker
30585766
wikitext
text/x-wiki
<div style="margin-top: -1.1em; width: 310px; text-align: center; margin-right:.9em;"><div style="background-color:#cfd0d7; border: 1px solid #3d3e4c; padding: 5px; width: 100%; text-align: center; border-radius:1px 1px 5px 5px; display:flex; float:right;">
[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]
</div>
<pre>
{{buzz|page title|link 1|link 2|link 3}}
</pre>
random text testing
b43b0296b8ef447e6c1fb851ed86484c65f5e02e
2034
2033
2022-04-24T23:41:29Z
Jaswacker
30585766
wikitext
text/x-wiki
<div style="margin-top: -1.1em; width: 310px; text-align: center; margin-right:.9em; display:flex; float:right;"><div style="background-color:#cfd0d7; border: 1px solid #3d3e4c; padding: 5px; width: 100%; text-align: center; border-radius:1px 1px 5px 5px;">
[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]
</div>
<pre>
{{buzz|page title|link 1|link 2|link 3}}
</pre>
random text testing
1bf6bb2581bdee424b2bf83a22d570d9453e0baa
2035
2034
2022-04-24T23:41:40Z
Jaswacker
30585766
wikitext
text/x-wiki
<div style="margin-top: -1.1em; width: 310px; text-align: center; margin-right:.9em; display:inline-block; float:right;"><div style="background-color:#cfd0d7; border: 1px solid #3d3e4c; padding: 5px; width: 100%; text-align: center; border-radius:1px 1px 5px 5px;">
[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]
</div>
<pre>
{{buzz|page title|link 1|link 2|link 3}}
</pre>
random text testing
4d5be820a5709735ab2d99ef1fdcd9d0331d048e
2042
2035
2022-04-25T00:58:08Z
Jaswacker
30585766
wikitext
text/x-wiki
{| cellspacing="0" style="display: flex; float: right; margin-right: .1em; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em; text-align:center;" |<div style="padding:.5em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.1em;">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
<div style="margin-top: -1.1em; width: 310px; text-align: center; margin-right:.9em;"><div style="background-color:#cfd0d7; border: 1px solid #3d3e4c; padding: 5px; width: 100%; text-align: center; border-radius:1px 1px 5px 5px;">
[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]
</div>
<pre>
{{buzz|page title|link 1|link 2|link 3}}
</pre>
random text testing
{{charbox}}
9d8dcd14b8cbc6f133622dde09aace0fc6d53962
2043
2042
2022-04-25T00:58:26Z
Jaswacker
30585766
wikitext
text/x-wiki
{| cellspacing="0" style="display: flex; float: right; margin-right: .1em; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em; text-align:center;" |<div style="padding:.5em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.1em;">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
<div style="margin-top: -1.2em; width: 310px; text-align: center; margin-right:.9em;"><div style="background-color:#cfd0d7; border: 1px solid #3d3e4c; padding: 5px; width: 100%; text-align: center; border-radius:1px 1px 5px 5px;">
[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]
</div>
<pre>
{{buzz|page title|link 1|link 2|link 3}}
</pre>
random text testing
{{charbox}}
2bd2f78686d9ed1b96ebcb6bf5c72b06eab58e48
2044
2043
2022-04-25T00:58:42Z
Jaswacker
30585766
wikitext
text/x-wiki
{| cellspacing="0" style="display: flex; float: right; margin-right: .1em; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em; text-align:center;" |<div style="padding:.5em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.2em;">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
<div style="margin-top: -1.em; width: 310px; text-align: center; margin-right:.9em;"><div style="background-color:#cfd0d7; border: 1px solid #3d3e4c; padding: 5px; width: 100%; text-align: center; border-radius:1px 1px 5px 5px;">
[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]
</div>
<pre>
{{buzz|page title|link 1|link 2|link 3}}
</pre>
random text testing
{{charbox}}
09bae9bcfdabd9167ff6e32bb2405f6e88179006
2045
2044
2022-04-25T00:59:00Z
Jaswacker
30585766
wikitext
text/x-wiki
{| cellspacing="0" style="display: flex; float: right; margin-right: .1em; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em; text-align:center;" |<div style="padding:.5em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.2em;">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
<div style="margin-top: -1.1em; width: 310px; text-align: center; margin-right:.9em;"><div style="background-color:#cfd0d7; border: 1px solid #3d3e4c; padding: 5px; width: 100%; text-align: center; border-radius:1px 1px 5px 5px;">
[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]
</div>
<pre>
{{buzz|page title|link 1|link 2|link 3}}
</pre>
random text testing
{{stub}}
1928f19f1bfc411b5b1ffe562882e23145beeacc
2046
2045
2022-04-25T01:04:21Z
Jaswacker
30585766
wikitext
text/x-wiki
{| cellspacing="0" style="display: flex; float: right; margin-right: .1em; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em; text-align:center;" |<div style="padding:.5em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.2em;">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="float: none!important; clear: both;"></div>
<div style="float: none!important; clear: both;"></div>
<div style="margin-top: -1.1em; width: 310px; text-align: center; margin-right:.9em;"><div style="background-color:#cfd0d7; border: 1px solid #3d3e4c; padding: 5px; width: 100%; text-align: center; border-radius:1px 1px 5px 5px;">
[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]
</div>
<pre>
{{buzz|page title|link 1|link 2|link 3}}
</pre>
random text testing
{{stub}}
76dd2adfb22b13c9df1d4a502872fb68682b0da3
2047
2046
2022-04-25T01:04:31Z
Jaswacker
30585766
wikitext
text/x-wiki
{| cellspacing="0" style="display: flex; float: right; margin-right: .1em; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em; text-align:center;" |<div style="padding:.5em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.2em;">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="float: none!important; clear: both;"></div>
{{-}}
<div style="float: none!important; clear: both;"></div>
<div style="margin-top: -1.1em; width: 310px; text-align: center; margin-right:.9em;"><div style="background-color:#cfd0d7; border: 1px solid #3d3e4c; padding: 5px; width: 100%; text-align: center; border-radius:1px 1px 5px 5px;">
[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]
</div>
<pre>
{{buzz|page title|link 1|link 2|link 3}}
</pre>
random text testing
{{stub}}
8bdc20367acce9ee3e691f429b609516f7a91840
2048
2047
2022-04-25T01:04:43Z
Jaswacker
30585766
wikitext
text/x-wiki
{| cellspacing="0" style="display: flex; float: right; margin-right: .1em; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em; text-align:center;" |<div style="padding:.5em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.2em;">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="float: none!important; clear: both;"></div>
<div style="margin-top: -1.1em; width: 310px; text-align: center; margin-right:.9em;"><div style="background-color:#cfd0d7; border: 1px solid #3d3e4c; padding: 5px; width: 100%; text-align: center; border-radius:1px 1px 5px 5px;">
[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]
</div>
<pre>
{{buzz|page title|link 1|link 2|link 3}}
</pre>
random text testing
{{stub}}
3825f12ba51bbfdf32b0d0766dbb2bb466d122b7
2049
2048
2022-04-25T01:07:02Z
Jaswacker
30585766
wikitext
text/x-wiki
{| cellspacing="0" style="display: flex; justify-content:flex-end; margin-left:auto; margin-right: .1em; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em; text-align:center;" |<div style="padding:.5em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.2em;">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="float: none!important; clear: both;"></div>
<div style="margin-top: -1.1em; width: 310px; text-align: center; margin-right:.9em;"><div style="background-color:#cfd0d7; border: 1px solid #3d3e4c; padding: 5px; width: 100%; text-align: center; border-radius:1px 1px 5px 5px;">
[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]
</div>
<pre>
{{buzz|page title|link 1|link 2|link 3}}
</pre>
random text testing
{{stub}}
2f6a48f22092d17eddd6ef39bfc1cb5e35ec2a8a
2050
2049
2022-04-25T01:09:54Z
Jaswacker
30585766
wikitext
text/x-wiki
{| cellspacing="0" style="margin-left:auto; margin-right: .1em; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em; text-align:center;" |<div style="padding:.5em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.2em; display: flex; justify-content:right;">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
c7c048bcf25bdb9cd3cd2cb2b3856e4b65a63ba7
2051
2050
2022-04-25T01:10:06Z
Jaswacker
30585766
Jaswacker moved page [[Template:Test]] to [[Template:Buzz]]
wikitext
text/x-wiki
{| cellspacing="0" style="margin-left:auto; margin-right: .1em; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em; text-align:center;" |<div style="padding:.5em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.2em; display: flex; justify-content:right;">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
c7c048bcf25bdb9cd3cd2cb2b3856e4b65a63ba7
2056
2051
2022-04-25T01:14:16Z
Jaswacker
30585766
wikitext
text/x-wiki
{| cellspacing="0" style="margin-left:auto; margin-right: .1em; width:{{{w|{{{w|}}}}}};"
|-
| style="padding:0 1em 0 1em; text-align:center;" |<div style="padding:.2em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.2em; display: flex; justify-content:right;">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
6294b1b811777bd2bcf6bebe76de1bf536314edd
2058
2056
2022-04-25T01:14:56Z
Jaswacker
30585766
wikitext
text/x-wiki
{| cellspacing="0" style="margin-left:auto; margin-right: 1em; width:{{{w|{{{w|}}}}}};"
|-
| style="padding:0 1em 0 1em; text-align:center;" |<div style="padding:.2em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.2em; display: flex; justify-content:right;">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
0f6eb1d45c03e7379adb7fe4264f3b2133d514a6
2059
2058
2022-04-25T01:16:00Z
Jaswacker
30585766
wikitext
text/x-wiki
{| cellspacing="0" style="margin-left:auto; margin-right: 1em; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em; text-align:center;" |<div style="padding:.5em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.2em; display: flex; justify-content:right;">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
2c02259bb47fc6cba62db9af893907e55a63a850
2061
2059
2022-04-25T01:16:34Z
Jaswacker
30585766
wikitext
text/x-wiki
{| cellspacing="0" style="display:flex; margin-left:auto; margin-right: 1em; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em; text-align:center;" |<div style="padding:.5em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.2em; display: flex; justify-content:right;">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
16b39f14e50441d48c873424a5352d41615b1780
2062
2061
2022-04-25T01:17:01Z
Jaswacker
30585766
wikitext
text/x-wiki
{| cellspacing="0" style="margin-left:auto; margin-right: 1em; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em; text-align:center;" |<div style="padding:.5em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.2em; display: flex;">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
aebdba3e0770dbad3e70684ec34115cb5f5c7d90
2063
2062
2022-04-25T01:17:19Z
Jaswacker
30585766
wikitext
text/x-wiki
{| cellspacing="0" style="margin-right: 1em; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em; text-align:center;" |<div style="padding:.5em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.2em; display: flex; float:right;">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
dae58dcd3d7d33fbbfa68eeb0143c9e57e2078e3
2064
2063
2022-04-25T01:17:46Z
Jaswacker
30585766
wikitext
text/x-wiki
{| cellspacing="0" style="display: flex; float: right; margin-right: .1em; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em; text-align:center;" |<div style="padding:.5em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.1em;">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
1fd7fa1e8fc9aa1da9f2d0ccbfc060c8e8d57018
Greenfield:Sandbox
0
532
2031
2022-04-24T23:11:15Z
Jaswacker
30585766
Jaswacker moved page [[Test]] to [[Template:Test]]
wikitext
text/x-wiki
#REDIRECT [[Template:Test]]
ce8c50fba643e734657362970fc506dd113083c5
2053
2031
2022-04-25T01:10:42Z
Jaswacker
30585766
Removed redirect to [[Template:Test]]
wikitext
text/x-wiki
{{buzz|1|2|3|4}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
e06e4eac5a4cb15dea38dd378a94d0cb206a98a2
2054
2053
2022-04-25T01:11:04Z
Jaswacker
30585766
wikitext
text/x-wiki
{{buzz|1|2|3|4|width:309px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
014e67b4eddaf0ba76001a4062c618001b250669
2055
2054
2022-04-25T01:13:11Z
Jaswacker
30585766
wikitext
text/x-wiki
{{buzz|1|2|3|4|width=309px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
e2a379bfae0fba0dd2414f2c4ed83d40cfec0267
2057
2055
2022-04-25T01:14:20Z
Jaswacker
30585766
wikitext
text/x-wiki
{{buzz|Test|Toys|Merchandise|Story|w=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
1fb8e26350a4e90ebca626595fbe43959127ae44
2060
2057
2022-04-25T01:16:09Z
Jaswacker
30585766
wikitext
text/x-wiki
{{buzz|Test|Toys|Merchandise|Story|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
8af179f0d1db3808f8bc1ee0f33122ec5d11edcf
Template:Disambigm
10
495
2036
1822
2022-04-25T00:02:03Z
Jaswacker
30585766
wikitext
text/x-wiki
{| style="margin:0 .1em; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:block;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This subject of this article goes by multiple names that apply to other articles as well. See [[{{{1}}}]]{{#if:{{{2|}}}|, [[{{{2}}}]]|}}{{#if:{{{3|}}}|, [[{{{3}}}]]|}}{{#if:{{{4|}}}|, [[{{{4}}}]]|}}{{#if:{{{5|}}}|, [[{{{5}}}]]|}}{{#if:{{{6|}}}|, [[{{{6}}}]]|}}{{#if:{{{7|}}}|, [[{{{7}}}]]|}}{{#if:{{{8|}}}|, [[{{{8}}}]]|}}{{#if:{{{9|}}}|, [[{{{9}}}]]|}}{{#if:{{{10|}}}|, [[{{{10}}}]]|}}.''
|}<noinclude>{{doc}}[[Category:Disambiguation templates|M]]</noinclude>
3de2338e016316bc64306e8490980133acd91e40
2037
2036
2022-04-25T00:02:48Z
Jaswacker
30585766
wikitext
text/x-wiki
{| style="margin:0 .1em; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:flex;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This subject of this article goes by multiple names that apply to other articles as well. See [[{{{1}}}]]{{#if:{{{2|}}}|, [[{{{2}}}]]|}}{{#if:{{{3|}}}|, [[{{{3}}}]]|}}{{#if:{{{4|}}}|, [[{{{4}}}]]|}}{{#if:{{{5|}}}|, [[{{{5}}}]]|}}{{#if:{{{6|}}}|, [[{{{6}}}]]|}}{{#if:{{{7|}}}|, [[{{{7}}}]]|}}{{#if:{{{8|}}}|, [[{{{8}}}]]|}}{{#if:{{{9|}}}|, [[{{{9}}}]]|}}{{#if:{{{10|}}}|, [[{{{10}}}]]|}}.''
|}<noinclude>{{doc}}[[Category:Disambiguation templates|M]]</noinclude>
88df6f8d749371cb6d405a1cbf32b1bfdd4c59bb
Template:Test
10
533
2052
2022-04-25T01:10:06Z
Jaswacker
30585766
Jaswacker moved page [[Template:Test]] to [[Template:Buzz]]
wikitext
text/x-wiki
#REDIRECT [[Template:Buzz]]
9e55e9d715289982d3e2e22f3ff4d4685f754ef5
Template:Buzz
10
531
2065
2064
2022-04-25T01:18:33Z
Jaswacker
30585766
wikitext
text/x-wiki
{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em; text-align:center;" |<div style="padding:.5em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.2em;">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
3b1a3da649d4dbeaeb23b6eb8bd602fb71f29007
2068
2065
2022-04-25T01:19:36Z
Jaswacker
30585766
wikitext
text/x-wiki
{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em; text-align:center; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}" |<div style="padding:.5em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.2em;">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
0289f5199013909497fbcb4efd693d8ad6acf18d
2070
2068
2022-04-25T01:20:36Z
Jaswacker
30585766
wikitext
text/x-wiki
{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em; text-align:center;" |<div style="padding:.5em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.2em; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
e3e574054e4baf0311e0eef12e55625eed2006e5
2071
2070
2022-04-25T01:21:17Z
Jaswacker
30585766
wikitext
text/x-wiki
{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em; text-align:h;" |<div style="padding:.5em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.2em; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
181eab0a906de4102389e092ec450c68c411c16b
2072
2071
2022-04-25T01:21:47Z
Jaswacker
30585766
wikitext
text/x-wiki
{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.5em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.2em; text-align:center; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
1ca96d608c4d605c821637fd7cb7e01fdb03bc46
2074
2072
2022-04-25T01:22:35Z
Jaswacker
30585766
wikitext
text/x-wiki
{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.5em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.2em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
251686988c07ce3bd864af337f5eaff88d5bd950
2075
2074
2022-04-25T01:22:59Z
Jaswacker
30585766
wikitext
text/x-wiki
{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.2em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
c4049dc8247155d40366951ca2defb77f5bb1316
2077
2075
2022-04-25T01:25:18Z
Jaswacker
30585766
wikitext
text/x-wiki
{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -2.2em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
321c55a09ed4b627cfee92d3b873314f23e039a1
2078
2077
2022-04-25T01:27:16Z
Jaswacker
30585766
wikitext
text/x-wiki
{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -3em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
a8e0514aae84f7adbec8ad4be2957ce084c2cf06
2080
2078
2022-04-25T01:29:22Z
Jaswacker
30585766
wikitext
text/x-wiki
{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -2.9em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
<p>
{{buzz|title|link|link|link}}
</p>
<noinclude>[[Category:Templates]]</noinclude>
69e75814301611c559806f89f21430bb9ae95ee9
2081
2080
2022-04-25T01:29:36Z
Jaswacker
30585766
wikitext
text/x-wiki
{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -2.9em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
<pre>
{{buzz|title|link|link|link}}
</pre>
<noinclude>[[Category:Templates]]</noinclude>
8335fada1ee47371dad46aae586063a412c54205
2082
2081
2022-04-25T01:30:18Z
Jaswacker
30585766
wikitext
text/x-wiki
{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -2.9em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''with a disambig header''' and '''4 links including the main page'''
<noinclude>[[Category:Templates]]</noinclude>
61a2ad3834fba1381618acf1a11690f30b287078
2083
2082
2022-04-25T01:30:37Z
Jaswacker
30585766
wikitext
text/x-wiki
{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -2.9em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]]</div>
<div style="clear: both;"></div>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''with a disambig header''' and '''3 links including the main page'''
<noinclude>[[Category:Templates]]</noinclude>
51c9cc3ca6e447cacc2becf1e765dcfb68136b05
2088
2083
2022-04-25T01:32:33Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.2em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]]</div>
<div style="clear: both;"></div>
</includeonly>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''with a disambig header''' and '''3 links including the main page'''
<noinclude>[[Category:Templates]]</noinclude>
c618d701e84d9c55cb3cb75fb051a0afc5a100cc
2090
2088
2022-04-25T01:33:09Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.2em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]]</div>
<div style="clear: both;"></div>
</includeonly>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''without a disambig header''' and '''3 links including the main page'''
<noinclude>[[Category:Templates]]</noinclude>
d5135c6e0601eea151f06062b46dea2144fc48ee
2092
2090
2022-04-25T01:34:17Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.2em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''without a disambig header''' and '''3 links including the main page'''
[[Category:Templates]]</noinclude>
6b2d366e97b7b0c0282c5b3638ce44b8bd65603f
2099
2092
2022-04-25T01:37:07Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.2em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''without a disambig header''' and '''3 links including the main page'''
[[Category:Templates]][[Category:Buzzer_Templates]]</noinclude>
74014ebd461a9ba0c52fb38b867391b0f7e0246f
Greenfield:Sandbox
0
532
2066
2060
2022-04-25T01:18:42Z
Jaswacker
30585766
wikitext
text/x-wiki
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
0032ef45f2f853d75aeaa11a21669750d096ff50
2067
2066
2022-04-25T01:18:54Z
Jaswacker
30585766
wikitext
text/x-wiki
{{buzz|Test|Toys|Merchandise|Story|width=800px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
ca0e990a643a7d61c768a355112e51325ff7a0f1
2069
2067
2022-04-25T01:19:41Z
Jaswacker
30585766
wikitext
text/x-wiki
{{buzz|Test|Toys|Merchandise|Story|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
8af179f0d1db3808f8bc1ee0f33122ec5d11edcf
2073
2069
2022-04-25T01:22:08Z
Jaswacker
30585766
wikitext
text/x-wiki
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
0032ef45f2f853d75aeaa11a21669750d096ff50
2076
2073
2022-04-25T01:23:38Z
Jaswacker
30585766
wikitext
text/x-wiki
{{disambig}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
e69315eac4ffa4e4f14957d173f5ff7b879cc8f5
2079
2076
2022-04-25T01:27:20Z
Jaswacker
30585766
wikitext
text/x-wiki
{{disambig}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
<small></small>
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
4509c89d4b7b02f010d8a39c92cfd32fee799fca
2087
2079
2022-04-25T01:31:56Z
Jaswacker
30585766
wikitext
text/x-wiki
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
<small></small>
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
33b2fc9c4eab6f7117afbb677c12d455d9c0f911
2096
2087
2022-04-25T01:35:51Z
Jaswacker
30585766
wikitext
text/x-wiki
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
<small></small>
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
93ab06711dfaea688a835725d3c9eeaf1fff0878
2097
2096
2022-04-25T01:36:11Z
Jaswacker
30585766
wikitext
text/x-wiki
{{disambig}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
<small></small>
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
66bcbd87eccd0be539a943b02287266e6df609f9
2098
2097
2022-04-25T01:36:23Z
Jaswacker
30585766
wikitext
text/x-wiki
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
<small></small>
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
93ab06711dfaea688a835725d3c9eeaf1fff0878
2109
2098
2022-04-25T01:41:55Z
Jaswacker
30585766
wikitext
text/x-wiki
{{disambigm}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
<small></small>
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
87cb9d80da908211c23895ac3ea27da8f52b4cee
2110
2109
2022-04-25T01:42:04Z
Jaswacker
30585766
wikitext
text/x-wiki
{{disambig}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
<small></small>
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
4509c89d4b7b02f010d8a39c92cfd32fee799fca
2111
2110
2022-04-25T01:42:25Z
Jaswacker
30585766
wikitext
text/x-wiki
{{disambig}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
e69315eac4ffa4e4f14957d173f5ff7b879cc8f5
2112
2111
2022-04-25T01:43:43Z
Jaswacker
30585766
wikitext
text/x-wiki
{{disambigm}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
3c5c2dc8dd8a1ece46f23100da883345ba824107
2113
2112
2022-04-25T01:43:57Z
Jaswacker
30585766
wikitext
text/x-wiki
{{disambig}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
e69315eac4ffa4e4f14957d173f5ff7b879cc8f5
Template:Buzzb
10
534
2084
2022-04-25T01:31:05Z
Jaswacker
30585766
Created page with "{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}} |- | style="padding:0 1em 0 1em;" |<div s..."
wikitext
text/x-wiki
{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -2.9em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]]</div>
<div style="clear: both;"></div>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''without a disambig header''' and '''3 links including the main page'''
<noinclude>[[Category:Templates]]</noinclude>
1b8f035acfe2b12b676498e821876e5930ad9fb9
2089
2084
2022-04-25T01:32:58Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -2.9em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]]</div>
<div style="clear: both;"></div>
</includeonly>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''with a disambig header''' and '''3 links including the main page'''
<noinclude>[[Category:Templates]]</noinclude>
068fdfc5ec6f6b2d9386845ad42f5bbb06f450b7
2091
2089
2022-04-25T01:34:15Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -2.9em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''with a disambig header''' and '''3 links including the main page'''
[[Category:Templates]]</noinclude>
9e6901088c08d5efa6f3685435b203bb2b970602
2100
2091
2022-04-25T01:37:14Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -2.9em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''with a disambig header''' and '''3 links including the main page'''
[[Category:Templates]][[Category:Buzzer_Templates]]</noinclude>
e7826828298bb4e40c1e6112f61b422221e2efe6
Template:Buzz4
10
535
2085
2022-04-25T01:31:20Z
Jaswacker
30585766
Created page with "{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}} |- | style="padding:0 1em 0 1em;" |<div s..."
wikitext
text/x-wiki
{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -2.9em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''with a disambig header''' and '''4 links including the main page'''
<noinclude>[[Category:Templates]]</noinclude>
61a2ad3834fba1381618acf1a11690f30b287078
2093
2085
2022-04-25T01:34:54Z
Jaswacker
30585766
wikitext
text/x-wiki
{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.2em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''without a disambig header''' and '''4 links including the main page'''
[[Category:Templates]]</noinclude>
3fde487f26e42346c9435564569b9c3f96c325d2
2095
2093
2022-04-25T01:35:33Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.2em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''without a disambig header''' and '''4 links including the main page'''
[[Category:Templates]]</noinclude>
4eb38a3f75582a65a3bfccf3e569d7bb3693d3c0
2102
2095
2022-04-25T01:37:30Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.2em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''without a disambig header''' and '''4 links including the main page'''
[[Category:Templates]][[Category:Buzzer_Templates]]</noinclude>
fe1fdedb2994067d9411978902e9213251382f6c
Template:Buzzb4
10
536
2086
2022-04-25T01:31:34Z
Jaswacker
30585766
Created page with "{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}} |- | style="padding:0 1em 0 1em;" |<div s..."
wikitext
text/x-wiki
{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -2.9em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''without a disambig header''' and '''4 links including the main page'''
<noinclude>[[Category:Templates]]</noinclude>
535720211b389b832e42d1da8b1690aa5e1389d0
2094
2086
2022-04-25T01:35:23Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -2.9em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''with a disambig header''' and '''4 links including the main page'''
[[Category:Templates]]</noinclude>
670e5a8e2c60b5166db1c8e901d7d2efbf97587a
2101
2094
2022-04-25T01:37:22Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -2.9em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''with a disambig header''' and '''4 links including the main page'''
[[Category:Templates]][[Category:Buzzer_Templates]]</noinclude>
e41f9a9671d0d20d05bd6af1780a42e7107bbd25
Category:Buzzer Templates
14
537
2103
2022-04-25T01:37:38Z
Jaswacker
30585766
Created blank page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Ben Tennyson (Prime)
0
93
2104
2041
2022-04-25T01:38:23Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Ben Tennyson (Prime)|Toys|Merchandise}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|Adipiscing elit duis tristique sollicitudin nibh sit amet.|John Doe}}
__TOC__
{{-}}
== History ==
events of the shows, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2005) ===
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Prime Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Plumbers]]
[[Category:Introduced in the Original Series]]
[[Category:Bellwood Residents]]
</noinclude>
f83c42c7d16a9b8d14532982d9018f85c1ccfe7e
2105
2104
2022-04-25T01:38:50Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambig}}
{{buzzb|Ben Tennyson (Prime)|Toys|Merchandise}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|Adipiscing elit duis tristique sollicitudin nibh sit amet.|John Doe}}
__TOC__
{{-}}
== History ==
events of the shows, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2005) ===
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Prime Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Plumbers]]
[[Category:Introduced in the Original Series]]
[[Category:Bellwood Residents]]
</noinclude>
0bc6095a0223236828742249baadf7afbaaf885c
2106
2105
2022-04-25T01:39:26Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzz|Ben Tennyson (Prime)|Toys|Merchandise|width=200px}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|Adipiscing elit duis tristique sollicitudin nibh sit amet.|John Doe}}
__TOC__
{{-}}
== History ==
events of the shows, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2005) ===
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Prime Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Plumbers]]
[[Category:Introduced in the Original Series]]
[[Category:Bellwood Residents]]
</noinclude>
017054b80603abc7ecafec93cad2eec9d4308c00
2108
2106
2022-04-25T01:41:10Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Ben Tennyson (Prime)|Toys|Merchandise|width=200px}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|Adipiscing elit duis tristique sollicitudin nibh sit amet.|John Doe}}
__TOC__
{{-}}
== History ==
events of the shows, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2005) ===
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Prime Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Plumbers]]
[[Category:Introduced in the Original Series]]
[[Category:Bellwood Residents]]
</noinclude>
810e5f34dcbc4ab1b0d693573edf5e436b775395
Template:Disambigm
10
495
2107
2037
2022-04-25T01:40:43Z
Jaswacker
30585766
wikitext
text/x-wiki
{| style="margin:0 .1em; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:block;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This subject of this article goes by multiple names that apply to other articles as well. See [[{{{1}}}]]{{#if:{{{2|}}}|, [[{{{2}}}]]|}}{{#if:{{{3|}}}|, [[{{{3}}}]]|}}{{#if:{{{4|}}}|, [[{{{4}}}]]|}}{{#if:{{{5|}}}|, [[{{{5}}}]]|}}{{#if:{{{6|}}}|, [[{{{6}}}]]|}}{{#if:{{{7|}}}|, [[{{{7}}}]]|}}{{#if:{{{8|}}}|, [[{{{8}}}]]|}}{{#if:{{{9|}}}|, [[{{{9}}}]]|}}{{#if:{{{10|}}}|, [[{{{10}}}]]|}}.''
|}<noinclude>{{doc}}[[Category:Disambiguation templates|M]]</noinclude>
3de2338e016316bc64306e8490980133acd91e40
2114
2107
2022-04-25T01:44:14Z
Jaswacker
30585766
wikitext
text/x-wiki
{| style="margin:0 .1em; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:inline-flex;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This subject of this article goes by multiple names that apply to other articles as well. See [[{{{1}}}]]{{#if:{{{2|}}}|, [[{{{2}}}]]|}}{{#if:{{{3|}}}|, [[{{{3}}}]]|}}{{#if:{{{4|}}}|, [[{{{4}}}]]|}}{{#if:{{{5|}}}|, [[{{{5}}}]]|}}{{#if:{{{6|}}}|, [[{{{6}}}]]|}}{{#if:{{{7|}}}|, [[{{{7}}}]]|}}{{#if:{{{8|}}}|, [[{{{8}}}]]|}}{{#if:{{{9|}}}|, [[{{{9}}}]]|}}{{#if:{{{10|}}}|, [[{{{10}}}]]|}}.''
|}<noinclude>{{doc}}[[Category:Disambiguation templates|M]]</noinclude>
217475524b8dca4a2e11716ee7d8779479e30bf1
Template:Disambig
10
22
2115
1555
2022-04-25T01:44:16Z
Jaswacker
30585766
wikitext
text/x-wiki
{| style="margin:0 .1em; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:inline-flex;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This is a disambiguation page: a list of articles associated with the same title. If an [[Special:Whatlinkshere/{{NAMESPACE}}:{{PAGENAME}}|internal link]] referred you to this page, you may wish to change the link to point directly to the intended article.''
|}<includeonly>
[[Category:Disambiguation pages]]
</includeonly>
<noinclude>
Use this template at the bottom of a disambiguation page. A disambiguation page lists at least three meanings for the term in question, and the name of the disambiguation page should end with "(disambiguation)".
To include this template in another page, write:
:<nowiki>{{Disambig}}</nowiki>
[[Category:Templates]]
bc7ac87aa5ea74c25ff99381c11ae475dac04ce5
2119
2115
2022-04-25T01:45:59Z
Jaswacker
30585766
wikitext
text/x-wiki
{| style="margin:0 .1em; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:flex;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This is a disambiguation page: a list of articles associated with the same title. If an [[Special:Whatlinkshere/{{NAMESPACE}}:{{PAGENAME}}|internal link]] referred you to this page, you may wish to change the link to point directly to the intended article.''
|}<includeonly>
[[Category:Disambiguation pages]]
</includeonly>
<noinclude>
Use this template at the bottom of a disambiguation page. A disambiguation page lists at least three meanings for the term in question, and the name of the disambiguation page should end with "(disambiguation)".
To include this template in another page, write:
:<nowiki>{{Disambig}}</nowiki>
[[Category:Templates]]
c820791f754e04bbed5036364e61aba0a6eba59c
2124
2119
2022-04-25T01:49:55Z
Jaswacker
30585766
wikitext
text/x-wiki
{| style="margin:0 .1em; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:flex;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This is a disambiguation page: a list of articles associated with the same title. If an [[Special:Whatlinkshere/{{NAMESPACE}}:{{PAGENAME}}|internal link]] referred you to this page, you may wish to change the link to point directly to the intended article.''
|}<includeonly>
[[Category:Disambiguation pages]]
</includeonly>
<noinclude>
Use this template at the top of a disambiguation page. A disambiguation page lists at least three meanings for the term in question, and the name of the disambiguation page should end with "(Disambiguation)".
To include this template in another page, write:
:<nowiki>{{Disambig}}</nowiki>
[[Category:Templates]]
57af0c4928be25fe601e929649ece49069af7a7a
2160
2124
2022-04-25T02:11:37Z
Jaswacker
30585766
wikitext
text/x-wiki
{| style="margin:-.4em .1em; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:flex;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This is a disambiguation page: a list of articles associated with the same title. If an [[Special:Whatlinkshere/{{NAMESPACE}}:{{PAGENAME}}|internal link]] referred you to this page, you may wish to change the link to point directly to the intended article.''
|}<includeonly>
[[Category:Disambiguation pages]]
</includeonly>
<noinclude>
Use this template at the top of a disambiguation page. A disambiguation page lists at least three meanings for the term in question, and the name of the disambiguation page should end with "(Disambiguation)".
To include this template in another page, write:
:<nowiki>{{Disambig}}</nowiki>
[[Category:Templates]]
18b2597c5546d9a4e7bb14da83ce21732a812bad
2163
2160
2022-04-25T02:12:42Z
Jaswacker
30585766
wikitext
text/x-wiki
{| style="margin:-.5em .1em; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:flex;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This is a disambiguation page: a list of articles associated with the same title. If an [[Special:Whatlinkshere/{{NAMESPACE}}:{{PAGENAME}}|internal link]] referred you to this page, you may wish to change the link to point directly to the intended article.''
|}<includeonly>
[[Category:Disambiguation pages]]
</includeonly>
<noinclude>
Use this template at the top of a disambiguation page. A disambiguation page lists at least three meanings for the term in question, and the name of the disambiguation page should end with "(Disambiguation)".
To include this template in another page, write:
:<nowiki>{{Disambig}}</nowiki>
[[Category:Templates]]
6613bf4efada3178135fd327a308c5def3a96463
Greenfield:Sandbox
0
532
2116
2113
2022-04-25T01:45:26Z
Jaswacker
30585766
wikitext
text/x-wiki
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
82a322d492552aa12837ff2296ab238cd6153543
2117
2116
2022-04-25T01:45:33Z
Jaswacker
30585766
wikitext
text/x-wiki
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
0032ef45f2f853d75aeaa11a21669750d096ff50
2118
2117
2022-04-25T01:45:50Z
Jaswacker
30585766
wikitext
text/x-wiki
{{disambig}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
cc84e8069783ac11f1eda8513d5fe8b60ac3eae8
2121
2118
2022-04-25T01:46:43Z
Jaswacker
30585766
wikitext
text/x-wiki
{{disambigm|Ben Tennyson (Prime)|Ben Tennyson (Prime)|Ben Tennyson (Prime)|Ben Tennyson (Prime)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
47a213ba0dc95f76e50e559ee8e4080cbf99155b
2122
2121
2022-04-25T01:47:08Z
Jaswacker
30585766
wikitext
text/x-wiki
{{disambig|Ben Tennyson (Prime)|Ben Tennyson (Prime)|Ben Tennyson (Prime)|Ben Tennyson (Prime)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
ee8f1c1e1dd25b8da488f7055f4be13dc4b0acbe
2125
2122
2022-04-25T01:50:09Z
Jaswacker
30585766
wikitext
text/x-wiki
{{disambigm|Ben Tennyson (Prime)|Ben Tennyson (Prime)|Ben Tennyson (Prime)|Ben Tennyson (Prime)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
47a213ba0dc95f76e50e559ee8e4080cbf99155b
2127
2125
2022-04-25T01:51:44Z
Jaswacker
30585766
wikitext
text/x-wiki
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
0032ef45f2f853d75aeaa11a21669750d096ff50
2128
2127
2022-04-25T01:51:58Z
Jaswacker
30585766
wikitext
text/x-wiki
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
a8e3fc87ae02d6ad842f785d1cbff2f159266805
2151
2128
2022-04-25T02:07:39Z
Jaswacker
30585766
wikitext
text/x-wiki
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
9bd3ae45187abadebe2b5ce4023d0154925e3208
2154
2151
2022-04-25T02:09:09Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|uaf|auu}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
2f147d657c9b6786245f7f6f15c74709d3dbaddd
2155
2154
2022-04-25T02:09:18Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|auu|auu}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
24ba8465e6f5023ae32cb65cdb44d53c82502913
2159
2155
2022-04-25T02:10:51Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|auu|auu|auu|auu|auu|auu|auu|auu|auu|auu|auu|auu|auu|auu|auu}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
2398cf483d3a9c05b772bf841e8c3387680c83de
2162
2159
2022-04-25T02:12:29Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|auu|auu|auu|auu|auu|auu|auu|auu|auu|auu|auu|auu|auu|auu|auu}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
3417962e75a5ca129d17f4b81dd9655f355a3b44
Template:Disambigm
10
495
2120
2114
2022-04-25T01:46:07Z
Jaswacker
30585766
wikitext
text/x-wiki
{| style="margin:0 .1em; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:flex;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This subject of this article goes by multiple names that apply to other articles as well. See [[{{{1}}}]]{{#if:{{{2|}}}|, [[{{{2}}}]]|}}{{#if:{{{3|}}}|, [[{{{3}}}]]|}}{{#if:{{{4|}}}|, [[{{{4}}}]]|}}{{#if:{{{5|}}}|, [[{{{5}}}]]|}}{{#if:{{{6|}}}|, [[{{{6}}}]]|}}{{#if:{{{7|}}}|, [[{{{7}}}]]|}}{{#if:{{{8|}}}|, [[{{{8}}}]]|}}{{#if:{{{9|}}}|, [[{{{9}}}]]|}}{{#if:{{{10|}}}|, [[{{{10}}}]]|}}.''
|}<noinclude>{{doc}}[[Category:Disambiguation templates|M]]</noinclude>
88df6f8d749371cb6d405a1cbf32b1bfdd4c59bb
2123
2120
2022-04-25T01:49:53Z
Jaswacker
30585766
wikitext
text/x-wiki
{| style="margin:0 .1em; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:flex;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This subject of this article goes by multiple names that apply to other articles as well. See [[{{{1}}}]]{{#if:{{{2|}}}|, [[{{{2}}}]]|}}{{#if:{{{3|}}}|, [[{{{3}}}]]|}}{{#if:{{{4|}}}|, [[{{{4}}}]]|}}{{#if:{{{5|}}}|, [[{{{5}}}]]|}}{{#if:{{{6|}}}|, [[{{{6}}}]]|}}{{#if:{{{7|}}}|, [[{{{7}}}]]|}}{{#if:{{{8|}}}|, [[{{{8}}}]]|}}{{#if:{{{9|}}}|, [[{{{9}}}]]|}}{{#if:{{{10|}}}|, [[{{{10}}}]]|}}.''
|}<includeonly>
[[Category:Disambiguation pages]]
</includeonly>
<noinclude>
Use this template at the top of a page with a topic title that can be easily confused with other articles. Either use this template to link to the disambiguation page for the topic, or a few relevant pages with similar names.
To include this template in another page, write: (Up to 10 links can be added.)
:<nowiki>{{Disambigm|''article''|''article''|''article''}}</nowiki>
[[Category:Templates]]
70864edba65971b90d564209a4820d43c335e4e2
2161
2123
2022-04-25T02:11:45Z
Jaswacker
30585766
wikitext
text/x-wiki
{| style="margin:-.4em .1em; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:flex;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This subject of this article goes by multiple names that apply to other articles as well. See [[{{{1}}}]]{{#if:{{{2|}}}|, [[{{{2}}}]]|}}{{#if:{{{3|}}}|, [[{{{3}}}]]|}}{{#if:{{{4|}}}|, [[{{{4}}}]]|}}{{#if:{{{5|}}}|, [[{{{5}}}]]|}}{{#if:{{{6|}}}|, [[{{{6}}}]]|}}{{#if:{{{7|}}}|, [[{{{7}}}]]|}}{{#if:{{{8|}}}|, [[{{{8}}}]]|}}{{#if:{{{9|}}}|, [[{{{9}}}]]|}}{{#if:{{{10|}}}|, [[{{{10}}}]]|}}.''
|}<includeonly>
[[Category:Disambiguation pages]]
</includeonly>
<noinclude>
Use this template at the top of a page with a topic title that can be easily confused with other articles. Either use this template to link to the disambiguation page for the topic, or a few relevant pages with similar names.
To include this template in another page, write: (Up to 10 links can be added.)
:<nowiki>{{Disambigm|''article''|''article''|''article''}}</nowiki>
[[Category:Templates]]
3f0067b67688ecf576472030e4627e39d349ea55
2164
2161
2022-04-25T02:12:49Z
Jaswacker
30585766
wikitext
text/x-wiki
{| style="margin:-.5em .1em; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:flex;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This subject of this article goes by multiple names that apply to other articles as well. See [[{{{1}}}]]{{#if:{{{2|}}}|, [[{{{2}}}]]|}}{{#if:{{{3|}}}|, [[{{{3}}}]]|}}{{#if:{{{4|}}}|, [[{{{4}}}]]|}}{{#if:{{{5|}}}|, [[{{{5}}}]]|}}{{#if:{{{6|}}}|, [[{{{6}}}]]|}}{{#if:{{{7|}}}|, [[{{{7}}}]]|}}{{#if:{{{8|}}}|, [[{{{8}}}]]|}}{{#if:{{{9|}}}|, [[{{{9}}}]]|}}{{#if:{{{10|}}}|, [[{{{10}}}]]|}}.''
|}<includeonly>
[[Category:Disambiguation pages]]
</includeonly>
<noinclude>
Use this template at the top of a page with a topic title that can be easily confused with other articles. Either use this template to link to the disambiguation page for the topic, or a few relevant pages with similar names.
To include this template in another page, write: (Up to 10 links can be added.)
:<nowiki>{{Disambigm|''article''|''article''|''article''}}</nowiki>
[[Category:Templates]]
47ffc26e321a45696d0e9904b555ff16cee1bb5a
Ben Tennyson (Prime)
0
93
2126
2108
2022-04-25T01:51:24Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{buzz|Ben Tennyson (Prime)|Toys|Merchandise|width=200px}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|Adipiscing elit duis tristique sollicitudin nibh sit amet.|John Doe}}
__TOC__
{{-}}
== History ==
events of the shows, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2005) ===
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Prime Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Plumbers]]
[[Category:Introduced in the Original Series]]
[[Category:Bellwood Residents]]
</noinclude>
ba44f34cf8abc56a9632cb8775e488106f4299b7
2144
2126
2022-04-25T02:05:11Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Ben Tennyson (Prime)|Toys|Merchandise|width=200px}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|Adipiscing elit duis tristique sollicitudin nibh sit amet.|John Doe}}
__TOC__
{{-}}
== History ==
events of the shows, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2005) ===
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Prime Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Plumbers]]
[[Category:Introduced in the Original Series]]
[[Category:Bellwood Residents]]
</noinclude>
810e5f34dcbc4ab1b0d693573edf5e436b775395
2145
2144
2022-04-25T02:05:27Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{buzz|Ben Tennyson (Prime)|Toys|Merchandise|width=200px}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|Adipiscing elit duis tristique sollicitudin nibh sit amet.|John Doe}}
__TOC__
{{-}}
== History ==
events of the shows, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2005) ===
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Prime Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Plumbers]]
[[Category:Introduced in the Original Series]]
[[Category:Bellwood Residents]]
</noinclude>
eaf7bac888bbab6036b807b166c9b3d8cf06cc9c
2146
2145
2022-04-25T02:05:40Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzz|Ben Tennyson (Prime)|Toys|Merchandise|width=200px}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|Adipiscing elit duis tristique sollicitudin nibh sit amet.|John Doe}}
__TOC__
{{-}}
== History ==
events of the shows, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2005) ===
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Prime Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Plumbers]]
[[Category:Introduced in the Original Series]]
[[Category:Bellwood Residents]]
</noinclude>
017054b80603abc7ecafec93cad2eec9d4308c00
2147
2146
2022-04-25T02:05:48Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Ben Tennyson (Prime)|Toys|Merchandise|width=200px}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|Adipiscing elit duis tristique sollicitudin nibh sit amet.|John Doe}}
__TOC__
{{-}}
== History ==
events of the shows, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2005) ===
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Prime Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Plumbers]]
[[Category:Introduced in the Original Series]]
[[Category:Bellwood Residents]]
</noinclude>
810e5f34dcbc4ab1b0d693573edf5e436b775395
Template:Buzzb
10
534
2129
2100
2022-04-25T01:53:20Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -2.9em; margin-bottom: 1em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''with a disambig header''' and '''3 links including the main page'''
[[Category:Templates]][[Category:Buzzer_Templates]]</noinclude>
1d742b8f6268a8e25cd6dd2eb385d6eda1afcaed
2130
2129
2022-04-25T01:53:39Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -2.9em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''with a disambig header''' and '''3 links including the main page'''
[[Category:Templates]][[Category:Buzzer_Templates]]</noinclude>
e7826828298bb4e40c1e6112f61b422221e2efe6
Template:Buzz
10
531
2131
2099
2022-04-25T01:53:44Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.2em; margin-bottom: 1em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''without a disambig header''' and '''3 links including the main page'''
[[Category:Templates]][[Category:Buzzer_Templates]]</noinclude>
8d06253c13978495663cc4d5ec87c0e869ea1892
2132
2131
2022-04-25T01:53:57Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.2em; margin-bottom: .5em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''without a disambig header''' and '''3 links including the main page'''
[[Category:Templates]][[Category:Buzzer_Templates]]</noinclude>
7b4104d1ec7fb1449223831a30d140db48a25864
2133
2132
2022-04-25T01:54:21Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -1.2em; margin-bottom: .7em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''without a disambig header''' and '''3 links including the main page'''
[[Category:Templates]][[Category:Buzzer_Templates]]</noinclude>
476b4f3fcc3cd78bebb5ade6365c65a0c139b0ef
2148
2133
2022-04-25T02:06:22Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 5px; margin-top: -.5em; margin-bottom: .7em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''without a disambig header''' and '''3 links including the main page'''
[[Category:Templates]][[Category:Buzzer_Templates]]</noinclude>
4e5a629cb146c1d12a8938307b9921cfe6ccf62a
2149
2148
2022-04-25T02:06:48Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 5px; margin-top: -.7em; margin-bottom: .7em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''without a disambig header''' and '''3 links including the main page'''
[[Category:Templates]][[Category:Buzzer_Templates]]</noinclude>
d2155bd59aeb860921bdc1eab51141c90c37215e
2152
2149
2022-04-25T02:08:18Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 5px; margin-top: -.3em; margin-bottom: .7em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''without a disambig header''' and '''3 links including the main page'''
[[Category:Templates]][[Category:Buzzer_Templates]]</noinclude>
6f7522081437846bc60eb97f6b33982cc122ef2f
2157
2152
2022-04-25T02:09:38Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 5px; margin-top: -.4em; margin-bottom: .7em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''without a disambig header''' and '''3 links including the main page'''
[[Category:Templates]][[Category:Buzzer_Templates]]</noinclude>
c4eaef5064a668b7bff95ca45bd4f586d2f7e961
Template:Trix/icons
10
12
2134
457
2022-04-25T01:57:49Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{{#if:{{{custom|}}}|
{{#tag:imagemap
|Image:{{{custom}}}{{!}}{{{cSize|40px}}}
default [[{{{cLink}}}{{!}}{{{cPretty|{{{cLink}}}}}}]]
desc none
}}|}}<!--
Options
-->{{#if:{{{option|}}}|{{#switch:{{{option}}}
|ogs={{trix/icons_recurs|custom=OGS_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Original Series}}
|non={{trix/icons_recurs|custom=NON_Icon.png|cLink=Continuity#Non-Canon|cPretty=Non-Canon}}
|auu={{trix/icons_recurs|custom=NON_Icon.png|cLink=Continuity#Non-Canon|cPretty=Alternate Universe}}
|alf={{trix/icons_recurs|custom=UAF_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Alien Force}}
|ula={{trix/icons_recurs|custom=UAF_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Alien}}
|abd={{trix/icons_recurs|custom=ABD_Icon.png|cLink=Albedo}}
|ult={{trix/icons_recurs|custom=ULT_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Form}}
|num={{trix/icons_recurs|custom=NUM_Icon.png|cLink=Albedo|cPretty=Ultimate Form}}
|onv={{trix/icons_recurs|custom=ONV_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Omniverse}}
|aso={{trix/icons_recurs|custom=ASO_Icon.png|cLink=Albedo}}
|rum={{trix/icons_recurs|custom=RUM_Icon.png|cLink=Albedo|cPretty=Ultimate Form}}
|b23={{trix/icons_recurs|custom=B23_Icon.png|cLink=Ben Tennyson (Dimension 23)|cPretty=Ben 23}}
|g10={{trix/icons_recurs|custom=G10_Icon.png|cLink=Gwen Tennyson (dimen)|cPretty=Gwen 10}}
|mad={{trix/icons_recurs|custom=MAD_Icon.png|cLink=Mad Ben}}
|bad={{trix/icons_recurs|custom=BAD_Icon.png|cLink=Bad Ben}}
|neg={{trix/icons_recurs|custom=NEG_Icon.png|cLink=Nega Ben}}
|zar={{trix/icons_recurs|custom=ZAR_Icon.png|cLink=Benzarro}}
|rbt={{trix/icons_recurs|custom=RBT_Icon.png|cLink=Ben Tennyson (Reboot)|cPretty=Reboot}}
|fsn={{trix/icons_recurs|custom=FSN_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Fusion Alien}}
|bio={{trix/icons_recurs|custom=BIO_Icon.png|cLink=Ben 10,000 (Omniverse)|cPretty=Fusion Alien}}
|arg={{trix/icons_recurs|custom=ARG_Icon.png|cLink=Argit|cPretty=Argit}}
|nem={{trix/icons_recurs|custom=NEM_Icon.png|cLink=Nemetrix|cPretty=Nemetrix Alien}}
|ant={{trix/icons_recurs|custom=ANT_Icon.png|cLink=Kevin Levin (Reboot)|cPretty=Antitrix Alien}}
|{{{option}}}}}|}}</includeonly><noinclude>
[[Category:Templates]]
<pre>{{trix/icons_recurs
|custom=ONV_Icon.png
|cLink=Ben Tennyson (Prime)
|cPretty=Omniverse - Mouseover text, if different from the Link
|cSize=30px - Override the default size
}}</pre>
</noinclude>
5f388b36ff0e6448ea28fdf6f8ff8bc57daf81e8
2140
2134
2022-04-25T02:03:15Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{{#if:{{{custom|}}}|
{{#tag:imagemap
|Image:{{{custom}}}{{!}}{{{cSize|50px}}}
default [[{{{cLink}}}{{!}}{{{cPretty|{{{cLink}}}}}}]]
desc none
}}|}}<!--
Options
-->{{#if:{{{option|}}}|{{#switch:{{{option}}}
|ogs={{trix/icons_recurs|custom=OGS_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Original Series}}
|non={{trix/icons_recurs|custom=NON_Icon.png|cLink=Continuity#Non-Canon|cPretty=Non-Canon}}
|auu={{trix/icons_recurs|custom=NON_Icon.png|cLink=Continuity#Non-Canon|cPretty=Alternate Universe}}
|alf={{trix/icons_recurs|custom=UAF_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Alien Force}}
|ula={{trix/icons_recurs|custom=UAF_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Alien}}
|abd={{trix/icons_recurs|custom=ABD_Icon.png|cLink=Albedo}}
|ult={{trix/icons_recurs|custom=ULT_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Form}}
|num={{trix/icons_recurs|custom=NUM_Icon.png|cLink=Albedo|cPretty=Ultimate Form}}
|onv={{trix/icons_recurs|custom=ONV_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Omniverse}}
|aso={{trix/icons_recurs|custom=ASO_Icon.png|cLink=Albedo}}
|rum={{trix/icons_recurs|custom=RUM_Icon.png|cLink=Albedo|cPretty=Ultimate Form}}
|b23={{trix/icons_recurs|custom=B23_Icon.png|cLink=Ben Tennyson (Dimension 23)|cPretty=Ben 23}}
|g10={{trix/icons_recurs|custom=G10_Icon.png|cLink=Gwen Tennyson (dimen)|cPretty=Gwen 10}}
|mad={{trix/icons_recurs|custom=MAD_Icon.png|cLink=Mad Ben}}
|bad={{trix/icons_recurs|custom=BAD_Icon.png|cLink=Bad Ben}}
|neg={{trix/icons_recurs|custom=NEG_Icon.png|cLink=Nega Ben}}
|zar={{trix/icons_recurs|custom=ZAR_Icon.png|cLink=Benzarro}}
|rbt={{trix/icons_recurs|custom=RBT_Icon.png|cLink=Ben Tennyson (Reboot)|cPretty=Reboot}}
|fsn={{trix/icons_recurs|custom=FSN_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Fusion Alien}}
|bio={{trix/icons_recurs|custom=BIO_Icon.png|cLink=Ben 10,000 (Omniverse)|cPretty=Fusion Alien}}
|arg={{trix/icons_recurs|custom=ARG_Icon.png|cLink=Argit|cPretty=Argit}}
|nem={{trix/icons_recurs|custom=NEM_Icon.png|cLink=Nemetrix|cPretty=Nemetrix Alien}}
|ant={{trix/icons_recurs|custom=ANT_Icon.png|cLink=Kevin Levin (Reboot)|cPretty=Antitrix Alien}}
|{{{option}}}}}|}}</includeonly><noinclude>
[[Category:Templates]]
<pre>{{trix/icons_recurs
|custom=ONV_Icon.png
|cLink=Ben Tennyson (Prime)
|cPretty=Omniverse - Mouseover text, if different from the Link
|cSize=30px - Override the default size
}}</pre>
</noinclude>
4562c60f8560de9ff753dfdb790f0ba218de6dce
2143
2140
2022-04-25T02:04:07Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{{#if:{{{custom|}}}|
{{#tag:imagemap
|Image:{{{custom}}}{{!}}{{{cSize|40px}}}
default [[{{{cLink}}}{{!}}{{{cPretty|{{{cLink}}}}}}]]
desc none
}}|}}<!--
Options
-->{{#if:{{{option|}}}|{{#switch:{{{option}}}
|ogs={{trix/icons_recurs|custom=OGS_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Original Series}}
|non={{trix/icons_recurs|custom=NON_Icon.png|cLink=Continuity#Non-Canon|cPretty=Non-Canon}}
|auu={{trix/icons_recurs|custom=NON_Icon.png|cLink=Continuity#Non-Canon|cPretty=Alternate Universe}}
|alf={{trix/icons_recurs|custom=UAF_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Alien Force}}
|ula={{trix/icons_recurs|custom=UAF_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Alien}}
|abd={{trix/icons_recurs|custom=ABD_Icon.png|cLink=Albedo}}
|ult={{trix/icons_recurs|custom=ULT_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Form}}
|num={{trix/icons_recurs|custom=NUM_Icon.png|cLink=Albedo|cPretty=Ultimate Form}}
|onv={{trix/icons_recurs|custom=ONV_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Omniverse}}
|aso={{trix/icons_recurs|custom=ASO_Icon.png|cLink=Albedo}}
|rum={{trix/icons_recurs|custom=RUM_Icon.png|cLink=Albedo|cPretty=Ultimate Form}}
|b23={{trix/icons_recurs|custom=B23_Icon.png|cLink=Ben Tennyson (Dimension 23)|cPretty=Ben 23}}
|g10={{trix/icons_recurs|custom=G10_Icon.png|cLink=Gwen Tennyson (dimen)|cPretty=Gwen 10}}
|mad={{trix/icons_recurs|custom=MAD_Icon.png|cLink=Mad Ben}}
|bad={{trix/icons_recurs|custom=BAD_Icon.png|cLink=Bad Ben}}
|neg={{trix/icons_recurs|custom=NEG_Icon.png|cLink=Nega Ben}}
|zar={{trix/icons_recurs|custom=ZAR_Icon.png|cLink=Benzarro}}
|rbt={{trix/icons_recurs|custom=RBT_Icon.png|cLink=Ben Tennyson (Reboot)|cPretty=Reboot}}
|fsn={{trix/icons_recurs|custom=FSN_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Fusion Alien}}
|bio={{trix/icons_recurs|custom=BIO_Icon.png|cLink=Ben 10,000 (Omniverse)|cPretty=Fusion Alien}}
|arg={{trix/icons_recurs|custom=ARG_Icon.png|cLink=Argit|cPretty=Argit}}
|nem={{trix/icons_recurs|custom=NEM_Icon.png|cLink=Nemetrix|cPretty=Nemetrix Alien}}
|ant={{trix/icons_recurs|custom=ANT_Icon.png|cLink=Kevin Levin (Reboot)|cPretty=Antitrix Alien}}
|{{{option}}}}}|}}</includeonly><noinclude>
[[Category:Templates]]
<pre>{{trix/icons_recurs
|custom=ONV_Icon.png
|cLink=Ben Tennyson (Prime)
|cPretty=Omniverse - Mouseover text, if different from the Link
|cSize=30px - Override the default size
}}</pre>
</noinclude>
5f388b36ff0e6448ea28fdf6f8ff8bc57daf81e8
MediaWiki:Common.css
8
3
2135
1978
2022-04-25T01:59:20Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
float: none;
display: contents;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: none;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
display: inline-block;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
text-align: center;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
margin-bottom: 4px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.3em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:4px;
padding-top:3px;
border-radius:1.5em;
-moz-border-radius:1.5em;
-webkit-border-radius:1.5m;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:125%;
font-weight:1000;
margin:10px;
padding:1.5em;
text-align:center;
border-radius:1em;
-moz-border-radius:1em;
-webkit-border-radius:1em;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
/* test remove thing */
#p-ShoutWiki_messages-label {
display: none !important;
}
#p-ShoutWiki_messages.portlet.generated-sidebar {
display: none !important;
}
72dfc73fd878df6e881a48a304aa8e8719333fff
2137
2135
2022-04-25T02:01:45Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
float: none;
display: contents;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: none;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
display: inline-block;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
text-align: center;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
margin-right: 1em;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.3em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:4px;
padding-top:3px;
border-radius:1.5em;
-moz-border-radius:1.5em;
-webkit-border-radius:1.5m;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:125%;
font-weight:1000;
margin:10px;
padding:1.5em;
text-align:center;
border-radius:1em;
-moz-border-radius:1em;
-webkit-border-radius:1em;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
/* test remove thing */
#p-ShoutWiki_messages-label {
display: none !important;
}
#p-ShoutWiki_messages.portlet.generated-sidebar {
display: none !important;
}
681bcf2354c83cdef2d13263b9c6ec4b69164b2f
2139
2137
2022-04-25T02:02:45Z
Jaswacker
30585766
css
text/css
/* CSS placed here will be applied to all skins */
/* stuff stolen from mariowiki */
#n-Anniversary { display: none; }
.mw-wiki-logo { background-size: 150px; }
textarea, .CodeMirror {
background: #fff url(http://images.shoutwiki.com/omnipedia/6/65/Wiki_article_bg4.png);
}
pre {
overflow: auto;
}
img {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
img[src$=".webp"], img[src$=".WebP"], img[src$=".WEBP"] {
image-rendering: auto !important;
}
#toc, .toc {
margin-bottom: 3px;
}
div.tleft, div.tright {
margin-top: 0.2em;
margin-bottom: 0.8em;
}
.thumb .mediaContainer {
margin: 4px auto 2px;
}
.thumb .multiVert .mediaContainer {
margin: 3px auto -1px;
}
.ns-104 div.thumb {
border-color: transparent;
}
ul.gallery,
li.gallerybox div.thumb {
margin-bottom: 0;
padding-bottom: 0;
}
li.gallerycaption {
text-align: unset;
}
#file img {
background: url(/resources/src/mediawiki.action/images/checker.png) repeat;
}
.mw_metadata {
margin-top: 5px;
}
.catlinks {
background: #f9f9f9 url(/images/papermariohead.jpg) no-repeat center right;
margin-top: 10px;
}
#catlinks li {
margin: 0.28em 0;
line-height: 1em;
}
blockquote {
border-left: 3px solid #06f;
margin-left: 2em;
padding-left: 1em;
}
.mw-collapsible-toggle {
padding-right: 0.3em;
}
.infobox .mw-collapsible-toggle-expanded {
padding-left: 7px;
}
.contentbox > .mw-collapsible-toggle {
float: none !important;
}
/* References */
ol.references {
margin-top: 0;
font-size: 90%;
}
ol.references div {
display: inline;
}
ol.references span {
line-height: 1;
}
.ns-3 [style*="position:fixed"] {
display: none;
}
.ipa {
font-family: "Arial Unicode MS","Charis SIL","DejaVu Sans",Gentium,"Lucida Sans Unicode","TITUS Cyberbit","DoulosSIL",Arial;
}
/* <h3> All pages </h3> */
#bodyContent {
position: relative;
}
.mw-newarticletext {
margin-bottom: 10px;
}
/* JS Tab System, Jacked and Hacked from the jsprefs in monobook/main.css -Dantman */
.tabtoc {
margin: 0;
padding: 0;
width: 100%;
clear: both;
float: none;
display: contents;
}
.tabtoc li {
background-color: #f0f0f0;
color: #000;
}
.tabtoc li {
margin: 1px -2px 1px 2px;
float: none;
padding: 2px 0 3px 0;
border: 1px solid #fff;
border-right-color: #716f64;
border-bottom: 0;
position: relative;
white-space: nowrap;
list-style-type: none;
list-style-image: none;
z-index: 3;
display: inline-block;
}
.tabtoc li.selected {
font-weight: bold;
background-color: #f9f9f9;
border: 1px solid #aaa;
border-bottom: none;
cursor: default;
top: 1px;
padding-top: 2px;
margin-right: -3px;
}
.tabtoc > li.selected {
top: 2px;
}
.tabtoc a,
.tabtoc a:active {
display: block;
color: #000;
padding: 0 .7em;
position: relative;
text-decoration: none;
}
.tabtoc li.selected a {
cursor: default;
text-decoration: none;
}
.tabcontainer {
margin: 0;
text-align: center;
border: 1px solid #aaa;
clear: both;
padding: 1.5em;
background-color: #F9F9F9;
}
.tabsection {
border: none;
padding: 0;
margin: 0;
}
.tabsection .tabbox {
border: 1px solid #aaa;
float: left;
margin-right: 2em;
}
.tabsection .tab {
font-weight: bold;
}
.tabsection table, .tabsection .tab {
background-color: #F9F9F9;
}
.mainTab {
display: none;
}
/* CSS Class for Faction Icons */
#title-trixicons > div {
display: inline;
margin-left: 3px;
margin-right: 3px;
background-color: #ffffff;
}
/* Giving headers and TOC a little extra space */
h2 {margin-top: 20px;}
.toc {margin-top: 20px;}
#toolbar { height: 22px; }
/* Infobox template style */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
padding: 0.2em;
}
@media all and (max-width: 500px) {
.infobox {
margin: 0 auto;
clear: both;
max-width: 100%;
}
}
@media all and (min-width: 500px) {
.infobox {
margin-left: 1em;
margin-bottom: 0.5em;
float: right;
clear: right;
}
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/* everything below is imported from Monobook.css, blame Derik if it blows up */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption,
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
/* feature box headers from tfwiki */
.featurebox
{
border-width:.3em;
border-style:solid;
margin:0 .5em 1em .5em;
padding:4px;
padding-top:3px;
border-radius:1.5em;
-moz-border-radius:1.5em;
-webkit-border-radius:1.5m;
}
.featurebox-heading
{
background-image:url(http://images.shoutwiki.com/omnipedia/5/51/Circuitstrip_transparent.png);
color:#fff;
font-size:125%;
font-weight:1000;
margin:10px;
padding:1.5em;
text-align:center;
border-radius:1em;
-moz-border-radius:1em;
-webkit-border-radius:1em;
}
.featurebox-heading a
{
color:#fff;
}
/* Hide Main Page header */
.page-Main_Page .firstHeading{
display:none;
}
/* Gray out the "Main Page" option on the navibation when you're actually on the Main Page. */
.page-Main_Page #n-mainpage a,
.page-Main_Page #p-logo a{
color:#777;
cursor:default;
}
.pbody li { list-style: none }
.tt1_nowrap {
white-space: nowrap;
}
.tt1_storylink {
font-size: 10px;
background-color: #ececec;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 5px 0 5px;
border-color: #cccccc;
}
.tt1_istorylink {
font-size: 10px;
background-color: #e8d0d0;
border-width: 0 1px 0 1px;
border-style: solid;
padding: 0 2px 0 5px;
border-color: #d3b1b1;
}
@media all and (min-width: 600px) {
.tt1_storylink,
.tt1_istorylink {
white-space: nowrap;
}
}
/* transformation slideshows */
#transformation-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/1/14/Trixfacesmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: -1;
}
#transformation-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* transformation slideshows UAF */
#transformation2-slideshow .mw-gallery-slideshow {
background-image: url(http://images.shoutwiki.com/omnipedia/a/ad/Trixuafsmall.png);
background-position: center;
background-repeat: no-repeat;
padding-bottom: 10px;
}
#transformation2-slideshow .mw-gallery-slideshow img {
position: relative;
z-index: 1;
}
#transformation2-slideshow .oo-ui-buttonElement-button[title="Toggle thumbnails"] {
display: none !important;
}
#transformation2-slideshow .oo-ui-buttonElement {
margin: 10.5em 8.5em -10.5em 8.5em;
}
#transformation2-slideshow > ul > li > div > .oo-ui-panelLayout:nth-child(2) {
display:inline-block;
}
/* REMOVING SHOUTWIKI DISCLAIMER */
#localSiteNotice {
display: none !important;
}
/* test remove thing */
#p-ShoutWiki_messages-label {
display: none !important;
}
#p-ShoutWiki_messages.portlet.generated-sidebar {
display: none !important;
}
dfa82e5df11dc7e06a85fe5b997e5b17fe4ee29c
Template:Trix
10
5
2136
101
2022-04-25T02:00:57Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div id="title-trixicons" style="float: right; display: none; margin-right: .1em; margin-bottom:5px;">{{Trix/icons|option={{{1|}}}}}{{Trix/icons|option={{{2|}}}}}{{Trix/icons|option={{{3|}}}}}{{Trix/icons|option={{{4|}}}}}{{Trix/icons|option={{{5|}}}}}{{Trix/icons|option={{{6|}}}}}{{Trix/icons|option={{{7|}}}}}{{Trix/icons|option={{{8|}}}}}{{Trix/icons|option={{{9|}}}}}{{Trix/icons|option={{{10|}}}}}{{Trix/icons|option={{{11|}}}}}{{Trix/icons|option={{{12|}}}}}{{Trix/icons|option={{{13|}}}}}{{Trix/icons|option={{{14|}}}}}{{Trix/icons|option={{{15|}}}}}</div></includeonly><noinclude>{{Trix/doc}}
[[Category:Templates]]
</noinclude>
c773e2286ce1be1abe6aa9dc57fa711adb23a463
2138
2136
2022-04-25T02:02:36Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div id="title-trixicons" style="float: right; display: none; margin-right: .3em; margin-bottom:4px;">{{Trix/icons|option={{{1|}}}}}{{Trix/icons|option={{{2|}}}}}{{Trix/icons|option={{{3|}}}}}{{Trix/icons|option={{{4|}}}}}{{Trix/icons|option={{{5|}}}}}{{Trix/icons|option={{{6|}}}}}{{Trix/icons|option={{{7|}}}}}{{Trix/icons|option={{{8|}}}}}{{Trix/icons|option={{{9|}}}}}{{Trix/icons|option={{{10|}}}}}{{Trix/icons|option={{{11|}}}}}{{Trix/icons|option={{{12|}}}}}{{Trix/icons|option={{{13|}}}}}{{Trix/icons|option={{{14|}}}}}{{Trix/icons|option={{{15|}}}}}</div></includeonly><noinclude>{{Trix/doc}}
[[Category:Templates]]
</noinclude>
7f37f8d8fc69aea4000ec07c103714dfcc7daf34
Template:Trix/icons recurs
10
7
2141
21
2022-04-25T02:03:28Z
Jaswacker
30585766
wikitext
text/x-wiki
{{#if:{{{custom|}}}|
{{#tag:imagemap
|File:{{{custom}}}{{!}}{{{cSize|50px}}}
default [[{{{cLink}}}{{!}}{{{cPretty|{{{cLink}}}}}}]]
desc none
}}|}}<noinclude>
[[Category:Templates]]
</noinclude>
b1ad0b576f38ae2df198eab18b0db5bd59dbfdee
2142
2141
2022-04-25T02:03:48Z
Jaswacker
30585766
wikitext
text/x-wiki
{{#if:{{{custom|}}}|
{{#tag:imagemap
|File:{{{custom}}}{{!}}{{{cSize|40px}}}
default [[{{{cLink}}}{{!}}{{{cPretty|{{{cLink}}}}}}]]
desc none
}}|}}<noinclude>
[[Category:Templates]]
</noinclude>
4cb7afef7a6c61c45a0d37e2bcaf63dae1b798e5
Template:Buzz4
10
535
2150
2102
2022-04-25T02:07:01Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 5px; margin-top: -.7em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''without a disambig header''' and '''4 links including the main page'''
[[Category:Templates]][[Category:Buzzer_Templates]]</noinclude>
63c478ed6c7d0b250d0274360773fdaa1f47dfaf
2153
2150
2022-04-25T02:08:25Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 5px; margin-top: -.3em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''without a disambig header''' and '''4 links including the main page'''
[[Category:Templates]][[Category:Buzzer_Templates]]</noinclude>
0cfc73d96f748ad14ff0b6f0383b3781a2b52611
2156
2153
2022-04-25T02:09:31Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 5px; margin-top: -.4em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''without a disambig header''' and '''4 links including the main page'''
[[Category:Templates]][[Category:Buzzer_Templates]]</noinclude>
adda1b687e119fcdfd0d8f3b668545111c43835e
2158
2156
2022-04-25T02:10:06Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 5px; margin-top: -.4em; margin-bottom: .7em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''without a disambig header''' and '''4 links including the main page'''
[[Category:Templates]][[Category:Buzzer_Templates]]</noinclude>
518d7ed5e7958eaa33102143464f5d3618bb341e
Template:Disambigm
10
495
2165
2164
2022-04-25T02:13:34Z
Jaswacker
30585766
wikitext
text/x-wiki
{| style="margin:-.6em .1em 0em .1em; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:flex;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This subject of this article goes by multiple names that apply to other articles as well. See [[{{{1}}}]]{{#if:{{{2|}}}|, [[{{{2}}}]]|}}{{#if:{{{3|}}}|, [[{{{3}}}]]|}}{{#if:{{{4|}}}|, [[{{{4}}}]]|}}{{#if:{{{5|}}}|, [[{{{5}}}]]|}}{{#if:{{{6|}}}|, [[{{{6}}}]]|}}{{#if:{{{7|}}}|, [[{{{7}}}]]|}}{{#if:{{{8|}}}|, [[{{{8}}}]]|}}{{#if:{{{9|}}}|, [[{{{9}}}]]|}}{{#if:{{{10|}}}|, [[{{{10}}}]]|}}.''
|}<includeonly>
[[Category:Disambiguation pages]]
</includeonly>
<noinclude>
Use this template at the top of a page with a topic title that can be easily confused with other articles. Either use this template to link to the disambiguation page for the topic, or a few relevant pages with similar names.
To include this template in another page, write: (Up to 10 links can be added.)
:<nowiki>{{Disambigm|''article''|''article''|''article''}}</nowiki>
[[Category:Templates]]
701b962ea2fce25356ec889c8504042cd9ec808a
2166
2165
2022-04-25T02:14:20Z
Jaswacker
30585766
wikitext
text/x-wiki
{| style="margin:-.6em 0em .1em .1em; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:flex;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This subject of this article goes by multiple names that apply to other articles as well. See [[{{{1}}}]]{{#if:{{{2|}}}|, [[{{{2}}}]]|}}{{#if:{{{3|}}}|, [[{{{3}}}]]|}}{{#if:{{{4|}}}|, [[{{{4}}}]]|}}{{#if:{{{5|}}}|, [[{{{5}}}]]|}}{{#if:{{{6|}}}|, [[{{{6}}}]]|}}{{#if:{{{7|}}}|, [[{{{7}}}]]|}}{{#if:{{{8|}}}|, [[{{{8}}}]]|}}{{#if:{{{9|}}}|, [[{{{9}}}]]|}}{{#if:{{{10|}}}|, [[{{{10}}}]]|}}.''
|}<includeonly>
[[Category:Disambiguation pages]]
</includeonly>
<noinclude>
Use this template at the top of a page with a topic title that can be easily confused with other articles. Either use this template to link to the disambiguation page for the topic, or a few relevant pages with similar names.
To include this template in another page, write: (Up to 10 links can be added.)
:<nowiki>{{Disambigm|''article''|''article''|''article''}}</nowiki>
[[Category:Templates]]
9b071aa4805c411a6cd4d2c29d3652d04eb5b014
2167
2166
2022-04-25T02:14:37Z
Jaswacker
30585766
wikitext
text/x-wiki
{| style="margin:-.7em 0em .1em .1em; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:flex;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This subject of this article goes by multiple names that apply to other articles as well. See [[{{{1}}}]]{{#if:{{{2|}}}|, [[{{{2}}}]]|}}{{#if:{{{3|}}}|, [[{{{3}}}]]|}}{{#if:{{{4|}}}|, [[{{{4}}}]]|}}{{#if:{{{5|}}}|, [[{{{5}}}]]|}}{{#if:{{{6|}}}|, [[{{{6}}}]]|}}{{#if:{{{7|}}}|, [[{{{7}}}]]|}}{{#if:{{{8|}}}|, [[{{{8}}}]]|}}{{#if:{{{9|}}}|, [[{{{9}}}]]|}}{{#if:{{{10|}}}|, [[{{{10}}}]]|}}.''
|}<includeonly>
[[Category:Disambiguation pages]]
</includeonly>
<noinclude>
Use this template at the top of a page with a topic title that can be easily confused with other articles. Either use this template to link to the disambiguation page for the topic, or a few relevant pages with similar names.
To include this template in another page, write: (Up to 10 links can be added.)
:<nowiki>{{Disambigm|''article''|''article''|''article''}}</nowiki>
[[Category:Templates]]
d3bfe49378b156c3f46c05857ad769c875c13959
2168
2167
2022-04-25T02:15:02Z
Jaswacker
30585766
wikitext
text/x-wiki
{| style="margin:-.8em 0em .1em .1em; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:flex;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This subject of this article goes by multiple names that apply to other articles as well. See [[{{{1}}}]]{{#if:{{{2|}}}|, [[{{{2}}}]]|}}{{#if:{{{3|}}}|, [[{{{3}}}]]|}}{{#if:{{{4|}}}|, [[{{{4}}}]]|}}{{#if:{{{5|}}}|, [[{{{5}}}]]|}}{{#if:{{{6|}}}|, [[{{{6}}}]]|}}{{#if:{{{7|}}}|, [[{{{7}}}]]|}}{{#if:{{{8|}}}|, [[{{{8}}}]]|}}{{#if:{{{9|}}}|, [[{{{9}}}]]|}}{{#if:{{{10|}}}|, [[{{{10}}}]]|}}.''
|}<includeonly>
[[Category:Disambiguation pages]]
</includeonly>
<noinclude>
Use this template at the top of a page with a topic title that can be easily confused with other articles. Either use this template to link to the disambiguation page for the topic, or a few relevant pages with similar names.
To include this template in another page, write: (Up to 10 links can be added.)
:<nowiki>{{Disambigm|''article''|''article''|''article''}}</nowiki>
[[Category:Templates]]
68c8bca28cacdfefb68b8197e6cc34ed1277fe94
2169
2168
2022-04-25T02:15:29Z
Jaswacker
30585766
wikitext
text/x-wiki
{| style="margin:-.2em 0em .1em .1em; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:flex;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This subject of this article goes by multiple names that apply to other articles as well. See [[{{{1}}}]]{{#if:{{{2|}}}|, [[{{{2}}}]]|}}{{#if:{{{3|}}}|, [[{{{3}}}]]|}}{{#if:{{{4|}}}|, [[{{{4}}}]]|}}{{#if:{{{5|}}}|, [[{{{5}}}]]|}}{{#if:{{{6|}}}|, [[{{{6}}}]]|}}{{#if:{{{7|}}}|, [[{{{7}}}]]|}}{{#if:{{{8|}}}|, [[{{{8}}}]]|}}{{#if:{{{9|}}}|, [[{{{9}}}]]|}}{{#if:{{{10|}}}|, [[{{{10}}}]]|}}.''
|}<includeonly>
[[Category:Disambiguation pages]]
</includeonly>
<noinclude>
Use this template at the top of a page with a topic title that can be easily confused with other articles. Either use this template to link to the disambiguation page for the topic, or a few relevant pages with similar names.
To include this template in another page, write: (Up to 10 links can be added.)
:<nowiki>{{Disambigm|''article''|''article''|''article''}}</nowiki>
[[Category:Templates]]
19469a8801add978213a6fbd597bb0a99d4eb414
2170
2169
2022-04-25T02:15:56Z
Jaswacker
30585766
wikitext
text/x-wiki
{| style="margin:-.4em 0em .1em .1em; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:block;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This subject of this article goes by multiple names that apply to other articles as well. See [[{{{1}}}]]{{#if:{{{2|}}}|, [[{{{2}}}]]|}}{{#if:{{{3|}}}|, [[{{{3}}}]]|}}{{#if:{{{4|}}}|, [[{{{4}}}]]|}}{{#if:{{{5|}}}|, [[{{{5}}}]]|}}{{#if:{{{6|}}}|, [[{{{6}}}]]|}}{{#if:{{{7|}}}|, [[{{{7}}}]]|}}{{#if:{{{8|}}}|, [[{{{8}}}]]|}}{{#if:{{{9|}}}|, [[{{{9}}}]]|}}{{#if:{{{10|}}}|, [[{{{10}}}]]|}}.''
|}<includeonly>
[[Category:Disambiguation pages]]
</includeonly>
<noinclude>
Use this template at the top of a page with a topic title that can be easily confused with other articles. Either use this template to link to the disambiguation page for the topic, or a few relevant pages with similar names.
To include this template in another page, write: (Up to 10 links can be added.)
:<nowiki>{{Disambigm|''article''|''article''|''article''}}</nowiki>
[[Category:Templates]]
26a933e71bb5ecd228e93a7a79aaffdf68db4f95
2177
2170
2022-04-25T02:20:17Z
Jaswacker
30585766
wikitext
text/x-wiki
{| style="margin:-.4em .1em -1em .1em; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:block;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This subject of this article goes by multiple names that apply to other articles as well. See [[{{{1}}}]]{{#if:{{{2|}}}|, [[{{{2}}}]]|}}{{#if:{{{3|}}}|, [[{{{3}}}]]|}}{{#if:{{{4|}}}|, [[{{{4}}}]]|}}{{#if:{{{5|}}}|, [[{{{5}}}]]|}}{{#if:{{{6|}}}|, [[{{{6}}}]]|}}{{#if:{{{7|}}}|, [[{{{7}}}]]|}}{{#if:{{{8|}}}|, [[{{{8}}}]]|}}{{#if:{{{9|}}}|, [[{{{9}}}]]|}}{{#if:{{{10|}}}|, [[{{{10}}}]]|}}.''
|}<includeonly>
[[Category:Disambiguation pages]]
</includeonly>
<noinclude>
Use this template at the top of a page with a topic title that can be easily confused with other articles. Either use this template to link to the disambiguation page for the topic, or a few relevant pages with similar names.
To include this template in another page, write: (Up to 10 links can be added.)
:<nowiki>{{Disambigm|''article''|''article''|''article''}}</nowiki>
[[Category:Templates]]
cd5a48ddc6ce85bc4f6be9207561c673cc5f8aee
2191
2177
2022-04-25T02:32:16Z
Jaswacker
30585766
wikitext
text/x-wiki
{| style="margin:-.4em .1em 0em .1em; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:block;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This subject of this article goes by multiple names that apply to other articles as well. See [[{{{1}}}]]{{#if:{{{2|}}}|, [[{{{2}}}]]|}}{{#if:{{{3|}}}|, [[{{{3}}}]]|}}{{#if:{{{4|}}}|, [[{{{4}}}]]|}}{{#if:{{{5|}}}|, [[{{{5}}}]]|}}{{#if:{{{6|}}}|, [[{{{6}}}]]|}}{{#if:{{{7|}}}|, [[{{{7}}}]]|}}{{#if:{{{8|}}}|, [[{{{8}}}]]|}}{{#if:{{{9|}}}|, [[{{{9}}}]]|}}{{#if:{{{10|}}}|, [[{{{10}}}]]|}}.''
|}<includeonly>
[[Category:Disambiguation pages]]
</includeonly>
<noinclude>
Use this template at the top of a page with a topic title that can be easily confused with other articles. Either use this template to link to the disambiguation page for the topic, or a few relevant pages with similar names.
To include this template in another page, write: (Up to 10 links can be added.)
:<nowiki>{{Disambigm|''article''|''article''|''article''}}</nowiki>
[[Category:Templates]]
53f6a944e9f258e14e9e560a5a0cef76e8c17667
Template:Disambig
10
22
2171
2163
2022-04-25T02:16:31Z
Jaswacker
30585766
wikitext
text/x-wiki
{| style="margin:-.4em 0em .1em .1em; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:block;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This is a disambiguation page: a list of articles associated with the same title. If an [[Special:Whatlinkshere/{{NAMESPACE}}:{{PAGENAME}}|internal link]] referred you to this page, you may wish to change the link to point directly to the intended article.''
|}<includeonly>
[[Category:Disambiguation pages]]
</includeonly>
<noinclude>
Use this template at the top of a disambiguation page. A disambiguation page lists at least three meanings for the term in question, and the name of the disambiguation page should end with "(Disambiguation)".
To include this template in another page, write:
:<nowiki>{{Disambig}}</nowiki>
[[Category:Templates]]
59da9437e5f22cd03e8bf4ebb942b4384a171413
2172
2171
2022-04-25T02:17:44Z
Jaswacker
30585766
wikitext
text/x-wiki
{| style="margin:-.4em -.2em .1em .1em; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:block;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This is a disambiguation page: a list of articles associated with the same title. If an [[Special:Whatlinkshere/{{NAMESPACE}}:{{PAGENAME}}|internal link]] referred you to this page, you may wish to change the link to point directly to the intended article.''
|}<includeonly>
[[Category:Disambiguation pages]]
</includeonly>
<noinclude>
Use this template at the top of a disambiguation page. A disambiguation page lists at least three meanings for the term in question, and the name of the disambiguation page should end with "(Disambiguation)".
To include this template in another page, write:
:<nowiki>{{Disambig}}</nowiki>
[[Category:Templates]]
0371eb225f81ff63b0c703c5e3f633703cc288ac
2173
2172
2022-04-25T02:18:03Z
Jaswacker
30585766
wikitext
text/x-wiki
{| style="margin:-.4em -1em .1em .1em; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:block;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This is a disambiguation page: a list of articles associated with the same title. If an [[Special:Whatlinkshere/{{NAMESPACE}}:{{PAGENAME}}|internal link]] referred you to this page, you may wish to change the link to point directly to the intended article.''
|}<includeonly>
[[Category:Disambiguation pages]]
</includeonly>
<noinclude>
Use this template at the top of a disambiguation page. A disambiguation page lists at least three meanings for the term in question, and the name of the disambiguation page should end with "(Disambiguation)".
To include this template in another page, write:
:<nowiki>{{Disambig}}</nowiki>
[[Category:Templates]]
0750bcedc1587af8674dc98ddbf94621f096770e
2175
2173
2022-04-25T02:19:16Z
Jaswacker
30585766
wikitext
text/x-wiki
{| style="margin:-.4em 1em .1em .1em; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:block;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This is a disambiguation page: a list of articles associated with the same title. If an [[Special:Whatlinkshere/{{NAMESPACE}}:{{PAGENAME}}|internal link]] referred you to this page, you may wish to change the link to point directly to the intended article.''
|}<includeonly>
[[Category:Disambiguation pages]]
</includeonly>
<noinclude>
Use this template at the top of a disambiguation page. A disambiguation page lists at least three meanings for the term in question, and the name of the disambiguation page should end with "(Disambiguation)".
To include this template in another page, write:
:<nowiki>{{Disambig}}</nowiki>
[[Category:Templates]]
4eb28c434e9f8749a9a5302de119c8a3e155d167
2176
2175
2022-04-25T02:20:07Z
Jaswacker
30585766
wikitext
text/x-wiki
{| style="margin:-.4em .1em -1em .1em; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:block;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This is a disambiguation page: a list of articles associated with the same title. If an [[Special:Whatlinkshere/{{NAMESPACE}}:{{PAGENAME}}|internal link]] referred you to this page, you may wish to change the link to point directly to the intended article.''
|}<includeonly>
[[Category:Disambiguation pages]]
</includeonly>
<noinclude>
Use this template at the top of a disambiguation page. A disambiguation page lists at least three meanings for the term in question, and the name of the disambiguation page should end with "(Disambiguation)".
To include this template in another page, write:
:<nowiki>{{Disambig}}</nowiki>
[[Category:Templates]]
6207a2b466ba9ccc24b3acd11587e71a558fa5f2
2190
2176
2022-04-25T02:32:07Z
Jaswacker
30585766
wikitext
text/x-wiki
{| style="margin:-.4em .1em 0em .1em; padding:.5em; background:#f7f8ff; border:thin solid #aaa;display:block;" cellpadding="0" cellspacing="0" class="tt1_disambig"
|-
|''This is a disambiguation page: a list of articles associated with the same title. If an [[Special:Whatlinkshere/{{NAMESPACE}}:{{PAGENAME}}|internal link]] referred you to this page, you may wish to change the link to point directly to the intended article.''
|}<includeonly>
[[Category:Disambiguation pages]]
</includeonly>
<noinclude>
Use this template at the top of a disambiguation page. A disambiguation page lists at least three meanings for the term in question, and the name of the disambiguation page should end with "(Disambiguation)".
To include this template in another page, write:
:<nowiki>{{Disambig}}</nowiki>
[[Category:Templates]]
a71e2d1cee83719bb670c8a8a766c0a5c964b713
Ben Tennyson (Disambiguation)
0
24
2174
2027
2022-04-25T02:18:31Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
[[File:attwn.png|thumb|right|The gang's all here!]]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
{{quote|Alien or not, I'm still the hero.|[[Ben Tennyson (Omniverse Video Game)|Ben]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''[[Ben Tennyson (Prime)/Toys|Toys]] • [[Ben Tennyson (Prime)/Merchandise|Merchandise]]''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''[[Ben Tennyson (Reboot)/Toys|Toys]] • [[Ben Tennyson (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:RB10k.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:c.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|"Bad Ben"]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|"Benzarro"]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|"Mad Ben"]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|"Nega Ben"]]
File:c.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:c.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:c.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:c.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* [[Ben Tennyson (Prime)]]
* [[Ben Tennyson (Reboot)]]
* [[Ben 10,000 (Original Series)]]
* [[Ultimate Ben]] transformation
* [[Ben 10,000 (Ultimate Alien)]]
* [[Eon (Ultimate Alien)]]
* [[Eon (Omniverse)]]
* [[Ben 10,000 (Omniverse)]]
* [[Ben 10,000 (Reboot)]]
* [[Ben Tennyson (Evil Dimension)]]
* [[Ben Tennyson (Race Against Time)]]
* [[Ben Tennyson (Alien Swarm)]]
* [[Ben Tennyson (Dimension 23)]]
* [[Ben Tennyson (No-Watch Dimension)]]
* [[Ben Tennyson (Bad Dimension)]]
* [[Ben Tennyson (Negaverse)]]
* [[Ben Tennyson (Madworld)]]
* [[Ben Tennyson (Zombiverse)]]
* [[Ben Tennyson (Original Series Dimension)]]
* [[Ben Tennyson (Ultimate Alien Dimension)]]
* [[Ben Tennyson (Alien Force Dimension)]]
* [[Ben Tennyson (Omniverse Dimension)]]
* [[Ben Tennyson (Dimension 12041.5)]] Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction''
* [[Ben Tennyson (Maximillian's Dimension)]] Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction''
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters#Evil Ben's Victims|Evil Ben's Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run based on Omniverse, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Ben 10 Franklin]]'', see [[Benjamin Franklin#Ben 10 Franklin|Benjamin Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Cowboys and Alien Force]]'', see [[Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
* [[Ben Tennyson (Hyperscan)]] game
* [[Ben Tennyson (Prime)|Ben Tennyson (Alien Force Video Game)]] canon to Prime, placed in this list temporarily so we don't forget about it
* [[Ben Tennyson (Omniverse Video Game)]] refers to the alternate timeline made in the game. the events of Omniverse 2 are canon.
* [[Ben Tennyson (Reboot Video Game)]] game, may be canon to the reboot or to the other reboot game(s)
* [[Ben Tennyson (Power Trip)]] game, may be canon to the reboot or to the other reboot game(s)
* [[Ben Tennyson (Galactic Racing)]] game. likely not canon.
* [[Ben Tennyson (Classics)]] comics
* [[Ben Tennyson (Perfect Square)]] comics
* [[Ben Tennyson (Leapfrog)]] AF storybook, two UA learning games
* [[Ben Tennyson (Del Rey)]] manga
* [[Ben Tennyson (BOOM! Studios)]] comics
* [[Ben Tennyson (Bandai Comics)]] comics
* [[Ben Tennyson (Alien Race)]] game. Might be canon. Might not have any story implications at all (in that case, this article is not needed)
* [[Ben Tennyson (Wrath of Psychobos)]] game. Might be canon to prime, might not.
* [[Ben Tennyson (JoongAng MB Jr)]] korean comics (science hero and exploring hero)
* [[Ben Tennyson (Fuel Run)]] game
* [[Ben Tennyson (V-Tech)]] mobigo kids learning game called "Ben 10: Ultimate Alien: Mind Mine"
* [[Ben Tennyson (Storybooks)]] picture books made that adapted episodes of UAF
* [[Ben Tennyson (Scholastic)]] chapter books published by scholastic of original stories set during UAF
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* [[Omnitrix (Disambiguation)]]
* [[Omnitrix Wielders]]
* [[Albedo]]
* [[Kenny Tennyson (Disambiguation)]]
* [[Kevin Levin (Reboot)]]
* [[Gwen 10 (Disambiguation)]]
* [[Max Tennyson (Gwen 10)]]
* [[Argit (Argitrix Dimension)]]
* [[Timothy|Tim 10]]
{{-}}
54d7f455a1e5b964dbd4dc7ee859a4089482c6a7
2211
2174
2022-04-25T02:54:28Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|rbt|auu|b23|bad|zar|neg|mad|g10}}
{{Disambig}}
[[File:attwn.png|thumb|right|The gang's all here!]]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
{{quote|Alien or not, I'm still the hero.|[[Ben Tennyson (Omniverse Video Game)|Ben]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''[[Ben Tennyson (Prime)/Toys|Toys]] • [[Ben Tennyson (Prime)/Merchandise|Merchandise]]''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''[[Ben Tennyson (Reboot)/Toys|Toys]] • [[Ben Tennyson (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:RB10k.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:c.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|"Bad Ben"]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|"Benzarro"]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|"Mad Ben"]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|"Nega Ben"]]
File:c.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:c.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:c.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:c.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* [[Ben Tennyson (Prime)]]
* [[Ben Tennyson (Reboot)]]
* [[Ben 10,000 (Original Series)]]
* [[Ultimate Ben]] transformation
* [[Ben 10,000 (Ultimate Alien)]]
* [[Eon (Ultimate Alien)]]
* [[Eon (Omniverse)]]
* [[Ben 10,000 (Omniverse)]]
* [[Ben 10,000 (Reboot)]]
* [[Ben Tennyson (Evil Dimension)]]
* [[Ben Tennyson (Race Against Time)]]
* [[Ben Tennyson (Alien Swarm)]]
* [[Ben Tennyson (Dimension 23)]]
* [[Ben Tennyson (No-Watch Dimension)]]
* [[Ben Tennyson (Bad Dimension)]]
* [[Ben Tennyson (Negaverse)]]
* [[Ben Tennyson (Madworld)]]
* [[Ben Tennyson (Zombiverse)]]
* [[Ben Tennyson (Original Series Dimension)]]
* [[Ben Tennyson (Ultimate Alien Dimension)]]
* [[Ben Tennyson (Alien Force Dimension)]]
* [[Ben Tennyson (Omniverse Dimension)]]
* [[Ben Tennyson (Dimension 12041.5)]] Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction''
* [[Ben Tennyson (Maximillian's Dimension)]] Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction''
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters#Evil Ben's Victims|Evil Ben's Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run based on Omniverse, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Ben 10 Franklin]]'', see [[Benjamin Franklin#Ben 10 Franklin|Benjamin Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Cowboys and Alien Force]]'', see [[Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
* [[Ben Tennyson (Hyperscan)]] game
* [[Ben Tennyson (Prime)|Ben Tennyson (Alien Force Video Game)]] canon to Prime, placed in this list temporarily so we don't forget about it
* [[Ben Tennyson (Omniverse Video Game)]] refers to the alternate timeline made in the game. the events of Omniverse 2 are canon.
* [[Ben Tennyson (Reboot Video Game)]] game, may be canon to the reboot or to the other reboot game(s)
* [[Ben Tennyson (Power Trip)]] game, may be canon to the reboot or to the other reboot game(s)
* [[Ben Tennyson (Galactic Racing)]] game. likely not canon.
* [[Ben Tennyson (Classics)]] comics
* [[Ben Tennyson (Perfect Square)]] comics
* [[Ben Tennyson (Leapfrog)]] AF storybook, two UA learning games
* [[Ben Tennyson (Del Rey)]] manga
* [[Ben Tennyson (BOOM! Studios)]] comics
* [[Ben Tennyson (Bandai Comics)]] comics
* [[Ben Tennyson (Alien Race)]] game. Might be canon. Might not have any story implications at all (in that case, this article is not needed)
* [[Ben Tennyson (Wrath of Psychobos)]] game. Might be canon to prime, might not.
* [[Ben Tennyson (JoongAng MB Jr)]] korean comics (science hero and exploring hero)
* [[Ben Tennyson (Fuel Run)]] game
* [[Ben Tennyson (V-Tech)]] mobigo kids learning game called "Ben 10: Ultimate Alien: Mind Mine"
* [[Ben Tennyson (Storybooks)]] picture books made that adapted episodes of UAF
* [[Ben Tennyson (Scholastic)]] chapter books published by scholastic of original stories set during UAF
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* [[Omnitrix (Disambiguation)]]
* [[Omnitrix Wielders]]
* [[Albedo]]
* [[Kenny Tennyson (Disambiguation)]]
* [[Kevin Levin (Reboot)]]
* [[Gwen 10 (Disambiguation)]]
* [[Max Tennyson (Gwen 10)]]
* [[Argit (Argitrix Dimension)]]
* [[Timothy|Tim 10]]
{{-}}
daf9b0c6f9a46c4c6d90f3c87dc9d3af8811d859
2212
2211
2022-04-25T02:54:59Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|rbt|auu|b23|bad|zar|mad|neg|g10}}
{{Disambig}}
[[File:attwn.png|thumb|right|The gang's all here!]]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
{{quote|Alien or not, I'm still the hero.|[[Ben Tennyson (Omniverse Video Game)|Ben]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''[[Ben Tennyson (Prime)/Toys|Toys]] • [[Ben Tennyson (Prime)/Merchandise|Merchandise]]''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''[[Ben Tennyson (Reboot)/Toys|Toys]] • [[Ben Tennyson (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:RB10k.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:c.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|"Bad Ben"]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|"Benzarro"]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|"Mad Ben"]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|"Nega Ben"]]
File:c.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:c.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:c.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:c.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* [[Ben Tennyson (Prime)]]
* [[Ben Tennyson (Reboot)]]
* [[Ben 10,000 (Original Series)]]
* [[Ultimate Ben]] transformation
* [[Ben 10,000 (Ultimate Alien)]]
* [[Eon (Ultimate Alien)]]
* [[Eon (Omniverse)]]
* [[Ben 10,000 (Omniverse)]]
* [[Ben 10,000 (Reboot)]]
* [[Ben Tennyson (Evil Dimension)]]
* [[Ben Tennyson (Race Against Time)]]
* [[Ben Tennyson (Alien Swarm)]]
* [[Ben Tennyson (Dimension 23)]]
* [[Ben Tennyson (No-Watch Dimension)]]
* [[Ben Tennyson (Bad Dimension)]]
* [[Ben Tennyson (Negaverse)]]
* [[Ben Tennyson (Madworld)]]
* [[Ben Tennyson (Zombiverse)]]
* [[Ben Tennyson (Original Series Dimension)]]
* [[Ben Tennyson (Ultimate Alien Dimension)]]
* [[Ben Tennyson (Alien Force Dimension)]]
* [[Ben Tennyson (Omniverse Dimension)]]
* [[Ben Tennyson (Dimension 12041.5)]] Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction''
* [[Ben Tennyson (Maximillian's Dimension)]] Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction''
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters#Evil Ben's Victims|Evil Ben's Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run based on Omniverse, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Ben 10 Franklin]]'', see [[Benjamin Franklin#Ben 10 Franklin|Benjamin Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Cowboys and Alien Force]]'', see [[Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
* [[Ben Tennyson (Hyperscan)]] game
* [[Ben Tennyson (Prime)|Ben Tennyson (Alien Force Video Game)]] canon to Prime, placed in this list temporarily so we don't forget about it
* [[Ben Tennyson (Omniverse Video Game)]] refers to the alternate timeline made in the game. the events of Omniverse 2 are canon.
* [[Ben Tennyson (Reboot Video Game)]] game, may be canon to the reboot or to the other reboot game(s)
* [[Ben Tennyson (Power Trip)]] game, may be canon to the reboot or to the other reboot game(s)
* [[Ben Tennyson (Galactic Racing)]] game. likely not canon.
* [[Ben Tennyson (Classics)]] comics
* [[Ben Tennyson (Perfect Square)]] comics
* [[Ben Tennyson (Leapfrog)]] AF storybook, two UA learning games
* [[Ben Tennyson (Del Rey)]] manga
* [[Ben Tennyson (BOOM! Studios)]] comics
* [[Ben Tennyson (Bandai Comics)]] comics
* [[Ben Tennyson (Alien Race)]] game. Might be canon. Might not have any story implications at all (in that case, this article is not needed)
* [[Ben Tennyson (Wrath of Psychobos)]] game. Might be canon to prime, might not.
* [[Ben Tennyson (JoongAng MB Jr)]] korean comics (science hero and exploring hero)
* [[Ben Tennyson (Fuel Run)]] game
* [[Ben Tennyson (V-Tech)]] mobigo kids learning game called "Ben 10: Ultimate Alien: Mind Mine"
* [[Ben Tennyson (Storybooks)]] picture books made that adapted episodes of UAF
* [[Ben Tennyson (Scholastic)]] chapter books published by scholastic of original stories set during UAF
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* [[Omnitrix (Disambiguation)]]
* [[Omnitrix Wielders]]
* [[Albedo]]
* [[Kenny Tennyson (Disambiguation)]]
* [[Kevin Levin (Reboot)]]
* [[Gwen 10 (Disambiguation)]]
* [[Max Tennyson (Gwen 10)]]
* [[Argit (Argitrix Dimension)]]
* [[Timothy|Tim 10]]
{{-}}
310006439d1aa2531a183614c6e68beb776bcdb4
2213
2212
2022-04-25T02:58:06Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|rbt|auu|b23|bad|zar|mad|neg|g10}}
{{Disambig}}
<div style="margin-top:-1.2em;">
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
[[File:attwn.png|thumb|right|The gang's all here!]]
{{quote|Alien or not, I'm still the hero.|[[Ben Tennyson (Omniverse Video Game)|Ben]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''[[Ben Tennyson (Prime)/Toys|Toys]] • [[Ben Tennyson (Prime)/Merchandise|Merchandise]]''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''[[Ben Tennyson (Reboot)/Toys|Toys]] • [[Ben Tennyson (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:RB10k.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:c.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|"Bad Ben"]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|"Benzarro"]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|"Mad Ben"]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|"Nega Ben"]]
File:c.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:c.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:c.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:c.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* [[Ben Tennyson (Prime)]]
* [[Ben Tennyson (Reboot)]]
* [[Ben 10,000 (Original Series)]]
* [[Ultimate Ben]] transformation
* [[Ben 10,000 (Ultimate Alien)]]
* [[Eon (Ultimate Alien)]]
* [[Eon (Omniverse)]]
* [[Ben 10,000 (Omniverse)]]
* [[Ben 10,000 (Reboot)]]
* [[Ben Tennyson (Evil Dimension)]]
* [[Ben Tennyson (Race Against Time)]]
* [[Ben Tennyson (Alien Swarm)]]
* [[Ben Tennyson (Dimension 23)]]
* [[Ben Tennyson (No-Watch Dimension)]]
* [[Ben Tennyson (Bad Dimension)]]
* [[Ben Tennyson (Negaverse)]]
* [[Ben Tennyson (Madworld)]]
* [[Ben Tennyson (Zombiverse)]]
* [[Ben Tennyson (Original Series Dimension)]]
* [[Ben Tennyson (Ultimate Alien Dimension)]]
* [[Ben Tennyson (Alien Force Dimension)]]
* [[Ben Tennyson (Omniverse Dimension)]]
* [[Ben Tennyson (Dimension 12041.5)]] Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction''
* [[Ben Tennyson (Maximillian's Dimension)]] Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction''
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters#Evil Ben's Victims|Evil Ben's Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run based on Omniverse, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Ben 10 Franklin]]'', see [[Benjamin Franklin#Ben 10 Franklin|Benjamin Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Cowboys and Alien Force]]'', see [[Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
* [[Ben Tennyson (Hyperscan)]] game
* [[Ben Tennyson (Prime)|Ben Tennyson (Alien Force Video Game)]] canon to Prime, placed in this list temporarily so we don't forget about it
* [[Ben Tennyson (Omniverse Video Game)]] refers to the alternate timeline made in the game. the events of Omniverse 2 are canon.
* [[Ben Tennyson (Reboot Video Game)]] game, may be canon to the reboot or to the other reboot game(s)
* [[Ben Tennyson (Power Trip)]] game, may be canon to the reboot or to the other reboot game(s)
* [[Ben Tennyson (Galactic Racing)]] game. likely not canon.
* [[Ben Tennyson (Classics)]] comics
* [[Ben Tennyson (Perfect Square)]] comics
* [[Ben Tennyson (Leapfrog)]] AF storybook, two UA learning games
* [[Ben Tennyson (Del Rey)]] manga
* [[Ben Tennyson (BOOM! Studios)]] comics
* [[Ben Tennyson (Bandai Comics)]] comics
* [[Ben Tennyson (Alien Race)]] game. Might be canon. Might not have any story implications at all (in that case, this article is not needed)
* [[Ben Tennyson (Wrath of Psychobos)]] game. Might be canon to prime, might not.
* [[Ben Tennyson (JoongAng MB Jr)]] korean comics (science hero and exploring hero)
* [[Ben Tennyson (Fuel Run)]] game
* [[Ben Tennyson (V-Tech)]] mobigo kids learning game called "Ben 10: Ultimate Alien: Mind Mine"
* [[Ben Tennyson (Storybooks)]] picture books made that adapted episodes of UAF
* [[Ben Tennyson (Scholastic)]] chapter books published by scholastic of original stories set during UAF
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* [[Omnitrix (Disambiguation)]]
* [[Omnitrix Wielders]]
* [[Albedo]]
* [[Kenny Tennyson (Disambiguation)]]
* [[Kevin Levin (Reboot)]]
* [[Gwen 10 (Disambiguation)]]
* [[Max Tennyson (Gwen 10)]]
* [[Argit (Argitrix Dimension)]]
* [[Timothy|Tim 10]]
{{-}}
e2e738212fe81ef588cb716d9ad1587f338b3bc2
Template:Buzz
10
531
2178
2157
2022-04-25T02:20:53Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: flex; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 5px; margin-top: -.4em; margin-bottom: .7em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''without a disambig header''' and '''3 links including the main page'''
[[Category:Templates]][[Category:Buzzer_Templates]]</noinclude>
99f422714d09d4e48939e649d80efad6976fca73
2183
2178
2022-04-25T02:29:10Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 5px; margin-top: -.4em; margin-bottom: .7em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''without a disambig header''' and '''3 links including the main page'''
[[Category:Templates]][[Category:Buzzer_Templates]]</noinclude>
c4eaef5064a668b7bff95ca45bd4f586d2f7e961
2188
2183
2022-04-25T02:31:05Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 5px; margin-top: -.4em; margin-bottom: .7em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''without a disambig header''' and '''3 links including the main page'''
[[Category:Templates]][[Category:Buzzer_Templates]]</noinclude>
56c8268020c9dde52cf3eb3444bc4bdf8c1c9136
Template:Buzzb
10
534
2179
2130
2022-04-25T02:21:02Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: flex; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -2.9em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''with a disambig header''' and '''3 links including the main page'''
[[Category:Templates]][[Category:Buzzer_Templates]]</noinclude>
618fa9b77a9deb4d10eb0d063549e1a369710fb4
2184
2179
2022-04-25T02:29:20Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -2.9em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''with a disambig header''' and '''3 links including the main page'''
[[Category:Templates]][[Category:Buzzer_Templates]]</noinclude>
e7826828298bb4e40c1e6112f61b422221e2efe6
2186
2184
2022-04-25T02:30:43Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -2.9em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''with a disambig header''' and '''3 links including the main page'''
[[Category:Templates]][[Category:Buzzer_Templates]]</noinclude>
6e0b523b3318369cf2aa841331e76fef43256672
Template:Buzzb4
10
536
2180
2101
2022-04-25T02:21:11Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: flex; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -2.9em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''with a disambig header''' and '''4 links including the main page'''
[[Category:Templates]][[Category:Buzzer_Templates]]</noinclude>
1ec8eeb06a746ffcc8d233053481acd92137f32d
2185
2180
2022-04-25T02:29:28Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -2.9em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''with a disambig header''' and '''4 links including the main page'''
[[Category:Templates]][[Category:Buzzer_Templates]]</noinclude>
e41f9a9671d0d20d05bd6af1780a42e7107bbd25
2187
2185
2022-04-25T02:30:53Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 1px 1px 5px 5px; margin-top: -2.9em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''with a disambig header''' and '''4 links including the main page'''
[[Category:Templates]][[Category:Buzzer_Templates]]</noinclude>
b77de16d73bd366b326572eb83bced8198370b95
Template:Buzz4
10
535
2181
2158
2022-04-25T02:21:21Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: flex; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 5px; margin-top: -.4em; margin-bottom: .7em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''without a disambig header''' and '''4 links including the main page'''
[[Category:Templates]][[Category:Buzzer_Templates]]</noinclude>
da20d2abaf50d0c3bd6640ba9148b0072ae71fc5
2182
2181
2022-04-25T02:29:00Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: inline-block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 5px; margin-top: -.4em; margin-bottom: .7em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''without a disambig header''' and '''4 links including the main page'''
[[Category:Templates]][[Category:Buzzer_Templates]]</noinclude>
518d7ed5e7958eaa33102143464f5d3618bb341e
2189
2182
2022-04-25T02:31:19Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{| cellspacing="0" style="display: block; float: right; margin-right: .1em;" {{#ifeq:{{{print|false}}}|false|class="noprint"}}
|-
| style="padding:0 1em 0 1em;" |<div style="padding:.3em; background-color:#cfd0d7; border:solid 1px #3d3e4c; width:100%; border-radius: 5px; margin-top: -.4em; margin-bottom: .7em; text-align:center; display:inline-block; float:right; {{ #if:{{{width|}}}| width:{{{width}}};|}}{{ #if:{{{clearall|}}}| clear: both;|}}">[[{{{1}}}|Main]] • [[{{{1}}}/{{{2}}}|{{{2}}}]] • [[{{{1}}}/{{{3}}}|{{{3}}}]] • [[{{{1}}}/{{{4}}}|{{{4}}}]]</div>
<div style="clear: both;"></div>
</includeonly><noinclude>
<pre>
{{buzz|title|link|link|link}}
</pre>
This template is for a buzzer on a page '''without a disambig header''' and '''4 links including the main page'''
[[Category:Templates]][[Category:Buzzer_Templates]]</noinclude>
87a976b615286b9b2ae3ab618e39e8a22d30ee27
Greenfield:Sandbox
0
532
2192
2162
2022-04-25T02:33:02Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|auu|auu|auu|auu|auu|auu|auu|auu|auu|auu|auu|auu|auu|auu|auu}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
2398cf483d3a9c05b772bf841e8c3387680c83de
2204
2192
2022-04-25T02:49:55Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|auu|alf|ula|abd|ult|num|onv|aso|rum|b23|g10|mad|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
4fdc74d28c1cc967736613be9e93a0168ae9095a
2205
2204
2022-04-25T02:50:32Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|aso|rum|b23|g10|mad|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
b432c98bb5c372201f4c912e1e273ffa8692605c
Template:Trix/icons
10
12
2193
2143
2022-04-25T02:39:42Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{{#if:{{{custom|}}}|
{{#tag:imagemap
|Image:{{{custom}}}{{!}}{{{cSize|40px}}}
default [[{{{cLink}}}{{!}}{{{cPretty|{{{cLink}}}}}}]]
desc none
}}|}}<!--
Options
-->{{#if:{{{option|}}}|{{#switch:{{{option}}}
|ogs={{trix/icons_recurs|custom=OGS_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Prime Continuity}}
|non={{trix/icons_recurs|custom=NON_Icon.png|cLink=Continuity#Non-Canon|cPretty=Non-Canon}}
|auu={{trix/icons_recurs|custom=NON_Icon.png|cLink=Continuity#Non-Canon|cPretty=Alternate Universe}}
|alf={{trix/icons_recurs|custom=UAF_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Prime Continuity}}
|ula={{trix/icons_recurs|custom=UAF_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Prime Continuity}}
|abd={{trix/icons_recurs|custom=ABD_Icon.png|cLink=Negative Alien}}
|ult={{trix/icons_recurs|custom=ULT_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Form}}
|num={{trix/icons_recurs|custom=NUM_Icon.png|cLink=Albedo|cPretty=Ultimate Form}}
|onv={{trix/icons_recurs|custom=ONV_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Prime Continuity}}
|aso={{trix/icons_recurs|custom=ASO_Icon.png|cLink=Negative Alien}}
|rum={{trix/icons_recurs|custom=RUM_Icon.png|cLink=Albedo|cPretty=Ultimate Form}}
|b23={{trix/icons_recurs|custom=B23_Icon.png|cLink=Ben Tennyson (Dimension 23)|cPretty=Ben 23}}
|g10={{trix/icons_recurs|custom=G10_Icon.png|cLink=Gwen Tennyson (dimen)|cPretty=Gwen 10}}
|mad={{trix/icons_recurs|custom=MAD_Icon.png|cLink=Mad Ben}}
|bad={{trix/icons_recurs|custom=BAD_Icon.png|cLink=Bad Ben}}
|neg={{trix/icons_recurs|custom=NEG_Icon.png|cLink=Nega Ben}}
|zar={{trix/icons_recurs|custom=ZAR_Icon.png|cLink=Benzarro}}
|rbt={{trix/icons_recurs|custom=RBT_Icon.png|cLink=Ben Tennyson (Reboot)|cPretty=Reboot Continuity}}
|fsn={{trix/icons_recurs|custom=FSN_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Fusion Alien}}
|bio={{trix/icons_recurs|custom=BIO_Icon.png|cLink=Ben 10,000 (Omniverse)|cPretty=Biomnitrix Alien}}
|arg={{trix/icons_recurs|custom=ARG_Icon.png|cLink=Argit|cPretty=Argit 10}}
|nem={{trix/icons_recurs|custom=NEM_Icon.png|cLink=Nemetrix|cPretty=Nemetrix Alien}}
|ant={{trix/icons_recurs|custom=ANT_Icon.png|cLink=Kevin Levin (Reboot)|cPretty=Antitrix Alien}}
|oeh={{trix/icons_recurs|custom=OEH_Icon.png|cLink=Omni-Enhanced|cPretty=Omni-Enhanced Alien}}
|okx={{trix/icons_recurs|custom=OKX_Icon.png|cLink=Omni-Kix|cPretty=Omni-Kix}}
|ont={{trix/icons_recurs|custom=ONT_Icon.png|cLink=Omni-Nauts|cPretty=Omni-Nauts}}
|{{{option}}}}}|}}</includeonly><noinclude>
[[Category:Templates]]
<pre>{{trix/icons_recurs
|custom=ONV_Icon.png
|cLink=Ben Tennyson (Prime)
|cPretty=Omniverse - Mouseover text, if different from the Link
|cSize=30px - Override the default size
}}</pre>
</noinclude>
d2acebb9510650611e1493449b1895c4f48a121e
2197
2193
2022-04-25T02:43:05Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{{#if:{{{custom|}}}|
{{#tag:imagemap
|Image:{{{custom}}}{{!}}{{{cSize|40px}}}
default [[{{{cLink}}}{{!}}{{{cPretty|{{{cLink}}}}}}]]
desc none
}}|}}<!--
Options
-->{{#if:{{{option|}}}|{{#switch:{{{option}}}
|ogs={{trix/icons_recurs|custom=OGS_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Original Series}}
|non={{trix/icons_recurs|custom=NON_Icon.png|cLink=Continuity#Non-Canon|cPretty=Non-Canon}}
|auu={{trix/icons_recurs|custom=NON_Icon.png|cLink=Continuity#Non-Canon|cPretty=Alternate Universe}}
|alf={{trix/icons_recurs|custom=UAF_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Alien Force}}
|ula={{trix/icons_recurs|custom=UAF_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Alien}}
|abd={{trix/icons_recurs|custom=ABD_Icon.png|cLink=Negative Alien}}
|ult={{trix/icons_recurs|custom=ULT_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Ultimate Form}}
|num={{trix/icons_recurs|custom=NUM_Icon.png|cLink=Albedo|cPretty=Ultimate Form}}
|onv={{trix/icons_recurs|custom=ONV_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Omniverse}}
|aso={{trix/icons_recurs|custom=ASO_Icon.png|cLink=Negative Alien}}
|rum={{trix/icons_recurs|custom=RUM_Icon.png|cLink=Albedo|cPretty=Ultimate Form}}
|b23={{trix/icons_recurs|custom=B23_Icon.png|cLink=Ben Tennyson (Dimension 23)|cPretty=Ben 23}}
|g10={{trix/icons_recurs|custom=G10_Icon.png|cLink=Gwen Tennyson (dimen)|cPretty=Gwen 10}}
|mad={{trix/icons_recurs|custom=MAD_Icon.png|cLink=Mad Ben}}
|bad={{trix/icons_recurs|custom=BAD_Icon.png|cLink=Bad Ben}}
|neg={{trix/icons_recurs|custom=NEG_Icon.png|cLink=Nega Ben}}
|zar={{trix/icons_recurs|custom=ZAR_Icon.png|cLink=Benzarro}}
|rbt={{trix/icons_recurs|custom=RBT_Icon.png|cLink=Ben Tennyson (Reboot)|cPretty=Reboot}}
|fsn={{trix/icons_recurs|custom=FSN_Icon.png|cLink=Ben Tennyson (Prime)|cPretty=Fusion Alien}}
|bio={{trix/icons_recurs|custom=BIO_Icon.png|cLink=Ben 10,000 (Omniverse)|cPretty=Biomnitrix Alien}}
|arg={{trix/icons_recurs|custom=ARG_Icon.png|cLink=Argit|cPretty=Argit 10}}
|nem={{trix/icons_recurs|custom=NEM_Icon.png|cLink=Nemetrix|cPretty=Nemetrix Alien}}
|ant={{trix/icons_recurs|custom=ANT_Icon.png|cLink=Kevin Levin (Reboot)|cPretty=Antitrix Alien}}
|oeh={{trix/icons_recurs|custom=OEH_Icon.png|cLink=Omni-Enhanced|cPretty=Omni-Enhanced Alien}}
|okx={{trix/icons_recurs|custom=OKX_Icon.png|cLink=Omni-Kix|cPretty=Omni-Kix}}
|ont={{trix/icons_recurs|custom=ONT_Icon.png|cLink=Omni-Nauts|cPretty=Omni-Nauts}}
|{{{option}}}}}|}}</includeonly><noinclude>
[[Category:Templates]]
<pre>{{trix/icons_recurs
|custom=ONV_Icon.png
|cLink=Ben Tennyson (Prime)
|cPretty=Omniverse - Mouseover text, if different from the Link
|cSize=30px - Override the default size
}}</pre>
</noinclude>
c738c84766949cab090f2357817143f9e5505a6b
File:ONT Icon.png
6
538
2194
2022-04-25T02:39:52Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Template:Trix
10
5
2195
2138
2022-04-25T02:40:34Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div id="title-trixicons" style="float: right; display: none; margin-right: .3em; margin-bottom:4px;">{{Trix/icons|option={{{1|}}}}}{{Trix/icons|option={{{2|}}}}}{{Trix/icons|option={{{3|}}}}}{{Trix/icons|option={{{4|}}}}}{{Trix/icons|option={{{5|}}}}}{{Trix/icons|option={{{6|}}}}}{{Trix/icons|option={{{7|}}}}}{{Trix/icons|option={{{8|}}}}}{{Trix/icons|option={{{9|}}}}}{{Trix/icons|option={{{10|}}}}}{{Trix/icons|option={{{11|}}}}}{{Trix/icons|option={{{12|}}}}}{{Trix/icons|option={{{13|}}}}}{{Trix/icons|option={{{14|}}}}}{{Trix/icons|option={{{15|}}}}}{{Trix/icons|option={{{16|}}}}}{{Trix/icons|option={{{17|}}}}}{{Trix/icons|option={{{18|}}}}}{{Trix/icons|option={{{19|}}}}}{{Trix/icons|option={{{20|}}}}}</div></includeonly><noinclude>{{Trix/doc}}
[[Category:Templates]]
</noinclude>
74f94beff371c855440589e813ecbe6a011cf6a1
2201
2195
2022-04-25T02:47:20Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div id="title-trixicons" style="float: right; display: none; margin-right: .3em; margin-bottom:4px;">{{Trix/icons|option={{{1|}}}}}{{Trix/icons|option={{{2|}}}}}{{Trix/icons|option={{{3|}}}}}{{Trix/icons|option={{{4|}}}}}{{Trix/icons|option={{{5|}}}}}{{Trix/icons|option={{{6|}}}}}{{Trix/icons|option={{{7|}}}}}{{Trix/icons|option={{{8|}}}}}{{Trix/icons|option={{{9|}}}}}{{Trix/icons|option={{{10|}}}}}{{Trix/icons|option={{{11|}}}}}{{Trix/icons|option={{{12|}}}}}{{Trix/icons|option={{{13|}}}}}{{Trix/icons|option={{{14|}}}}}{{Trix/icons|option={{{15|}}}}}{{Trix/icons|option={{{16|}}}}}{{Trix/icons|option={{{17|}}}}}{{Trix/icons|option={{{18|}}}}}{{Trix/icons|option={{{19|}}}}}{{Trix/icons|option={{{20|}}}}}{{Trix/icons|option={{{21|}}}}}{{Trix/icons|option={{{22|}}}}}{{Trix/icons|option={{{23|}}}}}{{Trix/icons|option={{{24|}}}}}{{Trix/icons|option={{{25|}}}}}{{Trix/icons|option={{{26|}}}}}</div></includeonly><noinclude>{{Trix/doc}}
[[Category:Templates]]
</noinclude>
5170cd9ca7153f98aaeed365842cb8dea2393034
Template:Trix/doc
10
13
2196
108
2022-04-25T02:42:37Z
Jaswacker
30585766
/* Trix icon names */
wikitext
text/x-wiki
<pre>{{trix
|ogs
|alf
|onv
|auu}}
</pre>
{{trix|ogs|alf|onv|auu}}
==Trix icon names==
Trix icon names used by this template are lowercase. Any mis-typed text not recognized as the template will be rendered as text. (You will notice, it's hard to miss.)
{| class="prettytable sortable" border="1"
|-
!ICON NAME
!TEMPLATE TEXT
!ICON
|-
|Original Series ||ogs ||{{Trix/icons|option=ogs }}
|-
|Non-Canon ||non ||{{Trix/icons|option=non }}
|-
|Unspecified Alternate Universe ||auu ||{{Trix/icons|option=non }}
|-
|Alien Force ||alf ||{{Trix/icons|option=alf }}
|-
|Ultimate Alien ||ula ||{{Trix/icons|option=ula }}
|-
|Albedo (UAF) ||abd ||{{Trix/icons|option=abd }}
|-
|Ultimatrix ||ult ||{{Trix/icons|option=ult }}
|-
|Negative Ultimatrix ||num ||{{Trix/icons|option=num }}
|-
|Omniverse ||onv ||{{Trix/icons|option=onv }}
|-
|Albedo (OV) ||aso ||{{Trix/icons|option=aso }}
|-
|Reconstructed Ultimatrix ||rum ||{{Trix/icons|option=rum }}
|-
|Ben 23 ||b23 ||{{Trix/icons|option=b23 }}
|-
|Gwen 10 (Omniverse) ||g10 ||{{Trix/icons|option=g10 }}
|-
|Mad Ben ||mad ||{{Trix/icons|option=mad }}
|-
|Bad Ben ||bad ||{{Trix/icons|option=bad }}
|-
|Nega Ben ||neg ||{{Trix/icons|option=neg }}
|-
|Benzarro ||zar ||{{Trix/icons|option=zar }}
|-
|Reboot ||rbt ||{{Trix/icons|option=rbt }}
|-
|Fusion Alien ||fsn ||{{Trix/icons|option=fsn }}
|-
|Biomnitrix Alien ||bio ||{{Trix/icons|option=bio }}
|-
|Argit ||arg ||{{Trix/icons|option=arg }}
|-
|Nemetrix Alien ||nem ||{{Trix/icons|option=nem }}
|-
|Antitrix Alien ||ant ||{{Trix/icons|option=ant }}
|-
|Omni-Enhanced ||oeh ||{{Trix/icons|option=oeh }}
|-
|Omni-Kix ||okx ||{{Trix/icons|option=okx }}
|-
|Omni-Nauts ||ont ||{{Trix/icons|option=ont }}
|}
[[Category:Templates]]
a2a4267129d9eae27fae630df365cfe51030582b
2198
2196
2022-04-25T02:44:27Z
Jaswacker
30585766
wikitext
text/x-wiki
<pre>{{trix|ogs|non|alf|ula|abd|ult|num|onv|aso|rum|b23|mad|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
</pre>
{{trix|ogs|alf|onv|auu}}
==Trix icon names==
Trix icon names used by this template are lowercase. Any mis-typed text not recognized as the template will be rendered as text. (You will notice, it's hard to miss.)
{| class="prettytable sortable" border="1"
|-
!ICON NAME
!TEMPLATE TEXT
!ICON
|-
|Original Series ||ogs ||{{Trix/icons|option=ogs }}
|-
|Non-Canon ||non ||{{Trix/icons|option=non }}
|-
|Unspecified Alternate Universe ||auu ||{{Trix/icons|option=non }}
|-
|Alien Force ||alf ||{{Trix/icons|option=alf }}
|-
|Ultimate Alien ||ula ||{{Trix/icons|option=ula }}
|-
|Albedo (UAF) ||abd ||{{Trix/icons|option=abd }}
|-
|Ultimatrix ||ult ||{{Trix/icons|option=ult }}
|-
|Negative Ultimatrix ||num ||{{Trix/icons|option=num }}
|-
|Omniverse ||onv ||{{Trix/icons|option=onv }}
|-
|Albedo (OV) ||aso ||{{Trix/icons|option=aso }}
|-
|Reconstructed Ultimatrix ||rum ||{{Trix/icons|option=rum }}
|-
|Ben 23 ||b23 ||{{Trix/icons|option=b23 }}
|-
|Gwen 10 (Omniverse) ||g10 ||{{Trix/icons|option=g10 }}
|-
|Mad Ben ||mad ||{{Trix/icons|option=mad }}
|-
|Bad Ben ||bad ||{{Trix/icons|option=bad }}
|-
|Nega Ben ||neg ||{{Trix/icons|option=neg }}
|-
|Benzarro ||zar ||{{Trix/icons|option=zar }}
|-
|Reboot ||rbt ||{{Trix/icons|option=rbt }}
|-
|Fusion Alien ||fsn ||{{Trix/icons|option=fsn }}
|-
|Biomnitrix Alien ||bio ||{{Trix/icons|option=bio }}
|-
|Argit ||arg ||{{Trix/icons|option=arg }}
|-
|Nemetrix Alien ||nem ||{{Trix/icons|option=nem }}
|-
|Antitrix Alien ||ant ||{{Trix/icons|option=ant }}
|-
|Omni-Enhanced ||oeh ||{{Trix/icons|option=oeh }}
|-
|Omni-Kix ||okx ||{{Trix/icons|option=okx }}
|-
|Omni-Nauts ||ont ||{{Trix/icons|option=ont }}
|}
[[Category:Templates]]
b5d7fd307dafc28d85193ce5ed843cf8005c8a3f
2199
2198
2022-04-25T02:44:43Z
Jaswacker
30585766
wikitext
text/x-wiki
<pre>{{trix|ogs|non|alf|ula|abd|ult|num|onv|aso|rum|b23|mad|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
</pre>
{{trix|ogs|non|alf|ula|abd|ult|num|onv|aso|rum|b23|mad|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
==Trix icon names==
Trix icon names used by this template are lowercase. Any mis-typed text not recognized as the template will be rendered as text. (You will notice, it's hard to miss.)
{| class="prettytable sortable" border="1"
|-
!ICON NAME
!TEMPLATE TEXT
!ICON
|-
|Original Series ||ogs ||{{Trix/icons|option=ogs }}
|-
|Non-Canon ||non ||{{Trix/icons|option=non }}
|-
|Unspecified Alternate Universe ||auu ||{{Trix/icons|option=non }}
|-
|Alien Force ||alf ||{{Trix/icons|option=alf }}
|-
|Ultimate Alien ||ula ||{{Trix/icons|option=ula }}
|-
|Albedo (UAF) ||abd ||{{Trix/icons|option=abd }}
|-
|Ultimatrix ||ult ||{{Trix/icons|option=ult }}
|-
|Negative Ultimatrix ||num ||{{Trix/icons|option=num }}
|-
|Omniverse ||onv ||{{Trix/icons|option=onv }}
|-
|Albedo (OV) ||aso ||{{Trix/icons|option=aso }}
|-
|Reconstructed Ultimatrix ||rum ||{{Trix/icons|option=rum }}
|-
|Ben 23 ||b23 ||{{Trix/icons|option=b23 }}
|-
|Gwen 10 (Omniverse) ||g10 ||{{Trix/icons|option=g10 }}
|-
|Mad Ben ||mad ||{{Trix/icons|option=mad }}
|-
|Bad Ben ||bad ||{{Trix/icons|option=bad }}
|-
|Nega Ben ||neg ||{{Trix/icons|option=neg }}
|-
|Benzarro ||zar ||{{Trix/icons|option=zar }}
|-
|Reboot ||rbt ||{{Trix/icons|option=rbt }}
|-
|Fusion Alien ||fsn ||{{Trix/icons|option=fsn }}
|-
|Biomnitrix Alien ||bio ||{{Trix/icons|option=bio }}
|-
|Argit ||arg ||{{Trix/icons|option=arg }}
|-
|Nemetrix Alien ||nem ||{{Trix/icons|option=nem }}
|-
|Antitrix Alien ||ant ||{{Trix/icons|option=ant }}
|-
|Omni-Enhanced ||oeh ||{{Trix/icons|option=oeh }}
|-
|Omni-Kix ||okx ||{{Trix/icons|option=okx }}
|-
|Omni-Nauts ||ont ||{{Trix/icons|option=ont }}
|}
[[Category:Templates]]
7b88dcb07125d854f0607acef31c481a5dde2a15
2200
2199
2022-04-25T02:45:10Z
Jaswacker
30585766
wikitext
text/x-wiki
<pre>{{trix|ogs|non|alf|ula|abd|ult|num|onv|aso|rum|b23|g10|mad|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
</pre>
{{trix|ogs|non|alf|ula|abd|ult|num|onv|aso|rum|b23|mad|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
==Trix icon names==
Trix icon names used by this template are lowercase. Any mis-typed text not recognized as the template will be rendered as text. (You will notice, it's hard to miss.)
{| class="prettytable sortable" border="1"
|-
!ICON NAME
!TEMPLATE TEXT
!ICON
|-
|Original Series ||ogs ||{{Trix/icons|option=ogs }}
|-
|Non-Canon ||non ||{{Trix/icons|option=non }}
|-
|Unspecified Alternate Universe ||auu ||{{Trix/icons|option=non }}
|-
|Alien Force ||alf ||{{Trix/icons|option=alf }}
|-
|Ultimate Alien ||ula ||{{Trix/icons|option=ula }}
|-
|Albedo (UAF) ||abd ||{{Trix/icons|option=abd }}
|-
|Ultimatrix ||ult ||{{Trix/icons|option=ult }}
|-
|Negative Ultimatrix ||num ||{{Trix/icons|option=num }}
|-
|Omniverse ||onv ||{{Trix/icons|option=onv }}
|-
|Albedo (OV) ||aso ||{{Trix/icons|option=aso }}
|-
|Reconstructed Ultimatrix ||rum ||{{Trix/icons|option=rum }}
|-
|Ben 23 ||b23 ||{{Trix/icons|option=b23 }}
|-
|Gwen 10 (Omniverse) ||g10 ||{{Trix/icons|option=g10 }}
|-
|Mad Ben ||mad ||{{Trix/icons|option=mad }}
|-
|Bad Ben ||bad ||{{Trix/icons|option=bad }}
|-
|Nega Ben ||neg ||{{Trix/icons|option=neg }}
|-
|Benzarro ||zar ||{{Trix/icons|option=zar }}
|-
|Reboot ||rbt ||{{Trix/icons|option=rbt }}
|-
|Fusion Alien ||fsn ||{{Trix/icons|option=fsn }}
|-
|Biomnitrix Alien ||bio ||{{Trix/icons|option=bio }}
|-
|Argit ||arg ||{{Trix/icons|option=arg }}
|-
|Nemetrix Alien ||nem ||{{Trix/icons|option=nem }}
|-
|Antitrix Alien ||ant ||{{Trix/icons|option=ant }}
|-
|Omni-Enhanced ||oeh ||{{Trix/icons|option=oeh }}
|-
|Omni-Kix ||okx ||{{Trix/icons|option=okx }}
|-
|Omni-Nauts ||ont ||{{Trix/icons|option=ont }}
|}
[[Category:Templates]]
17e561072426ea11f0c4cdf8fae938f8a88ebad6
2202
2200
2022-04-25T02:47:29Z
Jaswacker
30585766
wikitext
text/x-wiki
<pre>{{trix|ogs|non|auu|alf|ula|abd|ult|num|onv|aso|rum|b23|g10|mad|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
</pre>
{{trix|ogs|non|auu|alf|ula|abd|ult|num|onv|aso|rum|b23|g10|mad|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
==Trix icon names==
Trix icon names used by this template are lowercase. Any mis-typed text not recognized as the template will be rendered as text. (You will notice, it's hard to miss.)
{| class="prettytable sortable" border="1"
|-
!ICON NAME
!TEMPLATE TEXT
!ICON
|-
|Original Series ||ogs ||{{Trix/icons|option=ogs }}
|-
|Non-Canon ||non ||{{Trix/icons|option=non }}
|-
|Unspecified Alternate Universe ||auu ||{{Trix/icons|option=non }}
|-
|Alien Force ||alf ||{{Trix/icons|option=alf }}
|-
|Ultimate Alien ||ula ||{{Trix/icons|option=ula }}
|-
|Albedo (UAF) ||abd ||{{Trix/icons|option=abd }}
|-
|Ultimatrix ||ult ||{{Trix/icons|option=ult }}
|-
|Negative Ultimatrix ||num ||{{Trix/icons|option=num }}
|-
|Omniverse ||onv ||{{Trix/icons|option=onv }}
|-
|Albedo (OV) ||aso ||{{Trix/icons|option=aso }}
|-
|Reconstructed Ultimatrix ||rum ||{{Trix/icons|option=rum }}
|-
|Ben 23 ||b23 ||{{Trix/icons|option=b23 }}
|-
|Gwen 10 (Omniverse) ||g10 ||{{Trix/icons|option=g10 }}
|-
|Mad Ben ||mad ||{{Trix/icons|option=mad }}
|-
|Bad Ben ||bad ||{{Trix/icons|option=bad }}
|-
|Nega Ben ||neg ||{{Trix/icons|option=neg }}
|-
|Benzarro ||zar ||{{Trix/icons|option=zar }}
|-
|Reboot ||rbt ||{{Trix/icons|option=rbt }}
|-
|Fusion Alien ||fsn ||{{Trix/icons|option=fsn }}
|-
|Biomnitrix Alien ||bio ||{{Trix/icons|option=bio }}
|-
|Argit ||arg ||{{Trix/icons|option=arg }}
|-
|Nemetrix Alien ||nem ||{{Trix/icons|option=nem }}
|-
|Antitrix Alien ||ant ||{{Trix/icons|option=ant }}
|-
|Omni-Enhanced ||oeh ||{{Trix/icons|option=oeh }}
|-
|Omni-Kix ||okx ||{{Trix/icons|option=okx }}
|-
|Omni-Nauts ||ont ||{{Trix/icons|option=ont }}
|}
[[Category:Templates]]
26e7bc0c753d0bbfa3cc19a1f598eaa8bf41a7fc
2203
2202
2022-04-25T02:47:48Z
Jaswacker
30585766
wikitext
text/x-wiki
<pre>{{trix|ogs|non|ula|abd|ult|num|onv|aso|rum|b23|g10|mad|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
</pre>
{{trix|ogs|non|ula|abd|ult|num|onv|aso|rum|b23|g10|mad|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
==Trix icon names==
Trix icon names used by this template are lowercase. Any mis-typed text not recognized as the template will be rendered as text. (You will notice, it's hard to miss.)
{| class="prettytable sortable" border="1"
|-
!ICON NAME
!TEMPLATE TEXT
!ICON
|-
|Original Series ||ogs ||{{Trix/icons|option=ogs }}
|-
|Non-Canon ||non ||{{Trix/icons|option=non }}
|-
|Unspecified Alternate Universe ||auu ||{{Trix/icons|option=non }}
|-
|Alien Force ||alf ||{{Trix/icons|option=alf }}
|-
|Ultimate Alien ||ula ||{{Trix/icons|option=ula }}
|-
|Albedo (UAF) ||abd ||{{Trix/icons|option=abd }}
|-
|Ultimatrix ||ult ||{{Trix/icons|option=ult }}
|-
|Negative Ultimatrix ||num ||{{Trix/icons|option=num }}
|-
|Omniverse ||onv ||{{Trix/icons|option=onv }}
|-
|Albedo (OV) ||aso ||{{Trix/icons|option=aso }}
|-
|Reconstructed Ultimatrix ||rum ||{{Trix/icons|option=rum }}
|-
|Ben 23 ||b23 ||{{Trix/icons|option=b23 }}
|-
|Gwen 10 (Omniverse) ||g10 ||{{Trix/icons|option=g10 }}
|-
|Mad Ben ||mad ||{{Trix/icons|option=mad }}
|-
|Bad Ben ||bad ||{{Trix/icons|option=bad }}
|-
|Nega Ben ||neg ||{{Trix/icons|option=neg }}
|-
|Benzarro ||zar ||{{Trix/icons|option=zar }}
|-
|Reboot ||rbt ||{{Trix/icons|option=rbt }}
|-
|Fusion Alien ||fsn ||{{Trix/icons|option=fsn }}
|-
|Biomnitrix Alien ||bio ||{{Trix/icons|option=bio }}
|-
|Argit ||arg ||{{Trix/icons|option=arg }}
|-
|Nemetrix Alien ||nem ||{{Trix/icons|option=nem }}
|-
|Antitrix Alien ||ant ||{{Trix/icons|option=ant }}
|-
|Omni-Enhanced ||oeh ||{{Trix/icons|option=oeh }}
|-
|Omni-Kix ||okx ||{{Trix/icons|option=okx }}
|-
|Omni-Nauts ||ont ||{{Trix/icons|option=ont }}
|}
[[Category:Templates]]
cedcfd9c5946aa550a3ce002647bac2907ea59ec
Ben Tennyson (Reboot)
0
182
2206
2025
2022-04-25T02:51:59Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|rbt|ont}}
{{disambigm|Ben Tennyson (Prime)|Ben Tennyson (Disambiguation)|Ben 10,000 (Disambiguation)}}
{{charbox
|image={{tabs|{{tab2||c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>test<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Reboot)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Reboot)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=Placeholder
|last=Placeholder
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|text=Adipiscing elit duis tristique sollicitudin nibh sit amet.|origin=John Doe}}
__TOC__
{{-}}
== History ==
events of the show, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2016) ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Reboot Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Introduced in the Reboot]]
[[Category:Bellwood Residents]]
</noinclude>
275cf1bea9c36f0bf864a197e5108fda3f572ec0
2207
2206
2022-04-25T02:52:13Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|rbt|oeh|okx|ont}}
{{disambigm|Ben Tennyson (Prime)|Ben Tennyson (Disambiguation)|Ben 10,000 (Disambiguation)}}
{{charbox
|image={{tabs|{{tab2||c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>test<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Reboot)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Reboot)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=Placeholder
|last=Placeholder
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|text=Adipiscing elit duis tristique sollicitudin nibh sit amet.|origin=John Doe}}
__TOC__
{{-}}
== History ==
events of the show, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2016) ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Reboot Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Introduced in the Reboot]]
[[Category:Bellwood Residents]]
</noinclude>
a536879b98497e60b2340c294eb3e7a7a4c1ae4d
2208
2207
2022-04-25T02:52:22Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|rbt|ont}}
{{disambigm|Ben Tennyson (Prime)|Ben Tennyson (Disambiguation)|Ben 10,000 (Disambiguation)}}
{{charbox
|image={{tabs|{{tab2||c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>test<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Reboot)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Reboot)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=Placeholder
|last=Placeholder
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|text=Adipiscing elit duis tristique sollicitudin nibh sit amet.|origin=John Doe}}
__TOC__
{{-}}
== History ==
events of the show, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2016) ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Reboot Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Introduced in the Reboot]]
[[Category:Bellwood Residents]]
</noinclude>
275cf1bea9c36f0bf864a197e5108fda3f572ec0
2209
2208
2022-04-25T02:52:36Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|rbt|ont}}
{{disambigm|Ben Tennyson (Prime)|Ben Tennyson (Disambiguation)|Ben 10,000 (Disambiguation)}}
{{charbox
|image={{tabs|{{tab2||c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>test<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Reboot)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Reboot)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=Placeholder
|last=Placeholder
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|Adipiscing elit duis tristique sollicitudin nibh sit amet.|John Doe}}
__TOC__
{{-}}
== History ==
events of the show, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2016) ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Reboot Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Introduced in the Reboot]]
[[Category:Bellwood Residents]]
</noinclude>
359fcb1808e71e4aba8caa97593b545427a4ff92
2210
2209
2022-04-25T02:53:17Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|rbt|ont}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Prime)}}
{{buzzb|Ben Tennyson (Reboot)|Toys|Merchandise|width=200px}}
{{charbox
|image={{tabs|{{tab2||c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>test<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Reboot)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Reboot)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=Placeholder
|last=Placeholder
}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|Adipiscing elit duis tristique sollicitudin nibh sit amet.|John Doe}}
__TOC__
{{-}}
== History ==
events of the show, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2016) ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Reboot Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Introduced in the Reboot]]
[[Category:Bellwood Residents]]
</noinclude>
20a783ed7db96007fcc0cfa3a64defb425584896
Template:Mn
10
539
2214
2022-04-25T03:01:29Z
Jaswacker
30585766
Created page with "<div style="margin-top:-1.2em;">"
wikitext
text/x-wiki
<div style="margin-top:-1.2em;">
53865c90d4cebccb693ec183156c96a11f23b2ec
Ben Tennyson (Disambiguation)
0
24
2215
2213
2022-04-25T03:01:44Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|rbt|auu|b23|bad|zar|mad|neg|g10}}
{{Disambig}}
{{mn}}
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
[[File:attwn.png|thumb|right|The gang's all here!]]
{{quote|Alien or not, I'm still the hero.|[[Ben Tennyson (Omniverse Video Game)|Ben]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''[[Ben Tennyson (Prime)/Toys|Toys]] • [[Ben Tennyson (Prime)/Merchandise|Merchandise]]''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''[[Ben Tennyson (Reboot)/Toys|Toys]] • [[Ben Tennyson (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:RB10k.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:c.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|"Bad Ben"]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|"Benzarro"]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|"Mad Ben"]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|"Nega Ben"]]
File:c.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:c.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:c.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:c.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* [[Ben Tennyson (Prime)]]
* [[Ben Tennyson (Reboot)]]
* [[Ben 10,000 (Original Series)]]
* [[Ultimate Ben]] transformation
* [[Ben 10,000 (Ultimate Alien)]]
* [[Eon (Ultimate Alien)]]
* [[Eon (Omniverse)]]
* [[Ben 10,000 (Omniverse)]]
* [[Ben 10,000 (Reboot)]]
* [[Ben Tennyson (Evil Dimension)]]
* [[Ben Tennyson (Race Against Time)]]
* [[Ben Tennyson (Alien Swarm)]]
* [[Ben Tennyson (Dimension 23)]]
* [[Ben Tennyson (No-Watch Dimension)]]
* [[Ben Tennyson (Bad Dimension)]]
* [[Ben Tennyson (Negaverse)]]
* [[Ben Tennyson (Madworld)]]
* [[Ben Tennyson (Zombiverse)]]
* [[Ben Tennyson (Original Series Dimension)]]
* [[Ben Tennyson (Ultimate Alien Dimension)]]
* [[Ben Tennyson (Alien Force Dimension)]]
* [[Ben Tennyson (Omniverse Dimension)]]
* [[Ben Tennyson (Dimension 12041.5)]] Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction''
* [[Ben Tennyson (Maximillian's Dimension)]] Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction''
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters#Evil Ben's Victims|Evil Ben's Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run based on Omniverse, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Ben 10 Franklin]]'', see [[Benjamin Franklin#Ben 10 Franklin|Benjamin Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Cowboys and Alien Force]]'', see [[Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
* [[Ben Tennyson (Hyperscan)]] game
* [[Ben Tennyson (Prime)|Ben Tennyson (Alien Force Video Game)]] canon to Prime, placed in this list temporarily so we don't forget about it
* [[Ben Tennyson (Omniverse Video Game)]] refers to the alternate timeline made in the game. the events of Omniverse 2 are canon.
* [[Ben Tennyson (Reboot Video Game)]] game, may be canon to the reboot or to the other reboot game(s)
* [[Ben Tennyson (Power Trip)]] game, may be canon to the reboot or to the other reboot game(s)
* [[Ben Tennyson (Galactic Racing)]] game. likely not canon.
* [[Ben Tennyson (Classics)]] comics
* [[Ben Tennyson (Perfect Square)]] comics
* [[Ben Tennyson (Leapfrog)]] AF storybook, two UA learning games
* [[Ben Tennyson (Del Rey)]] manga
* [[Ben Tennyson (BOOM! Studios)]] comics
* [[Ben Tennyson (Bandai Comics)]] comics
* [[Ben Tennyson (Alien Race)]] game. Might be canon. Might not have any story implications at all (in that case, this article is not needed)
* [[Ben Tennyson (Wrath of Psychobos)]] game. Might be canon to prime, might not.
* [[Ben Tennyson (JoongAng MB Jr)]] korean comics (science hero and exploring hero)
* [[Ben Tennyson (Fuel Run)]] game
* [[Ben Tennyson (V-Tech)]] mobigo kids learning game called "Ben 10: Ultimate Alien: Mind Mine"
* [[Ben Tennyson (Storybooks)]] picture books made that adapted episodes of UAF
* [[Ben Tennyson (Scholastic)]] chapter books published by scholastic of original stories set during UAF
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* [[Omnitrix (Disambiguation)]]
* [[Omnitrix Wielders]]
* [[Albedo]]
* [[Kenny Tennyson (Disambiguation)]]
* [[Kevin Levin (Reboot)]]
* [[Gwen 10 (Disambiguation)]]
* [[Max Tennyson (Gwen 10)]]
* [[Argit (Argitrix Dimension)]]
* [[Timothy|Tim 10]]
{{-}}
810a8314e645d6b2a855734d3a1a55bb6cf63b10
2226
2215
2022-04-25T04:13:34Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|rbt|auu|b23|bad|zar|mad|neg|g10}}
{{Disambig}}
{{mn}}
[[File:attwn.png|thumb|right|The gang's all here!]]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
{{quote|Alien or not, I'm still the hero.|[[Ben Tennyson (Omniverse Video Game)|Ben]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''[[Ben Tennyson (Prime)/Toys|Toys]] • [[Ben Tennyson (Prime)/Merchandise|Merchandise]]''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''[[Ben Tennyson (Reboot)/Toys|Toys]] • [[Ben Tennyson (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:RB10k.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:c.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|"Bad Ben"]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|"Benzarro"]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|"Mad Ben"]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|"Nega Ben"]]
File:c.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:c.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:c.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:c.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* [[Ben Tennyson (Prime)]]
* [[Ben Tennyson (Reboot)]]
* [[Ben 10,000 (Original Series)]]
* [[Ultimate Ben]] transformation
* [[Ben 10,000 (Ultimate Alien)]]
* [[Eon (Ultimate Alien)]]
* [[Eon (Omniverse)]]
* [[Ben 10,000 (Omniverse)]]
* [[Ben 10,000 (Reboot)]]
* [[Ben Tennyson (Evil Dimension)]]
* [[Ben Tennyson (Race Against Time)]]
* [[Ben Tennyson (Alien Swarm)]]
* [[Ben Tennyson (Dimension 23)]]
* [[Ben Tennyson (No-Watch Dimension)]]
* [[Ben Tennyson (Bad Dimension)]]
* [[Ben Tennyson (Negaverse)]]
* [[Ben Tennyson (Madworld)]]
* [[Ben Tennyson (Zombiverse)]]
* [[Ben Tennyson (Original Series Dimension)]]
* [[Ben Tennyson (Ultimate Alien Dimension)]]
* [[Ben Tennyson (Alien Force Dimension)]]
* [[Ben Tennyson (Omniverse Dimension)]]
* [[Ben Tennyson (Dimension 12041.5)]] Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction''
* [[Ben Tennyson (Maximillian's Dimension)]] Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction''
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters#Evil Ben's Victims|Evil Ben's Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run based on Omniverse, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Ben 10 Franklin]]'', see [[Benjamin Franklin#Ben 10 Franklin|Benjamin Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Cowboys and Alien Force]]'', see [[Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
* [[Ben Tennyson (Hyperscan)]] game
* [[Ben Tennyson (Prime)|Ben Tennyson (Alien Force Video Game)]] canon to Prime, placed in this list temporarily so we don't forget about it
* [[Ben Tennyson (Omniverse Video Game)]] refers to the alternate timeline made in the game. the events of Omniverse 2 are canon.
* [[Ben Tennyson (Reboot Video Game)]] game, may be canon to the reboot or to the other reboot game(s)
* [[Ben Tennyson (Power Trip)]] game, may be canon to the reboot or to the other reboot game(s)
* [[Ben Tennyson (Galactic Racing)]] game. likely not canon.
* [[Ben Tennyson (Classics)]] comics
* [[Ben Tennyson (Perfect Square)]] comics
* [[Ben Tennyson (Leapfrog)]] AF storybook, two UA learning games
* [[Ben Tennyson (Del Rey)]] manga
* [[Ben Tennyson (BOOM! Studios)]] comics
* [[Ben Tennyson (Bandai Comics)]] comics
* [[Ben Tennyson (Alien Race)]] game. Might be canon. Might not have any story implications at all (in that case, this article is not needed)
* [[Ben Tennyson (Wrath of Psychobos)]] game. Might be canon to prime, might not.
* [[Ben Tennyson (JoongAng MB Jr)]] korean comics (science hero and exploring hero)
* [[Ben Tennyson (Fuel Run)]] game
* [[Ben Tennyson (V-Tech)]] mobigo kids learning game called "Ben 10: Ultimate Alien: Mind Mine"
* [[Ben Tennyson (Storybooks)]] picture books made that adapted episodes of UAF
* [[Ben Tennyson (Scholastic)]] chapter books published by scholastic of original stories set during UAF
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* [[Omnitrix (Disambiguation)]]
* [[Omnitrix Wielders]]
* [[Albedo]]
* [[Kenny Tennyson (Disambiguation)]]
* [[Kevin Levin (Reboot)]]
* [[Gwen 10 (Disambiguation)]]
* [[Max Tennyson (Gwen 10)]]
* [[Argit (Argitrix Dimension)]]
* [[Timothy|Tim 10]]
{{-}}
936ef2532a840f62a7568b9b24a771a45ff7a59c
2228
2226
2022-04-25T22:14:48Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|rbt|auu|b23|bad|zar|mad|neg|g10}}
{{Disambig}}
{{mn}}
[[File:attwn.png|thumb|right|The gang's all here!]]
Before finding the [[Omnitrix]], Ben Tennyson was an ordinary 10-year-old kid. Though initially immature and clumsy, Ben grew to be a true hero. By the time he was sixteen, he had become a champion known not only in his hometown of [[Bellwood]] but also in the greater universe!
{{quote|Alien or not, I'm still the hero.|[[Ben Tennyson (Omniverse Video Game)|Ben]] in [[Ben 10: Omniverse (Video Game)]]}}
__TOC__
<center><gallery widths="200px" heights="250px">
File:omniverserender1.png|link=[[Ben Tennyson (Prime)]]|[[Ben Tennyson (Prime)|"Prime" Ben Tennyson]]<br><hr>''[[Ben Tennyson (Prime)/Toys|Toys]] • [[Ben Tennyson (Prime)/Merchandise|Merchandise]]''
File:rebootrender1.png|link=[[Ben Tennyson (Reboot)]]|[[Ben Tennyson (Reboot)|[[Ben Tennyson (Reboot)|''Ben 10'' (2016) Ben Tennyson]]<br><hr>''[[Ben Tennyson (Reboot)/Toys|Toys]] • [[Ben Tennyson (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Future Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:os10k.png|link=[[Ben 10,000 (Original Series)]]|[[Ben 10,000 (Original Series)|''Ben 10'' (2005) Ben 10,000]]
File:ultben.png|link=[[Ben 10,000 (Ultimate Alien)]]|[[Ben 10,000 (Ultimate Alien)|''Ultimate Alien'' Ben 10,000]]
File:uaeon.png|link=[[Eon (Ultimate Alien)]]|[[Eon (Ultimate Alien)|''Ultimate Alien'' Eon]]
File:Eon_Omniverse.png|link=[[Eon (Omniverse)]]|[[Eon (Omniverse)|''Omniverse'' Eon]]
File:10kov.png|link=[[Ben 10,000 (Omniverse)]]|[[Ben 10,000 (Omniverse)|''Omniverse'' Ben 10,000]]
File:RB10k.png|link=[[Ben 10,000 (Reboot)]]|[[Ben 10,000 (Reboot)|''Ben 10'' (2016) Ben 10,000]]
File:benx2.png|link=[[Ben Tennyson (Evil Dimension)]]|[[Ben Tennyson (Evil Dimension)|"Evil Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Major Versions of Ben Tennyson==
<center><gallery widths="200px" heights="250px">
File:RaceagainsttimeBen.png|link=[[Ben Tennyson (Race Against Time)]]|[[Ben Tennyson (Race Against Time)|''Race Against Time'' Ben Tennyson]]
File:alienswarmben2.png|link=[[Ben Tennyson (Alien Swarm)]]|[[Ben Tennyson (Alien Swarm)|''Alien Swarm'' Alien Swarm]]
File:c.png|link=[[Ben Tennyson (Dimension 23)]]|[[Ben Tennyson (Dimension 23)|Ben 23]]
File:no watch ben.png|link=[[Ben Tennyson (No-Watch Dimension)]]|[[Ben Tennyson (No-Watch Dimension)|"No-Watch Ben"]]
File:bad ben promo.png|link=[[Ben Tennyson (Bad Dimension)]]|[[Ben Tennyson (Bad Dimension)|"Bad Ben"]]
File:benzarro promo art.png|link=[[Ben Tennyson (Zombiverse)]]|[[Ben Tennyson (Zombiverse)|"Benzarro"]]
File:Madbenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Madworld)]]|[[Ben Tennyson (Madworld)|"Mad Ben"]]
File:Negabenpose_BYUPGRADERATH.png|link=[[Ben Tennyson (Negaverse)]]|[[Ben Tennyson (Negaverse)|"Nega Ben"]]
File:c.png|link=[[Ben Tennyson (Original Series Dimension)]]|[[Ben Tennyson (Original Series Dimension)|"Original Series Ben" from ''Alien X-Tinction'']]
File:c.png|link=[[Ben Tennyson (Alien Force Dimension)]]|[[Ben Tennyson (Alien Force Dimension)|"Alien Force Ben" from ''Alien X-Tinction'']]
File:c.png|link=[[Ben Tennyson (Ultimate Alien Dimension)]]|[[Ben Tennyson (Ultimate Alien Dimension)|"Ultimate Alien Ben" from ''Alien X-Tinction'']]
File:c.png|link=[[Ben Tennyson (Omniverse Dimension)]]|[[Ben Tennyson (Omniverse Dimension)|"Omniverse Ben" from ''Alien X-Tinction'']]
</gallery></center>
{{-}}
==Full List of Ben Tennysons==
* [[Ben Tennyson (Prime)]]
* [[Ben Tennyson (Reboot)]]
* [[Ben 10,000 (Original Series)]]
* [[Ultimate Ben]] transformation
* [[Ben 10,000 (Ultimate Alien)]]
* [[Eon (Ultimate Alien)]]
* [[Eon (Omniverse)]]
* [[Ben 10,000 (Omniverse)]]
* [[Ben 10,000 (Reboot)]]
* [[Ben Tennyson (Evil Dimension)]]
* [[Ben Tennyson (Race Against Time)]]
* [[Ben Tennyson (Alien Swarm)]]
* [[Ben Tennyson (Dimension 23)]]
* [[Ben Tennyson (No-Watch Dimension)]]
* [[Ben Tennyson (Bad Dimension)]]
* [[Ben Tennyson (Negaverse)]]
* [[Ben Tennyson (Madworld)]]
* [[Ben Tennyson (Zombiverse)]]
* [[Ben Tennyson (Original Series Dimension)]]
* [[Ben Tennyson (Ultimate Alien Dimension)]]
* [[Ben Tennyson (Alien Force Dimension)]]
* [[Ben Tennyson (Omniverse Dimension)]]
* [[Ben Tennyson (Dimension 12041.5)]] Ben Tennyson of Dimension 12041.5 from ''Alien X-Tinction''
* [[Ben Tennyson (Maximillian's Dimension)]] Ben Tennyson of Maximillian's Dimension from ''Alien X-Tinction''
* To see the Omnitrix-less version of Ben Tennyson from ''[[Gwen 10 (Episode)]]'', see [[Ben Tennyson (Gwen 10)]].
* To see the version of Ben Tennyson from ''[[Goodbye and Good Riddance]]'', see [[Ben Tennyson (Goodbye and Good Riddance)]].
* For Ben Tennyson from the alternate timeline [[Gwen Tennyson (Prime)|Gwen]] made in ''[[Time Heals]]'', see [[Minor Characters/Humans#Ben Tennyson (Hex Timeline)|Ben Tennyson (Hex Timeline)]].
* For Ben Tennyson from [[Professor Paradox|Paradox's]] timeline where he failed to stop [[Hugo]] in ''[[Paradox]]'', see [[Minor Characters/Humans#Ben Tennyson (Hugo Timeline)|Ben Tennyson (Hugo Timeline)]].
* In ''[[Ben 10,000 Returns]]'', [[Eon (Ultimate Alien)|Eon]] had enslaved alternate Bens as his minions. For those alternate Bens, see [[Minor Characters#Eon's Ben Minions|Eon's Ben Minions]].
* For the Omnitrix-less version of Ben Tennyson from the [[Gweniverse]], see [[Minor Characters#Ben Tennyson (Gweniverse)|Ben Tennyson (Gweniverse)]].
* For the alternate universe victims of [[Ben Tennyson (Evil Dimension)|Alien X]] in ''[[Alien X-Tinction]]'', see [[Minor Characters#Evil Ben's Victims|Evil Ben's Victims]].
* To see Ben Tennyson from [[DC Comics]]'s series' of [[Cartoon Network Action Packs]], see [[Ben Tennyson (Action Packs)]].
* To see Ben Tennyson from [[IDW Publishing]]'s comic run based on Omniverse, see [[Ben Tennyson (IDW)]].
* For Ben Tennyson from the video game ''[[Ben 10: Protector of Earth]]'', see [[Ben Tennyson (Protector of Earth)]].
* To find Ben Tennyson from the video game ''[[Ben 10 Ultimate Alien: Cosmic Destruction]]'', see [[Ben Tennyson (Cosmic Destruction)]].
* To see Ben Tennyson from the video game ''[[Ben 10 Alien Force: Vilgax Attacks]]'', see [[Ben Tennyson (Vilgax Attacks)]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Ben 10 Franklin]]'', see [[Benjamin Franklin#Ben 10 Franklin|Benjamin Franklin]].
* For the parody character from the [https://en.wikipedia.org/wiki/Mad_(TV_series) MAD] skit ''[[Cowboys and Alien Force]]'', see [[Jedediah Benjamin Tennyson]]. To see the man who stole his [[Omnitrix]], see [[Jake Lonergan]].
* In the ''[https://en.wikipedia.org/wiki/Robot_Chicken Robot Chicken]'' episode ''Hurtled from a Helicopter into a Speeding Train'', Ben appears celebrating his fourteenth birthday. For that version, see [[Minor Characters/Humans#Ben Tennyson (Robot Chicken)|Ben Tennyson (Robot Chicken)]].
* [[Ben Tennyson (Hyperscan)]] game
* [[Ben Tennyson (Prime)|Ben Tennyson (Alien Force Video Game)]] canon to Prime, placed in this list temporarily so we don't forget about it
* [[Ben Tennyson (Omniverse Video Game)]] refers to the alternate timeline made in the game. the events of Omniverse 2 are canon.
* [[Ben Tennyson (Reboot Video Game)]] game, may be canon to the reboot or to the other reboot game(s)
* [[Ben Tennyson (Power Trip)]] game, may be canon to the reboot or to the other reboot game(s)
* [[Ben Tennyson (Galactic Racing)]] game. likely not canon.
* [[Ben Tennyson (Classics)]] comics
* [[Ben Tennyson (Perfect Square)]] comics
* [[Ben Tennyson (Leapfrog)]] AF storybook, two UA learning games
* [[Ben Tennyson (Del Rey)]] manga
* [[Ben Tennyson (BOOM! Studios)]] comics
* [[Ben Tennyson (Bandai Comics)]] comics
* [[Ben Tennyson (Alien Race)]] game. Might be canon. Might not have any story implications at all (in that case, this article is not needed)
* [[Ben Tennyson (Wrath of Psychobos)]] game. Might be canon to prime, might not.
* [[Ben Tennyson (JoongAng MB Jr)]] korean comics (science hero and exploring hero)
* [[Ben Tennyson (Fuel Run)]] game
* [[Ben Tennyson (V-Tech)]] mobigo kids learning game called "Ben 10: Ultimate Alien: Mind Mine"
* [[Ben Tennyson (Storybooks)]] picture books made that adapted episodes of UAF
* [[Ben Tennyson (Scholastic)]] chapter books published by scholastic of original stories set during UAF
{{-}}
==Media Referencing Ben Tennyson==
* placeholder
* episodes, books, comics, movies, games, in-universe with bens name or named after ben.
{{-}}
==See Also==
* [[Omnitrix (Disambiguation)]]
* [[Omnitrix Wielders]]
* [[Albedo]]
* [[Kenny Tennyson (Disambiguation)]]
* [[Kevin Levin (Reboot)]]
* [[Gwen 10 (Disambiguation)]]
* [[Max Tennyson (Gwen 10)]]
* [[Argit (Argitrix Dimension)]]
* [[Timothy|Tim 10]]
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
</noinclude>
491fc028f885947cb2c121e86e842ef82fe89c8f
Template:Br
10
540
2216
2022-04-25T03:02:01Z
Jaswacker
30585766
Created page with "<br>"
wikitext
text/x-wiki
<br>
01298c01639d867f841df8043cedc891cf11d8f0
Ben Tennyson (Prime)
0
93
2217
2147
2022-04-25T03:06:13Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Ben Tennyson (Prime)|Toys|Merchandise|width=200px}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
{{mn}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|Adipiscing elit duis tristique sollicitudin nibh sit amet.|John Doe}}
__TOC__
{{-}}
== History ==
events of the shows, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2005) ===
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Prime Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Plumbers]]
[[Category:Introduced in the Original Series]]
[[Category:Bellwood Residents]]
</noinclude>
a7513ae0c4febe9fcf8de10039aaa5aa2b9b7581
2227
2217
2022-04-25T22:14:07Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Ben Tennyson (Prime)|Toys|Merchandise|width=200px}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
{{mn}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|Adipiscing elit duis tristique sollicitudin nibh sit amet.|John Doe}}
__TOC__
{{-}}
== History ==
events of the shows, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2005) ===
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Prime Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Plumbers]]
[[Category:Introduced in the Original Series]]
[[Category:Bellwood Residents]]
[[Category:Earth Residents]]
</noinclude>
5280cc3ed1f935e2697e89dc290a8aff40b9dc69
Ben Tennyson (Reboot)
0
182
2218
2210
2022-04-25T03:06:27Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|rbt|ont}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Prime)}}
{{buzzb|Ben Tennyson (Reboot)|Toys|Merchandise|width=200px}}
{{charbox
|image={{tabs|{{tab2||c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>test<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Reboot)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Reboot)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=Placeholder
|last=Placeholder
}}
{{mn}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|Adipiscing elit duis tristique sollicitudin nibh sit amet.|John Doe}}
__TOC__
{{-}}
== History ==
events of the show, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2016) ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Reboot Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Introduced in the Reboot]]
[[Category:Bellwood Residents]]
</noinclude>
f7abe4b1a1051ce76d5c7bb654a176b417948133
Alien X
0
541
2219
2022-04-25T03:13:46Z
Jaswacker
30585766
Created page with "{{trix|alf|ula|onv}} {{buzza|Alien X|Toys|Merchandise|width=200px}} {{charbox |image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}}} |alias={{Scroll|placeholder<br>placeholder<br..."
wikitext
text/x-wiki
{{trix|alf|ula|onv}}
{{buzza|Alien X|Toys|Merchandise|width=200px}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}}}
|alias={{Scroll|placeholder<br>placeholder<br>placeholder|h=50px|w=200px}}
|species=[[Celestialsapien]]
|homeworld=[[Forge of Creation]]
|first=[[X = Ben + 2]]
|last=[[A New Dawn]]
}}
{{mn}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|Adipiscing elit duis tristique sollicitudin nibh sit amet.|John Doe}}
__TOC__
{{-}}
== History ==
events of the shows, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Celestialsapiens]]
[[Category:Prime Dimension]]
[[Category:Transformations]]
[[Category:Introduced in the Alien Force]]
</noinclude>
b461506aa8f833a9840a28e34485ecf4585353b0
2220
2219
2022-04-25T03:13:55Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|alf|ula|onv}}
{{buzz|Alien X|Toys|Merchandise|width=200px}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}}}
|alias={{Scroll|placeholder<br>placeholder<br>placeholder|h=50px|w=200px}}
|species=[[Celestialsapien]]
|homeworld=[[Forge of Creation]]
|first=[[X = Ben + 2]]
|last=[[A New Dawn]]
}}
{{mn}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|Adipiscing elit duis tristique sollicitudin nibh sit amet.|John Doe}}
__TOC__
{{-}}
== History ==
events of the shows, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Celestialsapiens]]
[[Category:Prime Dimension]]
[[Category:Transformations]]
[[Category:Introduced in the Alien Force]]
</noinclude>
3c1461f4a60a040c0f064fe4f466f755412b6aec
Upchuck
0
6
2221
1998
2022-04-25T03:17:17Z
Jaswacker
30585766
wikitext
text/x-wiki
{{charbox
|image={{tabs|{{tab2|OV (Perk)|c.png}}{{tab2|OV (Murk)|c.png}}{{tab2|AF|c.png}}{{tab2|OS|c.png}}}}
|nickname={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Gourmand]]
|homeworld=[[Peptos XII]]
|equipment=[[Omnitrix]]
|first=Placeholder
|last=Placeholder
}}
{{trix|ogs|alf|ula|onv}}
{{buzz|Upchuck|Toys|Merchandise|width=200px}}
{{charbox
|image={{tabs|{{tab2|OV (Perk)|c.png}}{{tab2|OV (Murk)|c.png}}{{tab2|AF|c.png}}{{tab2|OS|c.png}}}}
|alias={{Scroll|placeholder<br>placeholder<br>placeholder|h=50px|w=200px}}
|species=[[Gourmand]]
|homeworld=[[Peptos XII]]
|first=[[The Visitor]] <small>(Perk)</small><br>[[War of the Worlds: Part 1]] <small>(Murk)</small>
|last=[[A New Dawn]]
}}
{{mn}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|Adipiscing elit duis tristique sollicitudin nibh sit amet.|John Doe}}
__TOC__
{{-}}
== History ==
events of the shows, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
{{-}}
=== ''Ben 10'' (2005) ===
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Gourmands]]
[[Category:Prime Dimension]]
[[Category:Transformations]]
[[Category:Introduced in the Original Series]]
</noinclude>
dd91f6c951eaae85a46786579459f8826afb44ab
2222
2221
2022-04-25T03:17:28Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{buzz|Upchuck|Toys|Merchandise|width=200px}}
{{charbox
|image={{tabs|{{tab2|OV (Perk)|c.png}}{{tab2|OV (Murk)|c.png}}{{tab2|AF|c.png}}{{tab2|OS|c.png}}}}
|alias={{Scroll|placeholder<br>placeholder<br>placeholder|h=50px|w=200px}}
|species=[[Gourmand]]
|homeworld=[[Peptos XII]]
|first=[[The Visitor]] <small>(Perk)</small><br>[[War of the Worlds: Part 1]] <small>(Murk)</small>
|last=[[A New Dawn]]
}}
{{mn}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|Adipiscing elit duis tristique sollicitudin nibh sit amet.|John Doe}}
__TOC__
{{-}}
== History ==
events of the shows, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
{{-}}
=== ''Ben 10'' (2005) ===
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Gourmands]]
[[Category:Prime Dimension]]
[[Category:Transformations]]
[[Category:Introduced in the Original Series]]
</noinclude>
e7b715fb27ee140326b0ac4ff3777ef88bcc890f
Omnitrix (Disambiguation)
0
303
2223
1906
2022-04-25T03:53:13Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv|b23|g10|mad|bad|neg|zar|rbt|arg|auu}}
{{Disambig}}
{{mn}}
[[File:Trixorigin.png|thumb|right|''It started when an alien device did what it did...'']]
The Omnitrix was a device created by [[Azmuth]] of the [[Galvan]], in an effort to promote peace among species in the universe. The original found its way onto the wrist of then 10-year-old [[Ben Tennyson]], who would go then use the device to save the world, universe, and multiverse, many times over.
__TOC__
{{-}}
<center><gallery widths="200px" heights="250px">
File:af trix.png|link=[[Omnitrix (Prototype)]]|[[Omnitrix (Prototype)|Prototype Omnitrix]]<br><hr>''[[Omnitrix (Prototype)/Toys|Toys]] • [[Omnitrix (Prototype)/Merchandise|Merchandise]]''
File:ultimatrix ben.png|link=[[Ultimatrix]]|[[Ultimatrix]]<br><hr>''[[Ultimatrix/Toys|Toys]] • [[Ultimatrix/Merchandise|Merchandise]]''
File:Omnitrix Prime.png|link=[[Omnitrix (Completed)]]|[[Omnitrix (Completed)|''Omniverse'' Omnitrix]]<br><hr>''[[Omnitrix (Completed)/Toys|Toys]] • [[Omnitrix (Completed)/Merchandise|Merchandise]]''
File:Omnitrix-reboot.gif|link=[[Omnitrix (Reboot)]]|[[Omnitrix (Reboot)|''Ben 10'' (2016) Omnitrix]]<br><hr>''[[Omnitrix (Reboot)/Toys|Toys]] • [[Omnitrix (Reboot)/Merchandise|Merchandise]]''
</gallery></center>
{{-}}
==Major Omnitrices ==
<center><gallery widths="200px" heights="250px">
File:10ktrix.png|link=[[Omnitrix (Ben 10,000)]]|[[Omnitrix (Ben 10,000)|''Original Series'' Ben 10,000's Omnitrix]]
File:OmnitrixProt OS.png|link=[[Omnitrix (Ken 10)]]|[[Omnitrix (Ken 10)|Ken Tennyson's Omnitrix]]
File:albedo trix.png|link=[[Omnitrix (Copy)]]|[[Omnitrix (Copy)|Albedo's Omnitrix]]
File:ultimatrix albedo.png|link=[[Ultimatrix]]|[[Ultimatrix|Albedo's Ultimatrix]]
File:unitrix model.png|link=[[Eunice]]|[[Eunice|Unitrix]]
File:10kreturnstrix.png|link=[[Ultimatrix (Ben 10,000 Returns)]]|[[Ultimatrix (Ben 10,000 Returns)|Ultimate Ben's Ultimatrix]]
File:nemetrix model.png|link=[[Nemetrix]]|[[Nemetrix]]
File:biotrix2.png|link=[[Biomnitrix]]|[[Biomnitrix]]
File:stabilizergif.gif|link=[[Stabilizer]]|[[Stabilizer|Albedo's Stabilizer]]
File:ultimatrix ov.png|link=[[Stabilizer]]|[[Stabilizer|Albedo's Upgraded Stabilizer]]
File:Omnitrix Ben23.png|link=[[Hero Watch]]|[[Hero Watch|Ben 23's Hero Watch]]
File:Omnitrix BadBen.png|link=[[Omnitrix (Bad Dimension)]]|[[Omnitrix (Bad Dimension)|Bad Ben's Omnitrix]]
File:Omnitrix Madworld.png|link=[[Power Watch]]|[[Power Watch|Mad Ben's Power Watch]]
File:Omnitrix Negatrix.png|link=[[Negatrix]]|[[Negatrix|Nega Ben's Negatrix]]
File:zombitrixm.png|link=[[Zombitrix]]|[[Zombitrix|Benzarro's Zombitrix]]
File:Omnitrix Gweniverse.png|link=[[Omnitrix (Gweniverse)]]|[[Omnitrix (Gweniverse)|''Omniverse'' Gwen 10's Omnitrix]]
File:PLACEHOLDER2.png|link=[[Antitrix]]|[[Antitrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Ben 10,010)]]|[[Omnitrix (Ben 10,010)|''Reboot'' Ben 10,000's Omnitrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Evil Dimension)]]|[[Omnitrix (Evil Dimension)|Alien X's Omnitrix in ''Alien X-Tinction'']]
File:PLACEHOLDER2.png|link=[[Omnitrix (Original Series Dimension)]]|[[Omnitrix (Original Series Dimension)|"Original Series Ben's" Omnitrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Alien Force Dimension)]]|[[Omnitrix (Alien Force Dimension)|"Alien Force Ben's" Omnitrix]]
File:PLACEHOLDER2.png|link=[[Ultimatrix (Ultimate Alien Dimension)]]|[[Ultimatrix (Ultimate Alien Dimension)|"Ultimate Alien Ben's" Ultimatrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Omniverse Dimension)]]|[[Omnitrix (Omniverse Dimension)|"Omniverse Ben's" Omnitrix]]
File:PLACEHOLDER2.png|link=[[Omnitrix (Gwen 10 Dimension)]]|[[Omnitrix (Gwen 10 Dimension)|''Reboot'' Gwen 10's Omnitrix]]
</gallery></center>
{{-}}
==Full List of Omnitrices==
* placeholder
* every omnitrix of every [[Ben]], all the ones listed above
* any trices of any other trix wielders too, like tim 10.
* potis altiare
{{-}}
==Media Referencing the Omnitrix==
* placeholder
{{-}}
==See Also==
* [[Omnitrix Wielders]]
* [[Ultimatrix (Disambiguation)]]
* [[Ben Tennyson (Disambiguation)]]
* [[Albedo]]
{{-}}
a23cda19a853b2b7511e8a3f467847d4d597c718
File:PLACEHOLDER2.png
6
42
2224
126
2022-04-25T04:12:43Z
Jaswacker
30585766
Jaswacker uploaded a new version of [[File:PLACEHOLDER2.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:O.png
6
542
2225
2022-04-25T04:13:04Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Fandom
0
237
2229
1752
2022-04-25T22:21:46Z
Jaswacker
30585766
wikitext
text/x-wiki
{{stub}}
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Roxy, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Heatblast.net (2006-2008?) ===
One of the earliest fansites, having originated in 2006 but ceasing to exist around a month before Alien Force premiered.
=== Ben10toys.net (2006-2018, 2021*) ===
Hosted on a service called Ning, the forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally run by a user named Agent Spectre, and later given to toy reviewer Stu Carter of Atamaii.com, who maintained the site until sometime in 2018. *In 2021, the site reappeared for a single day, only to go back down again.
<center><gallery widths="110px" heights="110px">
File:Toysdotnet_2006.png| Ben10toys.net circa 2006.
File:Toysdotnet_2010_banner.png| The site's banner circa 2010.
File:Toysdotnet_Final.png| Ben10toys.net in its final years.
</gallery></center>
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
<noinclude>
[[Category:Fandom]]
</noinclude>
f0114532098db8146cf773e4e82c39e9dc0239da
2230
2229
2022-04-25T22:21:58Z
Jaswacker
30585766
wikitext
text/x-wiki
{{mn}}
{{stub}}
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Roxy, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Heatblast.net (2006-2008?) ===
One of the earliest fansites, having originated in 2006 but ceasing to exist around a month before Alien Force premiered.
=== Ben10toys.net (2006-2018, 2021*) ===
Hosted on a service called Ning, the forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally run by a user named Agent Spectre, and later given to toy reviewer Stu Carter of Atamaii.com, who maintained the site until sometime in 2018. *In 2021, the site reappeared for a single day, only to go back down again.
<center><gallery widths="110px" heights="110px">
File:Toysdotnet_2006.png| Ben10toys.net circa 2006.
File:Toysdotnet_2010_banner.png| The site's banner circa 2010.
File:Toysdotnet_Final.png| Ben10toys.net in its final years.
</gallery></center>
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
<noinclude>
[[Category:Fandom]]
</noinclude>
8ca49209d0ed2b4d00134bde9a48b330c4723c16
2231
2230
2022-04-25T22:30:16Z
Jaswacker
30585766
wikitext
text/x-wiki
{{mn}}
{{stub}}
[[Canon]]
[[Continuity]]
[[Canonizing]]
[[Psuedocanon]]
[[Easter eggs]]
[[Alien names]]
[[Unpixels]]
[[Customs]]
[[Mundo]]
[[Ben10toys.net]]
[[Ben 10: Lost and Found]]
[[Omnitober]]
[[Ben 10 Planet]]
[[Heatblast.net]]
[[Ben-10.net]]
[[Ben 10: Five Years Later]]
[[Stu Carter]]
[[Agent Specter]]
[[Ben 10 Fan Fiction]]
[[Trix]]
[[Postcanon]]
[[Ben 10 Prime]]
[[Authorial intent]]
[[Retcon]]
[[Noncanon]]
[[Fanon]]
[[Fan fiction]]
[[Headcanon]]
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Roxy, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Heatblast.net (2006-2008?) ===
One of the earliest fansites, having originated in 2006 but ceasing to exist around a month before Alien Force premiered.
=== Ben10toys.net (2006-2018, 2021*) ===
Hosted on a service called Ning, the forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally run by a user named Agent Spectre, and later given to toy reviewer Stu Carter of Atamaii.com, who maintained the site until sometime in 2018. *In 2021, the site reappeared for a single day, only to go back down again.
<center><gallery widths="110px" heights="110px">
File:Toysdotnet_2006.png| Ben10toys.net circa 2006.
File:Toysdotnet_2010_banner.png| The site's banner circa 2010.
File:Toysdotnet_Final.png| Ben10toys.net in its final years.
</gallery></center>
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
<noinclude>
[[Category:Fandom]]
</noinclude>
fd701031514c4f091fb25728a666b839477e6f95
2232
2231
2022-04-25T22:42:05Z
Jaswacker
30585766
wikitext
text/x-wiki
{{mn}}
{{stub}}
[[Canon]]<br>
[[Continuity]]<br>
[[Canonizing]]<br>
[[Psuedocanon]]<br>
[[Easter eggs]]<br>
[[Alien names]]<br>
[[Unpixels]]<br>
[[Customs]]<br>
[[Mundo]]<br>
[[Ben10toys.net]]<br>
[[Ben 10: Lost and Found]]<br>
[[Omnitober]]<br>
[[Ben 10 Planet]]<br>
[[Heatblast.net]]<br>
[[Ben-10.net]]<br>
[[5 Years Later]]<br>
[[Stu Carter]]<br>
[[Agent Specter]]<br>
[[Ben 10 Fan Fiction]]<br>
[[Trix]]<br>
[[Postcanon]]<br>
[[Ben 10 Prime]]<br>
[[Authorial intent]]<br>
[[Retcon]]<br>
[[Noncanon]]<br>
[[Fanon]]<br>
[[Fan fiction]]<br>
[[Headcanon]]<br>
[[Ben 7]]<br>
[[Fusion aliens]]<br>
[[Self insert]]<br>
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Roxy, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Heatblast.net (2006-2008?) ===
One of the earliest fansites, having originated in 2006 but ceasing to exist around a month before Alien Force premiered.
=== Ben10toys.net (2006-2018, 2021*) ===
Hosted on a service called Ning, the forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally run by a user named Agent Spectre, and later given to toy reviewer Stu Carter of Atamaii.com, who maintained the site until sometime in 2018. *In 2021, the site reappeared for a single day, only to go back down again.
<center><gallery widths="110px" heights="110px">
File:Toysdotnet_2006.png| Ben10toys.net circa 2006.
File:Toysdotnet_2010_banner.png| The site's banner circa 2010.
File:Toysdotnet_Final.png| Ben10toys.net in its final years.
</gallery></center>
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
<noinclude>
[[Category:Fandom]]
</noinclude>
fd225264ce6351d0d3cdfca76c3b6fbae32e1ba6
2233
2232
2022-04-25T22:42:47Z
Jaswacker
30585766
wikitext
text/x-wiki
{{mn}}
{{stub}}
[[Canon]]<br>
[[Continuity]]<br>
[[Canonizing]]<br>
[[Psuedocanon]]<br>
[[Easter eggs]]<br>
[[Alien names]]<br>
[[Unpixels]]<br>
[[Customs]]<br>
[[Mundo]]<br>
[[Ben10toys.net]]<br>
[[Ben 10: Lost and Found]]<br>
[[Omnitober]]<br>
[[Ben 10 Planet]]<br>
[[Heatblast.net]]<br>
[[Ben-10.net]]<br>
[[5 Years Later]]<br>
[[Stu Carter]]<br>
[[Agent Specter]]<br>
[[Ben 10 Fan Fiction]]<br>
[[Trix]]<br>
[[Postcanon]]<br>
[[Ben 10 Prime]]<br>
[[Authorial intent]]<br>
[[Retcon]]<br>
[[Noncanon]]<br>
[[Fanon]]<br>
[[Fan fiction]]<br>
[[Headcanon]]<br>
[[Ben 7]]<br>
[[Fusion aliens]]<br>
[[Self insert]]<br>
[[Category:Fan terminology]]
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Roxy, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Heatblast.net (2006-2008?) ===
One of the earliest fansites, having originated in 2006 but ceasing to exist around a month before Alien Force premiered.
=== Ben10toys.net (2006-2018, 2021*) ===
Hosted on a service called Ning, the forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally run by a user named Agent Spectre, and later given to toy reviewer Stu Carter of Atamaii.com, who maintained the site until sometime in 2018. *In 2021, the site reappeared for a single day, only to go back down again.
<center><gallery widths="110px" heights="110px">
File:Toysdotnet_2006.png| Ben10toys.net circa 2006.
File:Toysdotnet_2010_banner.png| The site's banner circa 2010.
File:Toysdotnet_Final.png| Ben10toys.net in its final years.
</gallery></center>
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
<noinclude>
[[Category:Fandom]]
</noinclude>
17dbc8bd839e3bed2c47e544e989b86f9331dace
2234
2233
2022-04-25T22:43:20Z
Jaswacker
30585766
wikitext
text/x-wiki
{{mn}}
{{stub}}
[[Canon]]<br>
[[Continuity]]<br>
[[Canonizing]]<br>
[[Psuedocanon]]<br>
[[Easter eggs]]<br>
[[Alien names]]<br>
[[Unpixels]]<br>
[[Customs]]<br>
[[Mundo]]<br>
[[Ben10toys.net]]<br>
[[Ben 10: Lost and Found]]<br>
[[Omnitober]]<br>
[[Ben 10 Planet]]<br>
[[Heatblast.net]]<br>
[[Ben-10.net]]<br>
[[5 Years Later]]<br>
[[Stu Carter]]<br>
[[Agent Specter]]<br>
[[Ben 10 Fan Fiction]]<br>
[[Trix]]<br>
[[Postcanon]]<br>
[[Ben 10 Prime]]<br>
[[Authorial intent]]<br>
[[Retcon]]<br>
[[Noncanon]]<br>
[[Fanon]]<br>
[[Fan fiction]]<br>
[[Headcanon]]<br>
[[Ben 7]]<br>
[[Fusion aliens]]<br>
[[Self insert]]<br>
[[:Category:Fan terminology]]
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Roxy, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Heatblast.net (2006-2008?) ===
One of the earliest fansites, having originated in 2006 but ceasing to exist around a month before Alien Force premiered.
=== Ben10toys.net (2006-2018, 2021*) ===
Hosted on a service called Ning, the forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally run by a user named Agent Spectre, and later given to toy reviewer Stu Carter of Atamaii.com, who maintained the site until sometime in 2018. *In 2021, the site reappeared for a single day, only to go back down again.
<center><gallery widths="110px" heights="110px">
File:Toysdotnet_2006.png| Ben10toys.net circa 2006.
File:Toysdotnet_2010_banner.png| The site's banner circa 2010.
File:Toysdotnet_Final.png| Ben10toys.net in its final years.
</gallery></center>
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
<noinclude>
[[Category:Fandom]]
</noinclude>
271eee1c2bb15e18332bd0effd82ab7f88690324
2235
2234
2022-04-25T22:43:43Z
Jaswacker
30585766
wikitext
text/x-wiki
{{mn}}
{{stub}}
[[Canon]]<br>
[[Continuity]]<br>
[[Canonizing]]<br>
[[Psuedocanon]]<br>
[[Easter eggs]]<br>
[[Alien names]]<br>
[[Unpixels]]<br>
[[Customs]]<br>
[[Mundo]]<br>
[[Ben10toys.net]]<br>
[[Ben 10: Lost and Found]]<br>
[[Omnitober]]<br>
[[Ben 10 Planet]]<br>
[[Heatblast.net]]<br>
[[Ben-10.net]]<br>
[[5 Years Later]]<br>
[[Stu Carter]] (maybe not)<br>
[[Agent Specter]]<br>
[[Ben 10 Fan Fiction]]<br>
[[Trix]]<br>
[[Postcanon]]<br>
[[Ben 10 Prime]]<br>
[[Authorial intent]]<br>
[[Retcon]]<br>
[[Noncanon]]<br>
[[Fanon]]<br>
[[Fan fiction]]<br>
[[Headcanon]]<br>
[[Ben 7]]<br>
[[Fusion aliens]]<br>
[[Self insert]]<br>
[[:Category:Fan terminology]]
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Roxy, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Heatblast.net (2006-2008?) ===
One of the earliest fansites, having originated in 2006 but ceasing to exist around a month before Alien Force premiered.
=== Ben10toys.net (2006-2018, 2021*) ===
Hosted on a service called Ning, the forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally run by a user named Agent Spectre, and later given to toy reviewer Stu Carter of Atamaii.com, who maintained the site until sometime in 2018. *In 2021, the site reappeared for a single day, only to go back down again.
<center><gallery widths="110px" heights="110px">
File:Toysdotnet_2006.png| Ben10toys.net circa 2006.
File:Toysdotnet_2010_banner.png| The site's banner circa 2010.
File:Toysdotnet_Final.png| Ben10toys.net in its final years.
</gallery></center>
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
<noinclude>
[[Category:Fandom]]
</noinclude>
34127d48eca45d2e933cd06628c7efa5ede050a4
2236
2235
2022-04-25T22:44:12Z
Jaswacker
30585766
wikitext
text/x-wiki
{{mn}}
{{stub}}
[[Canon]]<br>
[[Continuity]]<br>
[[Canonizing]]<br>
[[Psuedocanon]]<br>
[[Easter eggs]]<br>
[[Alien names]]<br>
[[Unpixels]]<br>
[[Customs]]<br>
[[Mundo]]<br>
[[ben10toys.net]]<br>
[[Ben 10: Lost and Found]]<br>
[[Omnitober]]<br>
[[Ben 10 Planet]]<br>
[[heatblast.net]]<br>
[[ben-10.net]]<br>
[[5 Years Later]]<br>
[[Stu Carter]] (maybe not)<br>
[[Agent Specter]]<br>
[[Ben 10 Fan Fiction]]<br>
[[Trix]]<br>
[[Postcanon]]<br>
[[Ben 10 Prime]]<br>
[[Authorial intent]]<br>
[[Retcon]]<br>
[[Noncanon]]<br>
[[Fanon]]<br>
[[Fan fiction]]<br>
[[Headcanon]]<br>
[[Ben 7]]<br>
[[Fusion aliens]]<br>
[[Self insert]]<br>
[[:Category:Fan terminology]]
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Roxy, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Heatblast.net (2006-2008?) ===
One of the earliest fansites, having originated in 2006 but ceasing to exist around a month before Alien Force premiered.
=== Ben10toys.net (2006-2018, 2021*) ===
Hosted on a service called Ning, the forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally run by a user named Agent Spectre, and later given to toy reviewer Stu Carter of Atamaii.com, who maintained the site until sometime in 2018. *In 2021, the site reappeared for a single day, only to go back down again.
<center><gallery widths="110px" heights="110px">
File:Toysdotnet_2006.png| Ben10toys.net circa 2006.
File:Toysdotnet_2010_banner.png| The site's banner circa 2010.
File:Toysdotnet_Final.png| Ben10toys.net in its final years.
</gallery></center>
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
<noinclude>
[[Category:Fandom]]
</noinclude>
257326fc23bf5bdf6f9b8354b34d3b492365e5b6
2237
2236
2022-04-25T22:45:03Z
Jaswacker
30585766
wikitext
text/x-wiki
{{mn}}
{{stub}}
[[Canon]]<br>
[[Continuity]]<br>
[[Canonizing]]<br>
[[Psuedocanon]]<br>
[[Easter eggs]]<br>
[[Alien names]]<br>
[[Unpixels]]<br>
[[Customs]]<br>
[[Mundo]]<br>
[[ben10toys.net]]<br>
[[Ben 10: Lost and Found]]<br>
[[Omnitober]]<br>
[[Ben 10 Planet]]<br>
[[heatblast.net]]<br>
[[ben-10.net]]<br>
[[5 Years Later]]<br>
[[Stu Carter]] (maybe not)<br>
[[Agent Spectre]]<br>
[[Ben 10 Fan Fiction]]<br>
[[Trix]]<br>
[[Postcanon]]<br>
[[Ben 10 Prime]]<br>
[[Authorial intent]]<br>
[[Retcon]]<br>
[[Noncanon]]<br>
[[Fanon]]<br>
[[Fan fiction]]<br>
[[Headcanon]]<br>
[[Ben 7]]<br>
[[Fusion aliens]]<br>
[[Self insert]]<br>
[[:Category:Fan terminology]]
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Roxy, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Heatblast.net (2006-2008?) ===
One of the earliest fansites, having originated in 2006 but ceasing to exist around a month before Alien Force premiered.
=== Ben10toys.net (2006-2018, 2021*) ===
Hosted on a service called Ning, the forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally run by a user named Agent Spectre, and later given to toy reviewer Stu Carter of Atamaii.com, who maintained the site until sometime in 2018. *In 2021, the site reappeared for a single day, only to go back down again.
<center><gallery widths="110px" heights="110px">
File:Toysdotnet_2006.png| Ben10toys.net circa 2006.
File:Toysdotnet_2010_banner.png| The site's banner circa 2010.
File:Toysdotnet_Final.png| Ben10toys.net in its final years.
</gallery></center>
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
<noinclude>
[[Category:Fandom]]
</noinclude>
4cef808e512c2232e9e4f09670bf46ac77ca4191
2238
2237
2022-04-25T22:46:59Z
Jaswacker
30585766
wikitext
text/x-wiki
{{mn}}
{{stub}}
[[Canon]]<br>
[[Continuity]]<br>
[[Canonizing]]<br>
[[Psuedocanon]]<br>
[[Easter eggs]]<br>
[[Alien names]]<br>
[[Unpixels]]<br>
[[Customs]]<br>
[[Mundo]]<br>
[[ben10toys.net]]<br>
[[Ben 10: Lost and Found]]<br>
[[Omnitober]]<br>
[[Ben 10 Planet]]<br>
[[heatblast.net]]<br>
[[ben-10.net]]<br>
[[5 Years Later]]<br>
[[Stu Carter]] (maybe not)<br>
[[Agent Spectre]]<br>
[[Ben 10 Fan Fiction]]<br>
[[Trix]]<br>
[[Postcanon]]<br>
[[Ben 10 Prime]]<br>
[[Authorial intent]]<br>
[[Retcon]]<br>
[[Noncanon]]<br>
[[Fanon]]<br>
[[Fan fiction]]<br>
[[Headcanon]]<br>
[[Ben 7]]<br>
[[Fusion aliens]]<br>
[[Self insert]]<br>
[[:Category:Fan terminology]]
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Roxy, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Heatblast.net (2006-2008?) ===
One of the earliest fansites, having originated in 2006 but ceasing to exist around a month before Alien Force premiered.
=== Ben10toys.net (2006-2018, 2021*) ===
Hosted on a service called Ning, the forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally run by a user named Agent Spectre, and later given to toy reviewer Stu Carter of Atamaii.com, who maintained the site until sometime in 2018. *In 2021, the site reappeared for a single day, only to go back down again.
After Agent Spectre, a toy reviewer named Stu Carter would maintain the site until its unexpected shutdown in 2018. The site mysteriously came back for one day under a new URL in (insert whatever year), as if it'd been frozen in time, (or perhaps breathing a final breath), before shutting down again the next day, presumably for good.
<center><gallery widths="110px" heights="110px">
File:Toysdotnet_2006.png| Ben10toys.net circa 2006.
File:Toysdotnet_2010_banner.png| The site's banner circa 2010.
File:Toysdotnet_Final.png| Ben10toys.net in its final years.
</gallery></center>
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
<noinclude>
[[Category:Fandom]]
</noinclude>
9bf3cd50c409bff0d34ce30c6f5a52847cb1b066
2239
2238
2022-04-25T22:49:37Z
Jaswacker
30585766
/* Ben10toys.net (2006-2018, 2021*) */
wikitext
text/x-wiki
{{mn}}
{{stub}}
[[Canon]]<br>
[[Continuity]]<br>
[[Canonizing]]<br>
[[Psuedocanon]]<br>
[[Easter eggs]]<br>
[[Alien names]]<br>
[[Unpixels]]<br>
[[Customs]]<br>
[[Mundo]]<br>
[[ben10toys.net]]<br>
[[Ben 10: Lost and Found]]<br>
[[Omnitober]]<br>
[[Ben 10 Planet]]<br>
[[heatblast.net]]<br>
[[ben-10.net]]<br>
[[5 Years Later]]<br>
[[Stu Carter]] (maybe not)<br>
[[Agent Spectre]]<br>
[[Ben 10 Fan Fiction]]<br>
[[Trix]]<br>
[[Postcanon]]<br>
[[Ben 10 Prime]]<br>
[[Authorial intent]]<br>
[[Retcon]]<br>
[[Noncanon]]<br>
[[Fanon]]<br>
[[Fan fiction]]<br>
[[Headcanon]]<br>
[[Ben 7]]<br>
[[Fusion aliens]]<br>
[[Self insert]]<br>
[[:Category:Fan terminology]]
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Roxy, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Heatblast.net (2006-2008?) ===
One of the earliest fansites, having originated in 2006 but ceasing to exist around a month before Alien Force premiered.
=== Ben10toys.net (2006-2018, 2021*) ===
Hosted on a service called Ning, the forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally run by a user named Agent Spectre, and later given to toy reviewer Stu Carter of Atamaii.com, who maintained the site until sometime in 2018. *In 2021, the site reappeared for a single day, only to go back down again.
After Agent Spectre, a toy reviewer named Stu Carter would maintain the site until its unexpected shutdown in 2018. The site mysteriously came back under a new URL in (insert date) as if it'd been frozen in time, (or perhaps breathing a final breath). It shut down again the next day, presumably for good.
<center><gallery widths="110px" heights="110px">
File:Toysdotnet_2006.png| Ben10toys.net circa 2006.
File:Toysdotnet_2010_banner.png| The site's banner circa 2010.
File:Toysdotnet_Final.png| Ben10toys.net in its final years.
</gallery></center>
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
<noinclude>
[[Category:Fandom]]
</noinclude>
212d7befd545ccecd89e436eda4f831e96b2db8b
2240
2239
2022-04-25T22:51:15Z
Jaswacker
30585766
/* Ben10toys.net (2006-2018, 2021*) */
wikitext
text/x-wiki
{{mn}}
{{stub}}
[[Canon]]<br>
[[Continuity]]<br>
[[Canonizing]]<br>
[[Psuedocanon]]<br>
[[Easter eggs]]<br>
[[Alien names]]<br>
[[Unpixels]]<br>
[[Customs]]<br>
[[Mundo]]<br>
[[ben10toys.net]]<br>
[[Ben 10: Lost and Found]]<br>
[[Omnitober]]<br>
[[Ben 10 Planet]]<br>
[[heatblast.net]]<br>
[[ben-10.net]]<br>
[[5 Years Later]]<br>
[[Stu Carter]] (maybe not)<br>
[[Agent Spectre]]<br>
[[Ben 10 Fan Fiction]]<br>
[[Trix]]<br>
[[Postcanon]]<br>
[[Ben 10 Prime]]<br>
[[Authorial intent]]<br>
[[Retcon]]<br>
[[Noncanon]]<br>
[[Fanon]]<br>
[[Fan fiction]]<br>
[[Headcanon]]<br>
[[Ben 7]]<br>
[[Fusion aliens]]<br>
[[Self insert]]<br>
[[:Category:Fan terminology]]
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Roxy, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Heatblast.net (2006-2008?) ===
One of the earliest fansites, having originated in 2006 but ceasing to exist around a month before Alien Force premiered.
=== Ben10toys.net (2006-2018, 2021*) ===
Hosted on a service called Ning, the forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally run by a user named Agent Spectre, and later given to toy reviewer Stu Carter of Atamaii.com, who maintained the site until sometime in 2018. *In 2021, the site reappeared for a single day, only to go back down again.
After Agent Spectre, a toy reviewer named Stu Carter would maintain the site until its unexpected shutdown in 2018. The site mysteriously came back under a new URL on 23 November 2021 as if it'd been frozen in time, (or perhaps breathing a final breath). It shut down again the next day, presumably for good.
<center><gallery widths="110px" heights="110px">
File:Toysdotnet_2006.png| Ben10toys.net circa 2006.
File:Toysdotnet_2010_banner.png| The site's banner circa 2010.
File:Toysdotnet_Final.png| Ben10toys.net in its final years.
</gallery></center>
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
<noinclude>
[[Category:Fandom]]
</noinclude>
039bb93c7339f3a43c975e441f42f3308faa7679
2242
2240
2022-04-25T23:07:30Z
Jaswacker
30585766
wikitext
text/x-wiki
{{mn}}
{{stub}}
[[Canon]]<br>
[[Continuity]]<br>
[[Canonizing]]<br>
[[Psuedocanon]]<br>
[[Easter eggs]]<br>
[[Alien names]]<br>
[[Unpixels]]<br>
[[Customs]]<br>
[[Mundo]]<br>
[[ben10toys.net]]<br>
[[Ben 10: Lost and Found]]<br>
[[Omnitober]]<br>
[[Ben 10 Planet]]<br>
[[heatblast.net]]<br>
[[ben-10.net]]<br>
[[5 Years Later]]<br>
[[Stu Carter]] (maybe not, merge into toysdotnet page/redirect)<br>
[[Agent Spectre]] (maybe not, merge into toysdotnet page/redirect)<br>
[[Ben 10 Fan Fiction]]<br>
[[Trix]]<br>
[[Postcanon]]<br>
[[Ben 10 Prime]]<br>
[[Authorial intent]]<br>
[[Retcon]]<br>
[[Noncanon]]<br>
[[Fanon]]<br>
[[Fan fiction]]<br>
[[Headcanon]]<br>
[[Ben 7]]<br>
[[Fusion aliens]]<br>
[[Self insert]]<br>
[[:Category:Fan terminology]]<br>
[[Josh Perez]]<br>
[[Derrick J Wyatt GoFundMe]]<br>
[[Chespirep]] (should karin get a page? i think her fanart has been super influential to the fandom)<br>
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Roxy, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Heatblast.net (2006-2008?) ===
One of the earliest fansites, having originated in 2006 but ceasing to exist around a month before Alien Force premiered.
=== Ben10toys.net (2006-2018, 2021*) ===
Hosted on a service called Ning, the forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally run by a user named Agent Spectre, and later given to toy reviewer Stu Carter of Atamaii.com, who maintained the site until sometime in 2018. *In 2021, the site reappeared for a single day, only to go back down again.
After Agent Spectre, a toy reviewer named Stu Carter would maintain the site until its unexpected shutdown in 2018. The site mysteriously came back under a new URL on 23 November 2021 as if it'd been frozen in time, (or perhaps breathing a final breath). It shut down again the next day, presumably for good.
<center><gallery widths="110px" heights="110px">
File:Toysdotnet_2006.png| Ben10toys.net circa 2006.
File:Toysdotnet_2010_banner.png| The site's banner circa 2010.
File:Toysdotnet_Final.png| Ben10toys.net in its final years.
</gallery></center>
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
<noinclude>
[[Category:Fandom]]
</noinclude>
3c59c436f1fe95544da41f8407e36c6db505f4f0
2243
2242
2022-04-25T23:12:36Z
Jaswacker
30585766
wikitext
text/x-wiki
{{mn}}
{{stub}}
[[Canon]]<br>
[[Continuity]]<br>
[[Canonizing]]<br>
[[Psuedocanon]]<br>
[[Easter eggs]]<br>
[[Names]]<br>
[[Unpixels]]<br>
[[Customs]]<br>
[[Mundo]]<br>
[[ben10toys.net]] redirect: [[Stu Carter]], [[Agent Spectre]], [[Atamaii]]<br>
[[Ben 10: Lost and Found]]<br>
[[Omnitober]]<br>
[[Ben 10 Planet]]<br>
[[heatblast.net]]<br>
[[ben-10.net]]<br>
[[5 Years Later]]<br>
[[Ben 10 Fan Fiction]]<br>
[[Trix]]<br>
[[Postcanon]]<br>
[[Ben 10 Prime]]<br>
[[Authorial intent]]<br>
[[Retcon]]<br>
[[Noncanon]]<br>
[[Fanon]]<br>
[[Fan fiction]]<br>
[[Headcanon]]<br>
[[Ben 7]]<br>
[[Fusion aliens]]<br>
[[Self insert]]<br>
[[:Category:Fan terminology]]<br>
[[Josh Perez]] redirect: [[Dyemooch]]<br>
[[Derrick J Wyatt GoFundMe]]<br>
[[Clover Karin]] redirect: [[Chespirep]]<br>
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Roxy, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Heatblast.net (2006-2008?) ===
One of the earliest fansites, having originated in 2006 but ceasing to exist around a month before Alien Force premiered.
=== Ben10toys.net (2006-2018, 2021*) ===
Hosted on a service called Ning, the forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally run by a user named Agent Spectre, and later given to toy reviewer Stu Carter of Atamaii.com, who maintained the site until sometime in 2018. *In 2021, the site reappeared for a single day, only to go back down again.
After Agent Spectre, a toy reviewer named Stu Carter would maintain the site until its unexpected shutdown in 2018. The site mysteriously came back under a new URL on 23 November 2021 as if it'd been frozen in time, (or perhaps breathing a final breath). It shut down again the next day, presumably for good.
<center><gallery widths="110px" heights="110px">
File:Toysdotnet_2006.png| Ben10toys.net circa 2006.
File:Toysdotnet_2010_banner.png| The site's banner circa 2010.
File:Toysdotnet_Final.png| Ben10toys.net in its final years.
</gallery></center>
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
<noinclude>
[[Category:Fandom]]
</noinclude>
3213b4d58e5f6cc25b807adcabfa63793e3a52b6
2249
2243
2022-04-25T23:24:51Z
Roxalotl
30644625
/* Ben10toys.net (2006-2018, 2021*) */
wikitext
text/x-wiki
{{mn}}
{{stub}}
[[Canon]]<br>
[[Continuity]]<br>
[[Canonizing]]<br>
[[Psuedocanon]]<br>
[[Easter eggs]]<br>
[[Names]]<br>
[[Unpixels]]<br>
[[Customs]]<br>
[[Mundo]]<br>
[[ben10toys.net]] redirect: [[Stu Carter]], [[Agent Spectre]], [[Atamaii]]<br>
[[Ben 10: Lost and Found]]<br>
[[Omnitober]]<br>
[[Ben 10 Planet]]<br>
[[heatblast.net]]<br>
[[ben-10.net]]<br>
[[5 Years Later]]<br>
[[Ben 10 Fan Fiction]]<br>
[[Trix]]<br>
[[Postcanon]]<br>
[[Ben 10 Prime]]<br>
[[Authorial intent]]<br>
[[Retcon]]<br>
[[Noncanon]]<br>
[[Fanon]]<br>
[[Fan fiction]]<br>
[[Headcanon]]<br>
[[Ben 7]]<br>
[[Fusion aliens]]<br>
[[Self insert]]<br>
[[:Category:Fan terminology]]<br>
[[Josh Perez]] redirect: [[Dyemooch]]<br>
[[Derrick J Wyatt GoFundMe]]<br>
[[Clover Karin]] redirect: [[Chespirep]]<br>
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Roxy, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Heatblast.net (2006-2008?) ===
One of the earliest fansites, having originated in 2006 but ceasing to exist around a month before Alien Force premiered.
=== Ben10toys.net (2006-2018, 2021*) ===
The forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally created by an "Agent Spectre" and hosted on '''thepoki.com''' until it was later moved to '''Ning'''. After Agent Spectre, toy reviewer and owner of Atamaii.com '''Stu Carter''' took over and would maintain the site until its unexpected shutdown in 2018. The site mysteriously came back under a new URL on 23 November 2021 as if it'd been frozen in time, (or perhaps breathing a final breath). It shut down again the next day, presumably for good.
<center><gallery widths="110px" heights="110px">
File:Toysdotnet_2006.png| Ben10toys.net circa 2006.
File:Toysdotnet_2010_banner.png| The site's banner circa 2010.
File:Toysdotnet_Final.png| Ben10toys.net in its final years.
</gallery></center>
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
<noinclude>
[[Category:Fandom]]
</noinclude>
23866d256b32b84fc41f625693110d9d511cd8eb
2250
2249
2022-04-25T23:25:08Z
Roxalotl
30644625
/* Ben10toys.net (2006-2018, 2021*) */
wikitext
text/x-wiki
{{mn}}
{{stub}}
[[Canon]]<br>
[[Continuity]]<br>
[[Canonizing]]<br>
[[Psuedocanon]]<br>
[[Easter eggs]]<br>
[[Names]]<br>
[[Unpixels]]<br>
[[Customs]]<br>
[[Mundo]]<br>
[[ben10toys.net]] redirect: [[Stu Carter]], [[Agent Spectre]], [[Atamaii]]<br>
[[Ben 10: Lost and Found]]<br>
[[Omnitober]]<br>
[[Ben 10 Planet]]<br>
[[heatblast.net]]<br>
[[ben-10.net]]<br>
[[5 Years Later]]<br>
[[Ben 10 Fan Fiction]]<br>
[[Trix]]<br>
[[Postcanon]]<br>
[[Ben 10 Prime]]<br>
[[Authorial intent]]<br>
[[Retcon]]<br>
[[Noncanon]]<br>
[[Fanon]]<br>
[[Fan fiction]]<br>
[[Headcanon]]<br>
[[Ben 7]]<br>
[[Fusion aliens]]<br>
[[Self insert]]<br>
[[:Category:Fan terminology]]<br>
[[Josh Perez]] redirect: [[Dyemooch]]<br>
[[Derrick J Wyatt GoFundMe]]<br>
[[Clover Karin]] redirect: [[Chespirep]]<br>
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Roxy, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Heatblast.net (2006-2008?) ===
One of the earliest fansites, having originated in 2006 but ceasing to exist around a month before Alien Force premiered.
=== Ben10toys.net (2006-2018, 2021*) ===
The forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally created by an '''Agent Spectre''' and hosted on '''thepoki.com''' until it was later moved to '''Ning'''. After Agent Spectre, toy reviewer and owner of Atamaii.com '''Stu Carter''' took over and would maintain the site until its unexpected shutdown in 2018. The site mysteriously came back under a new URL on 23 November 2021 as if it'd been frozen in time, (or perhaps breathing a final breath). It shut down again the next day, presumably for good.
<center><gallery widths="110px" heights="110px">
File:Toysdotnet_2006.png| Ben10toys.net circa 2006.
File:Toysdotnet_2010_banner.png| The site's banner circa 2010.
File:Toysdotnet_Final.png| Ben10toys.net in its final years.
</gallery></center>
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
<noinclude>
[[Category:Fandom]]
</noinclude>
67853d6c55420c2d2c016b111ca7534188ef4cde
2253
2250
2022-04-25T23:32:40Z
Jaswacker
30585766
wikitext
text/x-wiki
{{mn}}
{{stub}}
[[Canon]]<br>
[[Continuity]]<br>
[[Canonizing]]<br>
[[Psuedocanon]]<br>
[[Easter eggs]]<br>
[[Names]]<br>
[[Unpixels]]<br>
[[Customs]]<br>
[[Mundo]]<br>
[[ben10toys.net]] redirect: [[Stu Carter]], [[Agent Spectre]], [[Atamaii]]<br>
[[Ben 10: Lost and Found]]<br>
[[Omnitober]]<br>
[[Ben 10 Planet]]<br>
[[heatblast.net]]<br>
[[ben-10.net]]<br>
[[5 Years Later]]<br>
[[Ben 10 Fan Fiction]]<br>
[[Trix]]<br>
[[Postcanon]]<br>
[[Ben 10 Prime]]<br>
[[Authorial intent]]<br>
[[Retcon]]<br>
[[Noncanon]]<br>
[[Fanon]]<br>
[[Fan fiction]]<br>
[[Headcanon]]<br>
[[Ben 7]]<br>
[[Fusion aliens]]<br>
[[Self insert]]<br>
[[:Category:Fan terminology]]<br>
[[Josh Perez]] redirect: [[Dyemooch]]<br>
[[Derrick J Wyatt GoFundMe]]<br>
[[Ji Yeon Park]] redirect: [[Chespirep]], [[Clover Karin]] '''make sure name is how she wants to be referred on here'''<br>
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Roxy, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Heatblast.net (2006-2008?) ===
One of the earliest fansites, having originated in 2006 but ceasing to exist around a month before Alien Force premiered.
=== Ben10toys.net (2006-2018, 2021*) ===
The forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally created by an '''Agent Spectre''' and hosted on '''thepoki.com''' until it was later moved to '''Ning'''. After Agent Spectre, toy reviewer and owner of Atamaii.com '''Stu Carter''' took over and would maintain the site until its unexpected shutdown in 2018. The site mysteriously came back under a new URL on 23 November 2021 as if it'd been frozen in time, (or perhaps breathing a final breath). It shut down again the next day, presumably for good.
<center><gallery widths="110px" heights="110px">
File:Toysdotnet_2006.png| Ben10toys.net circa 2006.
File:Toysdotnet_2010_banner.png| The site's banner circa 2010.
File:Toysdotnet_Final.png| Ben10toys.net in its final years.
</gallery></center>
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
<noinclude>
[[Category:Fandom]]
</noinclude>
fdc63d6f9fbb9aed13fc8ee35768532ebd643355
2254
2253
2022-04-25T23:34:52Z
Jaswacker
30585766
wikitext
text/x-wiki
{{mn}}
{{stub}}
[[Canon]]<br>
[[Continuity]]<br>
[[Canonizing]]<br>
[[Psuedocanon]]<br>
[[Easter eggs]]<br>
[[Names]]<br>
[[Unpixels]]<br>
[[Customs]]<br>
[[Mundo]]<br>
[[ben10toys.net]] redirect: [[Stu Carter]], [[Agent Spectre]], [[Atamaii]]<br>
[[Ben 10: Lost and Found]]<br>
[[Omnitober]]<br>
[[Ben 10 Planet]]<br>
[[heatblast.net]]<br>
[[ben-10.net]]<br>
[[5 Years Later]] redirect: [[Kuro the Artist]], [[The Ink Tank]], [[Rob Orpilla]]<br>
[[Ben 10 Fan Fiction]]<br>
[[Trix]]<br>
[[Postcanon]]<br>
[[Ben 10 Prime]]<br>
[[Authorial intent]]<br>
[[Retcon]]<br>
[[Noncanon]]<br>
[[Fanon]]<br>
[[Fan fiction]]<br>
[[Headcanon]]<br>
[[Ben 7]]<br>
[[Fusion aliens]]<br>
[[Self insert]]<br>
[[:Category:Fan terminology]]<br>
[[Josh Perez]] redirect: [[Dyemooch]]<br>
[[Derrick J Wyatt GoFundMe]]<br>
[[Ji Yeon Park]] redirect: [[Chespirep]], [[Clover Karin]] '''make sure name is how she wants to be referred on here'''<br>
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Roxy, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Heatblast.net (2006-2008?) ===
One of the earliest fansites, having originated in 2006 but ceasing to exist around a month before Alien Force premiered.
=== Ben10toys.net (2006-2018, 2021*) ===
The forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally created by an '''Agent Spectre''' and hosted on '''thepoki.com''' until it was later moved to '''Ning'''. After Agent Spectre, toy reviewer and owner of Atamaii.com '''Stu Carter''' took over and would maintain the site until its unexpected shutdown in 2018. The site mysteriously came back under a new URL on 23 November 2021 as if it'd been frozen in time, (or perhaps breathing a final breath). It shut down again the next day, presumably for good.
<center><gallery widths="110px" heights="110px">
File:Toysdotnet_2006.png| Ben10toys.net circa 2006.
File:Toysdotnet_2010_banner.png| The site's banner circa 2010.
File:Toysdotnet_Final.png| Ben10toys.net in its final years.
</gallery></center>
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
<noinclude>
[[Category:Fandom]]
</noinclude>
f822d25064022fa5256fd585cbc0cd036bfe56de
2255
2254
2022-04-25T23:42:01Z
Jaswacker
30585766
wikitext
text/x-wiki
{{mn}}
{{stub}}
[[Canon]]<br>
[[Continuity]]<br>
[[Canonizing]]<br>
[[Psuedocanon]]<br>
[[Easter eggs]]<br>
[[Names]]<br>
[[Unpixels]]<br>
[[Customs]]<br>
[[Mundo]]<br>
[[ben10toys.net]] redirect: [[Stu Carter]], [[Agent Spectre]], [[Atamaii]]<br>
[[Ben 10: Lost and Found]]<br>
[[Omnitober]]<br>
[[Ben 10 Planet]]<br>
[[heatblast.net]]<br>
[[ben-10.net]]<br>
[[5 Years Later]] redirect: [[Kuro the Artist]], [[The Ink Tank]], [[Rob Orpilla]]<br>
[[Ben 10 Fan Fiction]]<br>
[[Trix]]<br>
[[Postcanon]]<br>
[[Ben 10 Prime]]<br>
[[Authorial intent]]<br>
[[Retcon]]<br>
[[Noncanon]]<br>
[[Fanon]]<br>
[[Fan fiction]]<br>
[[Headcanon]]<br>
[[Ben 7]]<br>
[[Fusion aliens]]<br>
[[Self insert]]<br>
[[:Category:Fan terminology]]<br>
[[Josh Perez]] redirect: [[Dyemooch]]<br>
[[Derrick J Wyatt GoFundMe]]<br>
[[Ji Yeon Park]] redirect: [[Chespirep]], [[Clover Karin]] '''make sure name is how she wants to be referred on here'''<br>
[[Omnipedia]]
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Roxy, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Heatblast.net (2006-2008?) ===
One of the earliest fansites, having originated in 2006 but ceasing to exist around a month before Alien Force premiered.
=== Ben10toys.net (2006-2018, 2021*) ===
The forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally created by an '''Agent Spectre''' and hosted on '''thepoki.com''' until it was later moved to '''Ning'''. After Agent Spectre, toy reviewer and owner of Atamaii.com '''Stu Carter''' took over and would maintain the site until its unexpected shutdown in 2018. The site mysteriously came back under a new URL on 23 November 2021 as if it'd been frozen in time, (or perhaps breathing a final breath). It shut down again the next day, presumably for good.
<center><gallery widths="110px" heights="110px">
File:Toysdotnet_2006.png| Ben10toys.net circa 2006.
File:Toysdotnet_2010_banner.png| The site's banner circa 2010.
File:Toysdotnet_Final.png| Ben10toys.net in its final years.
</gallery></center>
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
<noinclude>
[[Category:Fandom]]
</noinclude>
5bda1b932ab988886ebea77c9244b46bc3eb4dde
2256
2255
2022-04-25T23:42:47Z
Jaswacker
30585766
wikitext
text/x-wiki
{{mn}}
{{stub}}
[[Canon]]<br>
[[Continuity]]<br>
[[Canonizing]]<br>
[[Psuedocanon]]<br>
[[Easter eggs]]<br>
[[Names]]<br>
[[Unpixels]]<br>
[[Customs]]<br>
[[Mundo]]<br>
[[ben10toys.net]] redirect: [[Stu Carter]], [[Agent Spectre]], [[Atamaii]]<br>
[[Ben 10: Lost and Found]]<br>
[[Omnitober]]<br>
[[Ben 10 Planet]]<br>
[[heatblast.net]]<br>
[[ben-10.net]]<br>
[[5 Years Later]]<br>
[[The Ink Tank]] redirect: [[Kuro the Artist]], [[Rob Orpilla]]<br>
[[Ben 10 Fan Fiction]]<br>
[[Trix]]<br>
[[Postcanon]]<br>
[[Ben 10 Prime]]<br>
[[Authorial intent]]<br>
[[Retcon]]<br>
[[Noncanon]]<br>
[[Fanon]]<br>
[[Fan fiction]]<br>
[[Headcanon]]<br>
[[Ben 7]]<br>
[[Fusion aliens]]<br>
[[Self insert]]<br>
[[:Category:Fan terminology]]<br>
[[Josh Perez]] redirect: [[Dyemooch]]<br>
[[Derrick J Wyatt GoFundMe]]<br>
[[Ji Yeon Park]] redirect: [[Chespirep]], [[Clover Karin]] '''make sure name is how she wants to be referred on here'''<br>
[[Omnipedia]]
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Roxy, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Heatblast.net (2006-2008?) ===
One of the earliest fansites, having originated in 2006 but ceasing to exist around a month before Alien Force premiered.
=== Ben10toys.net (2006-2018, 2021*) ===
The forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally created by an '''Agent Spectre''' and hosted on '''thepoki.com''' until it was later moved to '''Ning'''. After Agent Spectre, toy reviewer and owner of Atamaii.com '''Stu Carter''' took over and would maintain the site until its unexpected shutdown in 2018. The site mysteriously came back under a new URL on 23 November 2021 as if it'd been frozen in time, (or perhaps breathing a final breath). It shut down again the next day, presumably for good.
<center><gallery widths="110px" heights="110px">
File:Toysdotnet_2006.png| Ben10toys.net circa 2006.
File:Toysdotnet_2010_banner.png| The site's banner circa 2010.
File:Toysdotnet_Final.png| Ben10toys.net in its final years.
</gallery></center>
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
<noinclude>
[[Category:Fandom]]
</noinclude>
ef73521cde59c54e560dc0eb89e41dded6523d2c
Category:Fandom
14
543
2241
2022-04-25T22:54:34Z
Jaswacker
30585766
Created blank page
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Greenfield:Sandbox
0
532
2244
2205
2022-04-25T23:16:44Z
Jaswacker
30585766
Jaswacker moved page [[Test]] to [[Greenfield:Sandbox]] without leaving a redirect
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|aso|rum|b23|g10|mad|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
b432c98bb5c372201f4c912e1e273ffa8692605c
2246
2244
2022-04-25T23:19:18Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
bd578e2bddecf48021dc4446725ae645fe1691c6
Greenfield:Schema
0
544
2245
2022-04-25T23:18:01Z
Jaswacker
30585766
Created page with "to do list. for testing specific page formatting, without wanting to undo the stuff on the page already, make a /schema subpage"
wikitext
text/x-wiki
to do list.
for testing specific page formatting, without wanting to undo the stuff on the page already, make a /schema subpage
5281127c721043a75acf911130791a2bb2387bbd
2247
2245
2022-04-25T23:19:58Z
Jaswacker
30585766
wikitext
text/x-wiki
to do list.<br>
for testing specific page formatting, without wanting to undo the stuff on the page already, make a /schema subpage
8d8e21da5c09263ab2a19a71a3c4ed0723be8724
2248
2247
2022-04-25T23:23:05Z
Jaswacker
30585766
wikitext
text/x-wiki
to do list.<br>
for testing specific page formatting, without wanting to undo the stuff on the page already, make a /schema subpage
{{-}}
make an infobox like charbox, but for irl people/cast/crew
{{irlbox}}
{{charbox}}
87d61d586e19c9e01e521ae58e780fae3a8798b2
2251
2248
2022-04-25T23:29:53Z
Jaswacker
30585766
wikitext
text/x-wiki
to do list.<br>
for testing specific page formatting, without wanting to undo the stuff on the page already, make a /schema subpage
{{-}}
make an infobox like charbox, but for irl people/cast/crew
{{irlbox}}
{{charbox}}
born
died
aliases
occupation
years active
spouse(s)
children
---------------
social media
website
2ec464cfe86a3659659f0761e3ad671939034d30
2252
2251
2022-04-25T23:30:11Z
Jaswacker
30585766
wikitext
text/x-wiki
to do list.<br>
for testing specific page formatting, without wanting to undo the stuff on the page already, make a /schema subpage
{{-}}
make an infobox like charbox, but for irl people/cast/crew
{{irlbox}}
{{charbox}}
born<br>
died<br>
aliases<br>
occupation<br>
years active<br>
spouse(s)<br>
children<br>
---------------
social media<br>
website
153f4274e6b11a07c19928089c7f022c2df720fb
Template:Social
10
545
2257
2022-04-25T23:46:34Z
Jaswacker
30585766
Created page with "<includeonly><div style="display: flex;">{{Social/icons|option={{{1|}}}}}</div></includeonly><noinclude>{{Social/doc}} [[Category:Templates]] </noinclude>"
wikitext
text/x-wiki
<includeonly><div style="display: flex;">{{Social/icons|option={{{1|}}}}}</div></includeonly><noinclude>{{Social/doc}}
[[Category:Templates]]
</noinclude>
d89d2b301b1f2caf12373ae19faba8dd829ef35d
2268
2257
2022-04-26T00:06:05Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>[[File:{{{{{1}}}.png|20px|link={{{2}}}]]{{Social/doc}}
[[Category:Templates]]
</noinclude>
0acb56c85203f8f4a6c6ac9b9dedf350ef6d662e
Template:Social/doc
10
548
2260
2022-04-25T23:53:32Z
Jaswacker
30585766
Created page with "<pre>{{social|twi|hegfdhdbns}} </pre> ==Social icon names== Social icon names used by this template are lowercase. Any mis-typed text not recognized as the template will be..."
wikitext
text/x-wiki
<pre>{{social|twi|hegfdhdbns}}
</pre>
==Social icon names==
Social icon names used by this template are lowercase. Any mis-typed text not recognized as the template will be rendered as text. (You will notice, it's hard to miss.)
{| class="prettytable sortable" border="1"
|-
!ICON NAME
!TEMPLATE TEXT
!ICON
|-
|Twitter ||twi ||{{social/icons|option=twi }}
|-
|Youtube ||you ||{{social/icons|option=you }}
|-
|Instagram ||ins ||{{social/icons|option=ins }}
|-
|Facebook ||fac ||{{social/icons|option=fac }}
|}
[[Category:Templates]]
6effa4ac50581c969525ef75f19e50b94ebcacff
2264
2260
2022-04-25T23:57:02Z
Jaswacker
30585766
wikitext
text/x-wiki
<pre>{{soc|twi|cLink=https://twitter.com/jaswacker}}
</pre>
{{soc|twi|cLink=https://twitter.com/jaswacker}}
==Social icon names==
Social icon names used by this template are lowercase. Any mis-typed text not recognized as the template will be rendered as text. (You will notice, it's hard to miss.)
{| class="prettytable sortable" border="1"
|-
!ICON NAME
!TEMPLATE TEXT
!ICON
|-
|Twitter ||twi ||{{social/icons|option=twi }}
|-
|Youtube ||you ||{{social/icons|option=you }}
|-
|Instagram ||ins ||{{social/icons|option=ins }}
|-
|Facebook ||fac ||{{social/icons|option=fac }}
|}
[[Category:Templates]]
6304c4e6507a6fa5ce5a650279fe6e89aecd4350
2266
2264
2022-04-25T23:58:47Z
Jaswacker
30585766
wikitext
text/x-wiki
<pre>{{soc|twi|cLink=https://twitter.com/jaswacker}}
</pre>
{{soc|twi|cLink=https://twitter.com/jaswacker}}
<pre>{{soc
| ''three letter icon code''
|cLink= ''account link''
|cSize= ''override the icon size, default is 20px''
}}</pre>
==Social icon names==
Social icon names used by this template are lowercase. Any mis-typed text not recognized as the template will be rendered as text. (You will notice, it's hard to miss.)
{| class="prettytable sortable" border="1"
|-
!ICON NAME
!TEMPLATE TEXT
!ICON
|-
|Twitter ||twi ||{{social/icons|option=twi }}
|-
|Youtube ||you ||{{social/icons|option=you }}
|-
|Instagram ||ins ||{{social/icons|option=ins }}
|-
|Facebook ||fac ||{{social/icons|option=fac }}
|}
[[Category:Templates]]
d985ff66bb8eac26a25c29893e07e49280360eba
2269
2266
2022-04-26T00:07:30Z
Jaswacker
30585766
wikitext
text/x-wiki
<pre>{{social|twi|https://twitter.com/jaswacker}}
</pre>
{{social|twi|https://twitter.com/jaswacker}}
<pre>{{social
| ''three letter icon code''
| ''account link''
}}</pre>
==Social icon names==
Social icon names used by this template are lowercase. Any mis-typed text not recognized as the template will be rendered as text. (You will notice, it's hard to miss.)
{| class="prettytable sortable" border="1"
|-
!ICON NAME
!TEMPLATE TEXT
!ICON
|-
|Twitter ||twi ||[[File:Twi.png|30px]]
|-
|Youtube ||you ||[[File:You.png|30px]]
|-
|Instagram ||ins ||[[File:Ins.png|30px]]
|-
|Facebook ||fac ||[[File:Fac.png|30px]]
|}
[[Category:Templates]]
0c8f3138649a9f3b05bd98f63af669351c49e81a
Template:Social/icons recurs
10
549
2263
2022-04-25T23:55:47Z
Jaswacker
30585766
Jaswacker moved page [[Template:Social/icons recurs]] to [[Template:Soc]]
wikitext
text/x-wiki
#REDIRECT [[Template:Soc]]
9e18e77dc3b8b8da45dfb21d881e4de3b8056ac5
File:Twi.png
6
550
2265
2022-04-25T23:57:42Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Template:Social/doc
10
548
2270
2269
2022-04-26T00:07:43Z
Jaswacker
30585766
wikitext
text/x-wiki
<pre>{{social|twi|https://twitter.com/jaswacker}}
</pre>
<pre>{{social
| ''three letter icon code''
| ''account link''
}}</pre>
==Social icon names==
Social icon names used by this template are lowercase. Any mis-typed text not recognized as the template will be rendered as text. (You will notice, it's hard to miss.)
{| class="prettytable sortable" border="1"
|-
!ICON NAME
!TEMPLATE TEXT
!ICON
|-
|Twitter ||twi ||[[File:Twi.png|30px]]
|-
|Youtube ||you ||[[File:You.png|30px]]
|-
|Instagram ||ins ||[[File:Ins.png|30px]]
|-
|Facebook ||fac ||[[File:Fac.png|30px]]
|}
[[Category:Templates]]
613950705f56068f0b05c0eb47e92634f586d9ff
2271
2270
2022-04-26T00:08:08Z
Jaswacker
30585766
wikitext
text/x-wiki
<pre>{{social
| ''three letter icon code''
| ''account link''
}}</pre>
==Social icon names==
Social icon names used by this template are lowercase. Any mis-typed text not recognized as the template will be rendered as text. (You will notice, it's hard to miss.)
{| class="prettytable sortable" border="1"
|-
!ICON NAME
!TEMPLATE TEXT
!ICON
|-
|Twitter ||twi ||[[File:Twi.png|30px]]
|-
|Youtube ||you ||[[File:You.png|30px]]
|-
|Instagram ||ins ||[[File:Ins.png|30px]]
|-
|Facebook ||fac ||[[File:Fac.png|30px]]
|}
[[Category:Templates]]
7755801590b0b1fa9fe88a88e414be106dfd4de2
2275
2271
2022-04-26T00:11:15Z
Jaswacker
30585766
wikitext
text/x-wiki
<pre>{{social
| ''three letter icon code''
| ''account link''
}}</pre>
==Social icon names==
Social icon names used by this template are lowercase. Any mis-typed text not recognized as the template will be rendered as text. (You will notice, it's hard to miss.)
{| class="prettytable sortable" border="1"
|-
!ICON NAME
!TEMPLATE TEXT
!ICON
|-
|Twitter ||twi ||[[File:Twi.png|20px]]
|-
|Youtube ||you ||[[File:You.png|20px]]
|-
|Instagram ||ins ||[[File:Ins.png|20px]]
|-
|Facebook ||fac ||[[File:Fac.png|20px]]
|}
[[Category:Templates]]
4b284e4e536ac49ed29b39a0fe148d711134e8c1
2298
2275
2022-04-26T00:34:00Z
Jaswacker
30585766
wikitext
text/x-wiki
This template uses two templates together.
<pre>{{soc|
{{social
| ''three letter icon code''
| ''account link''
}}}}</pre>
The '''soc''' template makes the links into a gallery. The '''social''' template adds the link/icon itself.
==Social icon names==
Social icon names used by this template are lowercase. Any mis-typed text not recognized as the template will be rendered as text. (You will notice, it's hard to miss.)
{| class="prettytable sortable" border="1"
|-
!ICON NAME
!TEMPLATE TEXT
!ICON
|-
|Twitter ||twi ||[[File:Twi.png|20px]]
|-
|Youtube ||you ||[[File:You.png|20px]]
|-
|Instagram ||ins ||[[File:Ins.png|20px]]
|-
|Facebook ||fac ||[[File:Fac.png|20px]]
|}
[[Category:Templates]]
89ad8a291c006cca36bcb86e1eb1f46c5e79d955
2299
2298
2022-04-26T00:34:27Z
Jaswacker
30585766
wikitext
text/x-wiki
This template uses two templates together.
<pre>{{soc|
{{social
| ''three letter icon code''
| ''account link''
{{social
| ''three letter icon code''
| ''account link''
}}}}</pre>
The '''soc''' template makes the links into a gallery. The '''social''' template adds the link/icon itself. There can be a total of '''8''' social icons listed in soc.
==Social icon names==
Social icon names used by this template are lowercase. Any mis-typed text not recognized as the template will be rendered as text. (You will notice, it's hard to miss.)
{| class="prettytable sortable" border="1"
|-
!ICON NAME
!TEMPLATE TEXT
!ICON
|-
|Twitter ||twi ||[[File:Twi.png|20px]]
|-
|Youtube ||you ||[[File:You.png|20px]]
|-
|Instagram ||ins ||[[File:Ins.png|20px]]
|-
|Facebook ||fac ||[[File:Fac.png|20px]]
|}
[[Category:Templates]]
fb8fc32df83a5d0a893bc521a8627620c6a28277
2308
2299
2022-04-26T00:40:28Z
Jaswacker
30585766
wikitext
text/x-wiki
This template uses two templates together.
<pre>{{soc|
{{social
| ''three letter icon code''
| ''account link''}}|
{{social
| ''three letter icon code''
| ''account link''}}
}}</pre>
The '''soc''' template makes the links into a gallery. The '''social''' template adds the link/icon itself. There can be a total of '''8''' social icons listed in soc.
==Social icon names==
Social icon names used by this template are lowercase. Any mis-typed text not recognized as the template will be rendered as text. (You will notice, it's hard to miss.)
{| class="prettytable sortable" border="1"
|-
!ICON NAME
!TEMPLATE TEXT
!ICON
|-
|Twitter ||twi ||[[File:Twi.png|20px]]
|-
|Youtube ||you ||[[File:You.png|20px]]
|-
|Instagram ||ins ||[[File:Ins.png|20px]]
|-
|Facebook ||fac ||[[File:Fac.png|20px]]
|}
[[Category:Templates]]
8e4fea4b0775bbc4d5762abe46f2b642319e55ec
Template:Social
10
545
2272
2268
2022-04-26T00:08:47Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>[[File:{{{1}}}.png|20px|link={{{2}}}]]</includeonly>
<noinclude>{{Social/doc}}
[[Category:Templates]]
</noinclude>
d268fdeff91effc0d678ecccae4c957500b4ec80
2276
2272
2022-04-26T00:11:26Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>[[File:{{{1}}}.png|x20px|link={{{2}}}]]</includeonly>
<noinclude>{{Social/doc}}
[[Category:Templates]]
</noinclude>
6f04c0259afca7fe109a8e5d7ae9e9034b06a6bb
2283
2276
2022-04-26T00:18:52Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>[[File:{{{1}}}.png|x20px|link={{{2}}}]] </includeonly>
<noinclude>{{Social/doc}}
[[Category:Templates]]
</noinclude>
f0ba450626a769ecc934d27490f0cb566a912338
2285
2283
2022-04-26T00:20:21Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>[[File:{{{1}}}.png|x20px|link={{{2}}}|frameless]]</includeonly>
<noinclude>{{Social/doc}}
[[Category:Templates]]
</noinclude>
7aa08a86513ce2e47fe60ca32837d36f4dad6c52
2286
2285
2022-04-26T00:20:37Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>[[File:{{{1}}}.png|20px|link={{{2}}}|frameless]]</includeonly>
<noinclude>{{Social/doc}}
[[Category:Templates]]
</noinclude>
40a44849073858ccdd1a189c625ad1354aea0012
2292
2286
2022-04-26T00:26:50Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>[[File:{{{1}}}.png|20px|link={{{2}}}]]</includeonly>
<noinclude>{{Social/doc}}
[[Category:Templates]]
</noinclude>
d268fdeff91effc0d678ecccae4c957500b4ec80
2294
2292
2022-04-26T00:30:38Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>File:{{{1}}}.png|link={{{2}}}</includeonly>
<noinclude>{{Social/doc}}
[[Category:Templates]]
</noinclude>
ec4440aeaaebede15e48729ccfeb4c8646a1f29e
2300
2294
2022-04-26T00:35:48Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>File:{{{1}}}.png|link=[{{{2}}}]</includeonly>
<noinclude>{{Social/doc}}
[[Category:Templates]]
</noinclude>
00370eb873bf0056d1957bbe07fc2feeab3d66c3
2321
2300
2022-04-26T00:46:56Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>File:{{{1}}}.png|link=[{{{2}}}]| </includeonly>
<noinclude>{{Social/doc}}
[[Category:Templates]]
</noinclude>
2f16c7bc10db961d910ee8d6cf0a90a408957c7a
File:Twi.png
6
550
2273
2265
2022-04-26T00:09:27Z
Jaswacker
30585766
Jaswacker moved page [[File:Twitter icon.png]] to [[File:Twi.png]]
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Twitter icon.png
6
551
2274
2022-04-26T00:09:27Z
Jaswacker
30585766
Jaswacker moved page [[File:Twitter icon.png]] to [[File:Twi.png]]
wikitext
text/x-wiki
#REDIRECT [[File:Twi.png]]
818b8b5e3b692b34f508eb0e5c037d49c2ed6aac
File:Fac.png
6
552
2277
2022-04-26T00:14:57Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Ins.png
6
553
2278
2022-04-26T00:15:08Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:You.png
6
554
2279
2022-04-26T00:15:19Z
Jaswacker
30585766
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Greenfield:Sandbox
0
532
2280
2246
2022-04-26T00:17:05Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|twitter.com/jaswacker}}{{social|you|twitter.com/jaswacker}}{{social|fac|twitter.com/jaswacker}}{{social|ins|twitter.com/jaswacker}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
4221cee57d85646dcc6d46db56b8b143640603a0
2281
2280
2022-04-26T00:17:22Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|twitter.com/jaswacker}} {{social|you|twitter.com/jaswacker}} {{social|fac|twitter.com/jaswacker}} {{social|ins|twitter.com/jaswacker}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
dba9dc8004fa34406a21dd8583ce27be0873e690
2282
2281
2022-04-26T00:18:20Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|twitter.com/jaswacker}} • {{social|you|twitter.com/jaswacker}} • {{social|fac|twitter.com/jaswacker}} • {{social|ins|twitter.com/jaswacker}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
bf02806a1a71bae565181f7206a76b0957f84a59
2284
2282
2022-04-26T00:19:05Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|twitter.com/jaswacker}}{{social|you|twitter.com/jaswacker}}{{social|fac|twitter.com/jaswacker}}{{social|ins|twitter.com/jaswacker}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
4221cee57d85646dcc6d46db56b8b143640603a0
2287
2284
2022-04-26T00:20:50Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|twitter.com/jaswacker}} {{social|you|twitter.com/jaswacker}} {{social|fac|twitter.com/jaswacker}} {{social|ins|twitter.com/jaswacker}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
dba9dc8004fa34406a21dd8583ce27be0873e690
2288
2287
2022-04-26T00:21:01Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|twitter.com/jaswacker}}{{social|you|twitter.com/jaswacker}}{{social|fac|twitter.com/jaswacker}}{{social|ins|twitter.com/jaswacker}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
4221cee57d85646dcc6d46db56b8b143640603a0
2289
2288
2022-04-26T00:21:39Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|twitter.com/jaswacker}}{{social|you|twitter.com/jaswacker}}{{social|fac|twitter.com/jaswacker}}{{social|ins|twitter.com/jaswacker}}
[[File:twi.png|20px|link= |frameless]] [[File:twi.png|20px|link= |frameless]]
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
706ebc656ebaa4283fa452cea991c5deb068ae4f
2290
2289
2022-04-26T00:22:12Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|twitter.com/jaswacker}}{{social|you|twitter.com/jaswacker}}{{social|fac|twitter.com/jaswacker}}{{social|ins|twitter.com/jaswacker}}
[[File:twi.png|20px|link=twitter.com/jaswacker|frameless]] [[File:you.png|20px|link=twitter.com/jaswacker|frameless]] [[File:fac.png|20px|link=twitter.com/jaswacker|frameless]] [[File:ins.png|20px|link=twitter.com/jaswacker|frameless]]
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
ed1c38d6f76351c80880928913e60eb4106016e6
2291
2290
2022-04-26T00:22:31Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|twitter.com/jaswacker}}{{social|you|twitter.com/jaswacker}}{{social|fac|twitter.com/jaswacker}}{{social|ins|twitter.com/jaswacker}}
[[File:twi.png|20px|link=twitter.com/jaswacker|frameless]] [[File:you.png|20px|link=twitter.com/jaswacker|frameless]] [[File:fac.png|20px|link=twitter.com/jaswacker|frameless]] [[File:ins.png|20px|link=twitter.com/jaswacker|frameless]]
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
6ab6ddae654b7ee2ce07b52bfe450db172ac07a6
2295
2291
2022-04-26T00:31:01Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{soc|{{social|twi|twitter.com/jaswacker}}{{social|you|twitter.com/jaswacker}}{{social|fac|twitter.com/jaswacker}}{{social|ins|twitter.com/jaswacker}}}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
bbb7fc454f830a416c64ea6c0b67c1b9db4630c4
2301
2295
2022-04-26T00:37:08Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{soc|
{{social|twi|twitter.com/jaswacker}}
{{social|you|twitter.com/jaswacker}}
{{social|fac|twitter.com/jaswacker}}
{{social|ins|twitter.com/jaswacker}}
}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
304925cc3e6374f4f22988f23439b8152e833f1c
2304
2301
2022-04-26T00:38:22Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|twitter.com/jaswacker}}
{{soc|
{{social|twi|twitter.com/jaswacker}}
{{social|you|twitter.com/jaswacker}}
{{social|fac|twitter.com/jaswacker}}
{{social|ins|twitter.com/jaswacker}}
}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
9e5774782723a5a1486be1e582c888ea344647bf
2305
2304
2022-04-26T00:38:37Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|twitter.com/jaswacker}}
{{soc|
[[{{social|twi|twitter.com/jaswacker}}]]
{{social|you|twitter.com/jaswacker}}
{{social|fac|twitter.com/jaswacker}}
{{social|ins|twitter.com/jaswacker}}
}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
f40a31468014dbf7bd3b4183a5b155a190e8b61c
2306
2305
2022-04-26T00:38:47Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|twitter.com/jaswacker}}
{{soc|
{{social|twi|twitter.com/jaswacker}}
{{social|you|twitter.com/jaswacker}}
{{social|fac|twitter.com/jaswacker}}
{{social|ins|twitter.com/jaswacker}}
}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
9e5774782723a5a1486be1e582c888ea344647bf
2307
2306
2022-04-26T00:39:15Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|twitter.com/jaswacker}}
{{soc|
{{social|twi|twitter.com/jaswacker}}|
{{social|you|twitter.com/jaswacker}}|
{{social|fac|twitter.com/jaswacker}}|
{{social|ins|twitter.com/jaswacker}}
}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
7e6e33f98e490526852aeea34765f4af720bc39f
2309
2307
2022-04-26T00:40:49Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|twitter.com/jaswacker}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
0365cdbb8e55d27ad5c20e9f7e5f3441db9a2cde
2310
2309
2022-04-26T00:41:20Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{soc|{{social|twi|twitter.com/jaswacker}}}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
abdc8b4fcc037106dee65bf6552a96f1f1250928
2312
2310
2022-04-26T00:41:43Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{soc|{{social|twi|twitter.com/jaswacker}}|{{social|twi|twitter.com/jaswacker}}}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
bd0bf9d87ac09d8b886b990654f7f24a04ff9412
2314
2312
2022-04-26T00:43:14Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|twitter.com/jaswacker}}
<center><gallery widths="20px" heights="20px">
{{{1}}}
{{{2}}}
{{{3}}}
{{{4}}}
{{{5}}}
{{{6}}}
{{{7}}}
{{{8}}}
</gallery></center>
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
278308ac7e2888ab208b010fbad28260b11f9558
2315
2314
2022-04-26T00:43:34Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
<center><gallery widths="20px" heights="20px">
File:twi.png|link=[twitter.com/jaswacker]
File:twi.png|link=[twitter.com/jaswacker]
File:twi.png|link=[twitter.com/jaswacker]
</gallery></center>
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
9b8fee17e3f5fe0fc699acff0d0da25d1aa617ca
2316
2315
2022-04-26T00:43:53Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
<center><gallery widths="20px" heights="20px">
File:twi.png|link=[twitter.com/jaswacker]<br>
File:twi.png|link=[twitter.com/jaswacker]<br>
File:twi.png|link=[twitter.com/jaswacker]
</gallery></center>
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
be7f63133418e7d32ddbc1a3ed2c73288ad33cb6
2318
2316
2022-04-26T00:44:30Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
<center><gallery widths="20px" heights="20px" mode="packed">
File:twi.png|link=[twitter.com/jaswacker]<br>
File:twi.png|link=[twitter.com/jaswacker]<br>
File:twi.png|link=[twitter.com/jaswacker]
</gallery></center>
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
65fe1af72ecf30af2882ea024eced7f84273ff35
2319
2318
2022-04-26T00:45:19Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
<center><gallery widths="20px" heights="20px" mode="packed">
File:twi.png|link=[twitter.com/jaswacker]<br>
File:twi.png|link=[twitter.com/jaswacker]<br>
File:twi.png|link=[twitter.com/jaswacker]
</gallery></center>
{{soc|{{social|twi|google.com}}|{{social|twi|google.com}}}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
7d8a2d815657b87254779d4ccda0b701f21ada34
2320
2319
2022-04-26T00:46:26Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
<center><gallery widths="20px" heights="20px" mode="packed">
File:twi.png|link=[twitter.com/jaswacker]| <br>
File:twi.png|link=[twitter.com/jaswacker]| <br>
File:twi.png|link=[twitter.com/jaswacker]|
</gallery></center>
{{soc|{{social|twi|google.com}}|{{social|twi|google.com}}}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
2714299bb4265e3f8306341dfb9a699c2c28786f
2323
2320
2022-04-26T00:47:37Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
[[{{social|twi|google.com}}]]
<center><gallery widths="20px" heights="20px" mode="packed">
File:twi.png|link=[twitter.com/jaswacker]| <br>
File:twi.png|link=[twitter.com/jaswacker]| <br>
File:twi.png|link=[twitter.com/jaswacker]|
</gallery></center>
{{soc|{{social|twi|google.com}}|{{social|twi|google.com}}}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
ffc9c7e232c5ebf60fd6c8401dac932e691b1396
2324
2323
2022-04-26T00:47:50Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
<center><gallery widths="20px" heights="20px" mode="packed">
File:twi.png|link=[twitter.com/jaswacker]| <br>
File:twi.png|link=[twitter.com/jaswacker]| <br>
File:twi.png|link=[twitter.com/jaswacker]|
</gallery></center>
{{soc|{{social|twi|google.com}}|{{social|twi|google.com}}}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
2714299bb4265e3f8306341dfb9a699c2c28786f
2325
2324
2022-04-26T00:48:44Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
<center><gallery widths="20px" heights="20px" mode="packed">
File:twi.png|link=twitter.com/jaswacker| <br>
File:twi.png|link=[twitter.com/jaswacker]| <br>
File:twi.png|link=[twitter.com/jaswacker]|
</gallery></center>
{{soc|{{social|twi|google.com}}|{{social|twi|google.com}}}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
1644ad50a59056e98601397ebf5e46c73e7d6c05
2326
2325
2022-04-26T00:49:01Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
<center><gallery widths="20px" heights="20px" mode="packed">
File:twi.png|link=[twitter.com/jaswacker twitter.com/jaswacker]| <br>
File:twi.png|link=[twitter.com/jaswacker]| <br>
File:twi.png|link=[twitter.com/jaswacker]|
</gallery></center>
{{soc|{{social|twi|google.com}}|{{social|twi|google.com}}}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
033621d17fc22f6fba75ea76d178fde93591cf02
2327
2326
2022-04-26T00:49:21Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
<center><gallery widths="20px" heights="20px" mode="packed">
File:twi.png|link=[http://twitter.com/jaswacker Twitter]| <br>
File:twi.png|link=[twitter.com/jaswacker]| <br>
File:twi.png|link=[twitter.com/jaswacker]|
</gallery></center>
{{soc|{{social|twi|google.com}}|{{social|twi|google.com}}}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
9e42cfb31b4c5db27c504d6da2b07aec7515773b
Greenfield:Schema
0
544
2302
2252
2022-04-26T00:37:25Z
Jaswacker
30585766
wikitext
text/x-wiki
to do list.<br>
for testing specific page formatting, without wanting to undo the stuff on the page already, make a /schema subpage
{{-}}
{{soc|
{{social|twi|twitter.com/jaswacker}}
{{social|you|twitter.com/jaswacker}}
{{social|fac|twitter.com/jaswacker}}
{{social|ins|twitter.com/jaswacker}}
}}
{{-}}
make an infobox like charbox, but for irl people/cast/crew
{{irlbox}}
{{charbox}}
born<br>
died<br>
aliases<br>
occupation<br>
years active<br>
spouse(s)<br>
children<br>
---------------
social media<br>
website
efc09e06ef3b7b053697c8b08c216f8eaf332192
Greenfield:Sandbox
0
532
2328
2327
2022-04-26T00:50:55Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
[[Image:twi.png|20px|link=twitter.com]]
<center><gallery widths="20px" heights="20px" mode="packed">
File:twi.png|link=[http://twitter.com/jaswacker Twitter]| <br>
File:twi.png|link=[twitter.com/jaswacker]| <br>
File:twi.png|link=[twitter.com/jaswacker]|
</gallery></center>
{{soc|{{social|twi|google.com}}|{{social|twi|google.com}}}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
20e1e1989ba28f16078aa93511b2034fdf6eb844
2329
2328
2022-04-26T00:51:07Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
[[Image:twi.png|20px|link=[twitter.com]]]
<center><gallery widths="20px" heights="20px" mode="packed">
File:twi.png|link=[http://twitter.com/jaswacker Twitter]| <br>
File:twi.png|link=[twitter.com/jaswacker]| <br>
File:twi.png|link=[twitter.com/jaswacker]|
</gallery></center>
{{soc|{{social|twi|google.com}}|{{social|twi|google.com}}}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
d0ea60ba08ed3520ad8e0cffd50fa0e095b54371
2330
2329
2022-04-26T00:51:26Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
[[Image:twi.png|20px|link=[twitter.com]|Twitter]]
<center><gallery widths="20px" heights="20px" mode="packed">
File:twi.png|link=[http://twitter.com/jaswacker Twitter]| <br>
File:twi.png|link=[twitter.com/jaswacker]| <br>
File:twi.png|link=[twitter.com/jaswacker]|
</gallery></center>
{{soc|{{social|twi|google.com}}|{{social|twi|google.com}}}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
a190449315648341a27ed53bb58c5de0d3a4c12b
2331
2330
2022-04-26T00:51:49Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
[[Image:twi.png|20px|link=https://twitter.com|Twitter]]
<center><gallery widths="20px" heights="20px" mode="packed">
File:twi.png|link=[http://twitter.com/jaswacker Twitter]| <br>
File:twi.png|link=[twitter.com/jaswacker]| <br>
File:twi.png|link=[twitter.com/jaswacker]|
</gallery></center>
{{soc|{{social|twi|google.com}}|{{social|twi|google.com}}}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
c451c7f41f10e5f8c4b44c779fff683cd01bec1f
2332
2331
2022-04-26T00:52:44Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
[[Image:twi.png|20px|link=https://twitter.com|Twitter]] [[Image:twi.png|20px|link=https://twitter.com|Twitter]] [[Image:twi.png|20px|link=https://twitter.com|Twitter]]
<center><gallery widths="20px" heights="20px" mode="packed">
File:twi.png|link=[http://twitter.com/jaswacker Twitter]| <br>
File:twi.png|link=[twitter.com/jaswacker]| <br>
File:twi.png|link=[twitter.com/jaswacker]|
</gallery></center>
{{soc|{{social|twi|google.com}}|{{social|twi|google.com}}}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
5dfe6a4168763c406fda164d87d37729660ca4fc
2333
2332
2022-04-26T00:52:58Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
[[Image:twi.png|20px|link=https://twitter.com|Twitter]] [[Image:you.png|20px|link=https://twitter.com|Twitter]] [[Image:fac.png|20px|link=https://twitter.com|Twitter]]
<center><gallery widths="20px" heights="20px" mode="packed">
File:twi.png|link=[http://twitter.com/jaswacker Twitter]| <br>
File:twi.png|link=[twitter.com/jaswacker]| <br>
File:twi.png|link=[twitter.com/jaswacker]|
</gallery></center>
{{soc|{{social|twi|google.com}}|{{social|twi|google.com}}}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
73c886bb94789c37a0a8724cca41f71b28c2e4eb
2336
2333
2022-04-26T00:54:52Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|https://google.com}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
6f6567f2065e610f4b3a89b81f11c371b704be52
2337
2336
2022-04-26T00:55:13Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|https://google.com}}{{social|ins|https://google.com}}
{{social|twi|https://google.com}} {{social|ins|https://google.com}}
{{social|twi|https://google.com}} {{social|ins|https://google.com}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
2740f7c5f649a81d8bd158f9c7665042f66fc940
2338
2337
2022-04-26T00:55:46Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|https://google.com}}{{social|ins|https://google.com}}
{{social|twi|https://google.com}} {{social|ins|https://google.com}}
{{social|twi|https://google.com}} {{social|ins|https://google.com}}
~
[[Image:{{{1}}}.png|20px|link={{{2}}}| ]][[Image:{{{1}}}.png|20px|link={{{2}}}| ]]
[[Image:{{{1}}}.png|20px|link={{{2}}}| ]] [[Image:{{{1}}}.png|20px|link={{{2}}}| ]]
[[Image:{{{1}}}.png|20px|link={{{2}}}| ]] [[Image:{{{1}}}.png|20px|link={{{2}}}| ]]
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
d9ccecfb5ac5be8d7a213a28d0dc25d7eda4b658
2339
2338
2022-04-26T00:56:27Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|https://google.com}}{{social|ins|https://google.com}}
{{social|twi|https://google.com}} {{social|ins|https://google.com}}
{{social|twi|https://google.com}} {{social|ins|https://google.com}}
~
[[Image:twi.png|20px|link=https://google.com| ]][[Image:ins.png|20px|link=https://google.com| ]]
[[Image:twi.png|20px|link=https://google.com| ]] [[Image:ins.png|20px|link=https://google.com| ]]
[[Image:twi.png|20px|link=https://google.com| ]] [[Image:ins.png|20px|link=https://google.com| ]]
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
fc733d4b05ec5ef9aa2abe457ef936018b753644
2340
2339
2022-04-26T00:57:39Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|https://google.com}}{{social|ins|https://google.com}}
{{social|twi|https://google.com}} {{social|ins|https://google.com}}
{{social|twi|https://google.com}} {{social|ins|https://google.com}}
~
[[Image:twi.png|20px|link=https://google.com| ]][[Image:ins.png|20px|link=https://google.com| ]]
[[Image:twi.png|20px|link=https://google.com| ]]</includeonly> [[Image:ins.png|20px|link=https://google.com| ]]
[[Image:twi.png|20px|link=https://google.com| ]] [[Image:ins.png|20px|link=https://google.com| ]]
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
d341de2a44959ac1ea1509771cc8765be2b7a1bf
2341
2340
2022-04-26T00:57:52Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|https://google.com}}{{social|ins|https://google.com}}
{{social|twi|https://google.com}} {{social|ins|https://google.com}}
{{social|twi|https://google.com}} {{social|ins|https://google.com}}
~
[[Image:twi.png|20px|link=https://google.com| ]][[Image:ins.png|20px|link=https://google.com| ]]
<includeonly>[[Image:twi.png|20px|link=https://google.com| ]]</includeonly> [[Image:ins.png|20px|link=https://google.com| ]]
[[Image:twi.png|20px|link=https://google.com| ]] [[Image:ins.png|20px|link=https://google.com| ]]
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
94f14ff3c1da78178d3a7cf69a3d85b32c640726
2342
2341
2022-04-26T00:58:34Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|https://google.com}}{{social|ins|https://google.com}}
{{social|twi|https://google.com}} {{social|ins|https://google.com}}
{{social|twi|https://google.com}} {{social|ins|https://google.com}}
~
[[Image:twi.png|20px|link=https://google.com| ]][[Image:ins.png|20px|link=https://google.com| ]]
<includeonly>[[Image:twi.png|20px|link=https://google.com| ]]</includeonly><noinclude> <includeonly>[[Image:ins.png|20px|link=https://google.com| ]]</includeonly><noinclude>
[[Image:twi.png|20px|link=https://google.com| ]] [[Image:ins.png|20px|link=https://google.com| ]]
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
f45dc2fc86ef40f46471965d0aba5c9bd2354291
2343
2342
2022-04-26T00:58:44Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|https://google.com}}{{social|ins|https://google.com}}
{{social|twi|https://google.com}} {{social|ins|https://google.com}}
{{social|twi|https://google.com}} {{social|ins|https://google.com}}
~
[[Image:twi.png|20px|link=https://google.com| ]][[Image:ins.png|20px|link=https://google.com| ]]
<includeonly>[[Image:twi.png|20px|link=https://google.com| ]]</includeonly> <includeonly>[[Image:ins.png|20px|link=https://google.com| ]]</includeonly>
[[Image:twi.png|20px|link=https://google.com| ]] [[Image:ins.png|20px|link=https://google.com| ]]
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
a138c6e1c0a0ff3b3f5d37ea9eed7e169b467b61
2344
2343
2022-04-26T00:59:07Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|https://google.com}}{{social|ins|https://google.com}}
{{social|twi|https://google.com}} {{social|ins|https://google.com}}
{{social|twi|https://google.com}} {{social|ins|https://google.com}}
~
[[Image:twi.png|20px|link=https://google.com| ]][[Image:ins.png|20px|link=https://google.com| ]]
<includeonly>[[Image:twi.png|20px|link=https://google.com| ]] [[Image:ins.png|20px|link=https://google.com| ]]</includeonly>
[[Image:twi.png|20px|link=https://google.com| ]] [[Image:ins.png|20px|link=https://google.com| ]]
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
c959b59f1a16492f4180a8fcbd9915574ae9501e
2346
2344
2022-04-26T00:59:41Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|https://google.com}}{{social|ins|https://google.com}}
{{social|twi|https://google.com}} {{social|ins|https://google.com}}
{{social|twi|https://google.com}} {{social|ins|https://google.com}}
~
[[Image:twi.png|20px|link=https://google.com| ]][[Image:ins.png|20px|link=https://google.com| ]]
[[Image:twi.png|20px|link=https://google.com| ]] [[Image:ins.png|20px|link=https://google.com| ]]
[[Image:twi.png|20px|link=https://google.com| ]] [[Image:ins.png|20px|link=https://google.com| ]]
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
fc733d4b05ec5ef9aa2abe457ef936018b753644
2349
2346
2022-04-26T01:02:33Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|https://google.com}}{{social|ins|https://google.com}}
{{social|twi|https://google.com}} {{social|ins|https://google.com}}
{{social|twi|https://google.com}} {{social|ins|https://google.com}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
5b3bfa5e48b796064ed3ae904d602bb225740d96
2353
2349
2022-04-26T01:04:33Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|https://google.com}}{{social|ins|https://google.com}}
{{social|twi|https://google.com}} {{bm}}{{social|ins|https://google.com}}
{{social|twi|https://google.com}} {{bm}} {{social|ins|https://google.com}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
a568c4f25af4c2875adb3572dfd117ff4d41a93b
2354
2353
2022-04-26T01:04:52Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|https://google.com}}{{bm}}{{social|ins|https://google.com}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
8ee00ebfbcff4cdfdae7ec53719c15872989d636
2359
2354
2022-04-26T01:07:34Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|https://google.com}}{{mn}}{{social|ins|https://google.com}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
5cb808c2fb50add55a89e731e78a0979aab94e6d
2360
2359
2022-04-26T01:07:42Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|https://google.com}}{{bm}}{{social|ins|https://google.com}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
8ee00ebfbcff4cdfdae7ec53719c15872989d636
2361
2360
2022-04-26T01:08:11Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|https://google.com}}<p> </p>{{social|ins|https://google.com}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
4bc2a2bb908f72f3691c5e264f648cd622011393
2362
2361
2022-04-26T01:08:28Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|https://google.com}}<div><p> </p></div>{{social|ins|https://google.com}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
1302037c4426c5e8bbdb4443b7e06725226808d8
2364
2362
2022-04-26T01:09:41Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|https://google.com}}{{bm}}{{social|ins|https://google.com}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
8ee00ebfbcff4cdfdae7ec53719c15872989d636
2365
2364
2022-04-26T01:09:57Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|https://google.com}} {{social|ins|https://google.com}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
627e9a15979217e68862c5f798489ded10d6a38c
2366
2365
2022-04-26T01:10:03Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|https://google.com}} {{social|ins|https://google.com}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
eac1e42752ef84d021e5f853b9eb18042e795c3b
2367
2366
2022-04-26T01:10:10Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|https://google.com}} {{social|ins|https://google.com}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
17c28b50e611021035eaa64d55e2447c624f5449
2369
2367
2022-04-26T01:10:50Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|https://google.com}}{{bm}}{{social|ins|https://google.com}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
0413fcea577bfca2f4f8af269f222f76915558d8
2372
2369
2022-04-26T01:11:58Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|https://google.com}}{{social|ins|https://google.com}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
32ab2fd754d31b704ee8f3e5f77cd2924b027f80
2373
2372
2022-04-26T01:12:06Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|https://google.com}}{{bm}}{{social|ins|https://google.com}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
0413fcea577bfca2f4f8af269f222f76915558d8
2374
2373
2022-04-26T01:12:16Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|https://google.com}}{{bm}}{{bm}}{{bm}}{{bm}}{{social|ins|https://google.com}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
3ba12ad3707f262a9a76491fe0c39cc630318a69
2376
2374
2022-04-26T01:13:02Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|https://google.com}}{{bm}}{{social|ins|https://google.com}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
0413fcea577bfca2f4f8af269f222f76915558d8
2377
2376
2022-04-26T01:13:12Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|https://google.com}}{{bm}}{{bm}}{{social|ins|https://google.com}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
ff051d4fb39a68edc3ac78a2a5fdf699d6c8e1e1
Template:Social
10
545
2334
2321
2022-04-26T00:54:13Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>[[Image:{{{1}}}.png|20px|link={{{2}}}| ]]</includeonly>
<noinclude>{{Social/doc}}
[[Category:Templates]]
</noinclude>
502547b9b0d1165d9343941597ae11f56ec66e8d
2345
2334
2022-04-26T00:59:29Z
Jaswacker
30585766
wikitext
text/x-wiki
[[Image:{{{1}}}.png|20px|link={{{2}}}| ]]
<noinclude>{{Social/doc}}
[[Category:Templates]]</noinclude>
4ac715ee93ccf10ce2899ee8cef7a80f4008b388
2347
2345
2022-04-26T01:00:17Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>[[Image:{{{1}}}.png|20px|link={{{2}}}| ]]</includeonly><noinclude>{{Social/doc}}[[Category:Templates]]</noinclude>
61f92061fc7f3268084d31ddcca44a0ee70663d5
2348
2347
2022-04-26T01:02:09Z
Jaswacker
30585766
wikitext
text/x-wiki
[[Image:{{{1}}}.png|20px|link={{{2}}}| ]]<noinclude>
{{Social/doc}}
[[Category:Templates]]</noinclude>
0589dee18cd93d320ee4b754e386d7f7c3e39b16
Template:Social/doc
10
548
2335
2308
2022-04-26T00:54:36Z
Jaswacker
30585766
wikitext
text/x-wiki
<pre>{{social
| ''three letter icon code''
| ''account link''
}}</pre>
==Social icon names==
Social icon names used by this template are lowercase. Any mis-typed text not recognized as the template will be rendered as text. (You will notice, it's hard to miss.)
{| class="prettytable sortable" border="1"
|-
!ICON NAME
!TEMPLATE TEXT
!ICON
|-
|Twitter ||twi ||[[File:Twi.png|20px]]
|-
|Youtube ||you ||[[File:You.png|20px]]
|-
|Instagram ||ins ||[[File:Ins.png|20px]]
|-
|Facebook ||fac ||[[File:Fac.png|20px]]
|}
[[Category:Templates]]
4b284e4e536ac49ed29b39a0fe148d711134e8c1
Template:Mn
10
539
2350
2214
2022-04-26T01:03:58Z
Jaswacker
30585766
wikitext
text/x-wiki
<div style="margin-top:16px;">
c0fe44d7486e13fbe74a8bcc2dfd1fb7de927497
2352
2350
2022-04-26T01:04:12Z
Jaswacker
30585766
wikitext
text/x-wiki
<div style="margin-top:-1.2em;">
53865c90d4cebccb693ec183156c96a11f23b2ec
Template:Bm
10
556
2351
2022-04-26T01:04:06Z
Jaswacker
30585766
Created page with "<div style="margin-right:16px;">"
wikitext
text/x-wiki
<div style="margin-right:16px;">
2d24022eea9e2fe131e5b13cf7c84ccca4b34089
2355
2351
2022-04-26T01:06:23Z
Jaswacker
30585766
wikitext
text/x-wiki
<div style="margin-right:16px;" <p> </p>>
a32e67bccfe19bf9490b0c9b1175aaa9ccfea3bb
2356
2355
2022-04-26T01:06:33Z
Jaswacker
30585766
wikitext
text/x-wiki
<div style="margin-right:16px;" <p> </p></div>
1e136cff68da77b99bce432af463ca38cf97345b
2357
2356
2022-04-26T01:07:02Z
Jaswacker
30585766
wikitext
text/x-wiki
<div style="margin-right:16px;"><p> </p></div>
aea7f80e51d3b85a1373a717031c55e5063d9e9f
2358
2357
2022-04-26T01:07:22Z
Jaswacker
30585766
wikitext
text/x-wiki
<div id="content"><p> </p></div>
c92959ed8a2ffaed966b0a43ab9d51c629fa077a
2363
2358
2022-04-26T01:09:32Z
Jaswacker
30585766
Replaced content with ""
wikitext
text/x-wiki
de64407ac7a39771bf2ee812e93423dfb9ec2061
2368
2363
2022-04-26T01:10:38Z
Jaswacker
30585766
wikitext
text/x-wiki
<div><p> </p></div>
5ee27b14594ca0f8ee0814c38cda9307755fabab
2370
2368
2022-04-26T01:11:01Z
Jaswacker
30585766
wikitext
text/x-wiki
<p> </p>
b667fc9c3ba71949ab52df5ea9f7b77f8f11c3e9
2371
2370
2022-04-26T01:11:35Z
Jaswacker
30585766
wikitext
text/x-wiki
'' ''
9f40c3bcaac077a13229b24120fff8fe2af67039
2375
2371
2022-04-26T01:12:31Z
Jaswacker
30585766
wikitext
text/x-wiki
a33e5af519f6ab133fdfbdec13b159d9386e5a74
Greenfield:Sandbox
0
532
2378
2377
2022-04-26T01:13:19Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|https://google.com}}{{bm}} {{bm}}{{social|ins|https://google.com}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
ea2d1a1570f8e48557c20b72a73ba96f26d01bbe
2379
2378
2022-04-26T01:13:51Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|https://google.com}}{{bm}}{{bm}}{{social|ins|https://google.com}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
ff051d4fb39a68edc3ac78a2a5fdf699d6c8e1e1
2381
2379
2022-04-26T01:14:05Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|https://google.com}}ㅤㅤㅤㅤㅤㅤ{{social|ins|https://google.com}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
0108f17a006ff40c6cb5a788ee78f56d81ae870d
2382
2381
2022-04-26T01:14:16Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|non|ula|abd|ult|num|onv|bad|neg|zar|rbt|fsn|bio|arg|nem|ant|ont}}
{{buzz|Test|Toys|Merchandise|Story|width=200px}}
{{social|twi|https://google.com}}{{bm}}{{social|ins|https://google.com}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Test|Toys|Merchandise|Story|width=200px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{buzz4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
{{-}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb4|Test|Toys|Merchandise|Story|Placeholder|width=300px}}
{{charbox}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
0413fcea577bfca2f4f8af269f222f76915558d8
Template:Bm
10
556
2380
2375
2022-04-26T01:13:53Z
Jaswacker
30585766
wikitext
text/x-wiki
ㅤㅤㅤ
3dd37ffa575526624bfb7953db5e797d74df78ca
2383
2380
2022-04-26T01:14:25Z
Jaswacker
30585766
wikitext
text/x-wiki
ㅤㅤ
4e8a2a678702069a52d47e3ec4a5ff052ccf5b91
Template:Yt
10
557
2384
2022-04-29T21:29:30Z
Jaswacker
30585766
Created page with "<includeonly><div class="thumb tright" style="width:310px;"> <youtube width="310" height="175">{{{1}}}</youtube> </div></includeonly> <noinclude> Use this template to insert a..."
wikitext
text/x-wiki
<includeonly><div class="thumb tright" style="width:310px;">
<youtube width="310" height="175">{{{1}}}</youtube>
</div></includeonly>
<noinclude>
Use this template to insert an embed YouTube video, aligned to the right side of the article.
What's entered into the template is the video's URL code. You can get this by taking everything '''after wash?v=''' and '''before &ab_channel=''' from the video's link.
:<nowiki>{{yt|dQw4w9WgXcQ}}</nowiki>
[[Category:Templates]]</noinclude>
b9f728e6763b5f6fcebcf765ce1b182ddc176435
2385
2384
2022-04-29T21:29:44Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div class="thumb tright" style="width:310px;">
<youtube width="310" height="175">{{{1}}}</youtube>
</div></includeonly>
<noinclude>
Use this template to insert an embed YouTube video, aligned to the right side of the article.
What's entered into the template is the video's URL code. You can get this by taking everything '''after wash?v=''' and '''before &ab_channel=''' from the video's link.
:<nowiki>{{yt
|dQw4w9WgXcQ
}}</nowiki>
[[Category:Templates]]</noinclude>
a56e5a2e036929a81d75657c1e38fb7e44efea48
2386
2385
2022-04-29T21:30:36Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly><div class="thumb tright" style="width:310px;">
<youtube width="310" height="175">{{{1}}}</youtube>
</div></includeonly>
<noinclude>
Use this template to insert an embed YouTube video, aligned to the right side of the article.
What's entered into the template is the video's URL code. You can get this by taking everything '''after wash?v=''' and '''before &ab_channel=''' from the video's link.
<pre>{{yt
|dQw4w9WgXcQ
}}</pre>
[[Category:Templates]]</noinclude>
4f1e98d01c7ba55ff5e8baafed23908dad35a4e8
2390
2386
2022-04-29T21:34:35Z
Jaswacker
30585766
wikitext
text/x-wiki
<div class="thumb tright" style="width:310px;">
<youtube width="310" height="175">{{{1}}}</youtube>
</div>
<noinclude>
Use this template to insert an embed YouTube video, aligned to the right side of the article.
What's entered into the template is the video's URL code. You can get this by taking everything '''after wash?v=''' and '''before &ab_channel=''' from the video's link.
<pre>{{yt
|dQw4w9WgXcQ
}}</pre>
[[Category:Templates]]</noinclude>
ff41bb229d720b9e09a12ab64b058b348b08bce9
2392
2390
2022-04-29T21:42:24Z
Jaswacker
30585766
wikitext
text/x-wiki
<div class="thumb tright" style="width:310px;">
<youtube width="310" height="175">{{{1|}}}</youtube>
</div>
<noinclude>
Use this template to insert an embedded YouTube video, aligned to the right side of the article.
What's entered into the template is the video's URL code. You can get this by taking everything '''after watch?v=''' and '''before &ab_channel=''' from the video's link.
<pre>{{yt|
dQw4w9WgXcQ
}}</pre>
[[Category:Templates]]</noinclude>
c9049ac94e87f99e45f51e4ad62790250524bbd3
2395
2392
2022-04-29T21:46:40Z
Jaswacker
30585766
wikitext
text/x-wiki
<div class="thumb tright" style="width:310px;">
<youtube width="310" height="175">ldDawUFYqrM</youtube>
</div>
<noinclude>
Use this template to insert an embedded YouTube video, aligned to the right side of the article.
What's entered into the template is the video's URL code. You can get this by taking everything '''after watch?v=''' and '''before &ab_channel=''' from the video's link.
<pre>{{yt|
dQw4w9WgXcQ
}}</pre>
[[Category:Templates]]</noinclude>
8cb7ab5459a76384c8466421b4836164d3b13f34
2397
2395
2022-04-29T21:47:31Z
Jaswacker
30585766
wikitext
text/x-wiki
<div class="thumb tright" style="width:310px;">
<youtube width="310" height="175">{{{1}}}</youtube>
</div>
<noinclude>
Use this template to insert an embedded YouTube video, aligned to the right side of the article.
What's entered into the template is the video's URL code. You can get this by taking everything '''after watch?v=''' and '''before &ab_channel=''' from the video's link.
<pre>{{yt|
dQw4w9WgXcQ
}}</pre>
[[Category:Templates]]</noinclude>
72a6bff1f0d4b21714b5fddb497823cd476849c5
Ben Tennyson (Prime)
0
93
2387
2227
2022-04-29T21:30:55Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Ben Tennyson (Prime)|Toys|Merchandise|width=200px}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
{{mn}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|Adipiscing elit duis tristique sollicitudin nibh sit amet.|John Doe}}
{{yt|ldDawUFYqrM}}
__TOC__
{{mn}}
{{-}}
== History ==
events of the shows, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2005) ===
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Prime Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Plumbers]]
[[Category:Introduced in the Original Series]]
[[Category:Bellwood Residents]]
[[Category:Earth Residents]]
</noinclude>
c0571dc28e9e293506d8acaccee5fa14b0107a8b
2388
2387
2022-04-29T21:32:04Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Ben Tennyson (Prime)|Toys|Merchandise|width=200px}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
{{mn}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|Adipiscing elit duis tristique sollicitudin nibh sit amet.|John Doe}}
{{yt|dQw4w9WgXcQ}}
__TOC__
{{mn}}
{{-}}
== History ==
events of the shows, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2005) ===
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Prime Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Plumbers]]
[[Category:Introduced in the Original Series]]
[[Category:Bellwood Residents]]
[[Category:Earth Residents]]
</noinclude>
6db79de2e68bf570dbe9f3185f0648f7ff6a3a16
2389
2388
2022-04-29T21:33:35Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Ben Tennyson (Prime)|Toys|Merchandise|width=200px}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
{{mn}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|Adipiscing elit duis tristique sollicitudin nibh sit amet.|John Doe}}
{{yt|ldDawUFYqrM}}
__TOC__
{{mn}}
{{-}}
== History ==
events of the shows, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2005) ===
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Prime Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Plumbers]]
[[Category:Introduced in the Original Series]]
[[Category:Bellwood Residents]]
[[Category:Earth Residents]]
</noinclude>
c0571dc28e9e293506d8acaccee5fa14b0107a8b
2391
2389
2022-04-29T21:35:16Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Ben Tennyson (Prime)|Toys|Merchandise|width=200px}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
{{mn}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|Adipiscing elit duis tristique sollicitudin nibh sit amet.|John Doe}}
{{yt|ldDawUFYqrM}}
{{yt}}
__TOC__
{{mn}}
{{-}}
== History ==
events of the shows, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2005) ===
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Prime Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Plumbers]]
[[Category:Introduced in the Original Series]]
[[Category:Bellwood Residents]]
[[Category:Earth Residents]]
</noinclude>
9501402c363454fcb79e0f640a3da7651f3aed4e
2393
2391
2022-04-29T21:42:27Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Ben Tennyson (Prime)|Toys|Merchandise|width=200px}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
{{mn}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|Adipiscing elit duis tristique sollicitudin nibh sit amet.|John Doe}}
{{yt|
dQw4w9WgXcQ
}}
__TOC__
{{mn}}
{{-}}
== History ==
events of the shows, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2005) ===
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Prime Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Plumbers]]
[[Category:Introduced in the Original Series]]
[[Category:Bellwood Residents]]
[[Category:Earth Residents]]
</noinclude>
5aa8688fb50e17d836ae98987cfd34d4eb3e9590
2394
2393
2022-04-29T21:44:42Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Ben Tennyson (Prime)|Toys|Merchandise|width=200px}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
{{mn}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|Adipiscing elit duis tristique sollicitudin nibh sit amet.|John Doe}}
{{yt|1=dQw4w9WgXcQ}}
__TOC__
{{mn}}
{{-}}
== History ==
events of the shows, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2005) ===
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Prime Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Plumbers]]
[[Category:Introduced in the Original Series]]
[[Category:Bellwood Residents]]
[[Category:Earth Residents]]
</noinclude>
7033de2db73067fe802bca19ab27b2903e416080
2396
2394
2022-04-29T21:46:50Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Ben Tennyson (Prime)|Toys|Merchandise|width=200px}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
{{mn}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|Adipiscing elit duis tristique sollicitudin nibh sit amet.|John Doe}}
{{yt|ldDawUFYqrM}}
__TOC__
{{mn}}
{{-}}
== History ==
events of the shows, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2005) ===
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Prime Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Plumbers]]
[[Category:Introduced in the Original Series]]
[[Category:Bellwood Residents]]
[[Category:Earth Residents]]
</noinclude>
c0571dc28e9e293506d8acaccee5fa14b0107a8b
2398
2396
2022-04-29T21:50:04Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Ben Tennyson (Prime)|Toys|Merchandise|width=200px}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
{{mn}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|Adipiscing elit duis tristique sollicitudin nibh sit amet.|John Doe}}
{{yt|ldDawUFYqrM}}
__TOC__
{{-}}
== History ==
events of the shows, chronological order. maybe break them up into sub sections
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2005) ===
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Prime Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Plumbers]]
[[Category:Introduced in the Original Series]]
[[Category:Bellwood Residents]]
[[Category:Earth Residents]]
</noinclude>
cd8722535f38eede46084eb46832f728b7b13666
2399
2398
2022-04-29T21:53:39Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Ben Tennyson (Prime)|Toys|Merchandise|width=200px}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
{{mn}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|Adipiscing elit duis tristique sollicitudin nibh sit amet.|John Doe}}
{{yt|ldDawUFYqrM}}
__TOC__
{{-}}
== History ==
{{notebook}}
events of the shows, chronological order. maybe break them up into sub sections {{storylink|Main Page|Source media title like this! <small>(Omniverse)</small>}}
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2005) ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Prime Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Plumbers]]
[[Category:Introduced in the Original Series]]
[[Category:Bellwood Residents]]
[[Category:Earth Residents]]
</noinclude>
6dd3f65e9965c2c66db39a74238f87e609b9f7f6
2400
2399
2022-04-29T21:54:29Z
Jaswacker
30585766
/* History */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Ben Tennyson (Prime)|Toys|Merchandise|width=200px}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
{{mn}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|Adipiscing elit duis tristique sollicitudin nibh sit amet.|John Doe}}
{{yt|ldDawUFYqrM}}
__TOC__
{{-}}
== History ==
{{notebook}}
events of the shows, chronological order. maybe break them up into sub sections {{storylink|Main Page|Source <small>''Ben 10: Omniverse''</small>}}
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2005) ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Prime Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Plumbers]]
[[Category:Introduced in the Original Series]]
[[Category:Bellwood Residents]]
[[Category:Earth Residents]]
</noinclude>
95f600ce26196e9f89f2220d86070ee793ffb4b0
2401
2400
2022-04-29T21:54:59Z
Jaswacker
30585766
/* History */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Ben Tennyson (Prime)|Toys|Merchandise|width=200px}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
{{mn}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|Adipiscing elit duis tristique sollicitudin nibh sit amet.|John Doe}}
{{yt|ldDawUFYqrM}}
__TOC__
{{-}}
== History ==
{{notebook}}
events of the shows, chronological order. maybe break them up into sub sections {{storylink|Main Page|The More Things Change: Part 1 <small>''(Omniverse)''</small>}}
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2005) ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Prime Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Plumbers]]
[[Category:Introduced in the Original Series]]
[[Category:Bellwood Residents]]
[[Category:Earth Residents]]
</noinclude>
5cddfb8312dc7a0944f43e57b8b4d0758d374413
2402
2401
2022-04-29T21:55:46Z
Jaswacker
30585766
/* History */
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Ben Tennyson (Prime)|Toys|Merchandise|width=200px}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
{{mn}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|Adipiscing elit duis tristique sollicitudin nibh sit amet.|John Doe}}
{{yt|ldDawUFYqrM}}
__TOC__
{{-}}
== History ==
{{notebook}}
events of the shows, chronological order. maybe break them up into sub sections {{storylink|Main Page|Universe vs. Tennyson}}
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2005) ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Prime Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Plumbers]]
[[Category:Introduced in the Original Series]]
[[Category:Bellwood Residents]]
[[Category:Earth Residents]]
</noinclude>
7321bed117cfd30f09d780ef29a35c9fe2d4f110
2406
2402
2022-04-29T22:04:30Z
Jaswacker
30585766
wikitext
text/x-wiki
{{trix|ogs|alf|ula|onv}}
{{disambigm|Ben Tennyson (Disambiguation)|Ben Tennyson (Reboot)}}
{{buzzb|Ben Tennyson (Prime)|Toys|Merchandise|width=200px}}
{{charbox
|image={{tabs|{{tab2|OV|c.png}}{{tab2|UAF|c.png}}{{tab2|OS|c.png}}}}
|fullname=Benjamin Kirby Tennyson
|alias={{Scroll|Ben 10<br>The Coming Storm<br>test<br>test|h=50px|w=200px}}
|species=[[Human]]
|homeworld=[[Bellwood]], [[Earth]]
|relationships={{Scroll|[[Gwen Tennyson (Prime)|Gwen Tennyson]] <small>(Cousin)</small><br>[[Max Tennyson (Prime)|Max Tennyson]] <small>(Grandfather)</small><br>test<br>test|h=50px|w=200px}}
|first=[[And Then There Were 10]]
|last=[[A New Dawn]]
}}
{{mn}}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<ref>http://omnipedia.shoutwiki.com/wiki/Main_Page</ref>
{{quote|Adipiscing elit duis tristique sollicitudin nibh sit amet.|John Doe}}
{{yt| ldDawUFYqrM }}
__TOC__
{{-}}
== History ==
{{notebook}}
events of the shows, chronological order. maybe break them up into sub sections {{storylink|Main Page|Universe vs. Tennyson}}
=== other media that are canon get their own sub sections like this ===
{{-}}
== Games ==
{{-}}
== Appearances ==
=== ''Ben 10'' (2005) ===
{{voiceactor|[[Dave Wittenburg]] (English)|[[Taketora]] (Japanese)}}
{{-}}
=== ''Ben 10: Alien Force'' ===
{{-}}
=== ''Ben 10: Ultimate Aliens'' ===
{{-}}
=== ''Ben 10: Omniverse'' ===
{{-}}
=== Books ===
{{-}}
=== Comics ===
{{-}}
== Commercial Appearances ==
{{-}}
== Powers and Abilities ==
{{-}}
=== Powers ===
{{-}}
=== Abilities ===
{{-}}
=== Weaknesses ===
{{-}}
=== Paraphernalia ===
{{-}}
== Toys ==
{{-}}
== Merchandise ==
{{-}}
== Notes ==
{{-}}
=== Foreign Names ===
{{-}}
{{Chargallery}}
{{-}}
==References==
{{reflist}}
<noinclude>
[[Category:Characters]]
[[Category:Heroes]]
[[Category:Humans]]
[[Category:Prime Dimension]]
[[Category:Omnitrix Wielders]]
[[Category:Tennyson Family]]
[[Category:Plumbers]]
[[Category:Introduced in the Original Series]]
[[Category:Bellwood Residents]]
[[Category:Earth Residents]]
</noinclude>
cf69a60e08f1d9fe72146b11e1a9753b79de1de3
Template:Notebook
10
109
2403
382
2022-04-29T21:56:52Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>{{note|Events from [[comics]] or [[books]] are in italics.}}</includeonly><noinclude>
This template may appear at the top of a character's history section to denote the inclusion of events and information from comics or books.
It looks like this:
{{notebook}}
It takes no parameters.
[[Category:Templates]]</noinclude>
03b5668bc29a8308643f7992f86d0193f7a0a39d
Template:Voiceactor
10
106
2404
453
2022-04-29T21:58:22Z
Jaswacker
30585766
wikitext
text/x-wiki
<includeonly>:''Voice actor:'' {{{1}}}{{#if: {{{2|}}}|, <span class="ocreditspan">{{{2}}}</span>}}</includeonly><noinclude>
'''<nowiki>{{voiceactor}}</nowiki>''' creates fly-out voice actor lists, hiding the non English/Japanese voice actors until the user clicks on the "More" link.
<nowiki>{{voiceactor </nowiki><span style="color:red;">|</span><nowiki> [[Scott McNeil]] (English), [[Masahiko Tanaka]] (Japanese) </nowiki><span style="color:red;">|</span><nowiki> [[Manny Manos]] (Welsh) }}</nowiki>
{{voiceactor|[[Scott McNeil]] (English), [[Masahiko Tanaka]] (Japanese)|[[Manny Manos]] (Welsh)}}
<nowiki>{{voiceactor </nowiki><span style="color:red;">|</span><nowiki> [[Scott McNeil]] (English) }}</nowiki>
{{voiceactor|[[Scott McNeil]] (English)}}
[[Category: Templates]]</noinclude>
e5831117899f36986b8dde9f37d57b34a44b4470
Template:Actor
10
558
2405
2022-04-29T22:03:03Z
Jaswacker
30585766
Created page with "<includeonly>:''Actor:'' {{{1}}}{{#if: {{{2|}}}|, <span class="ocreditspan">{{{2}}}</span>}}</includeonly><noinclude> '''<nowiki>{{actor}}</nowiki>''' creates a formatted lin..."
wikitext
text/x-wiki
<includeonly>:''Actor:'' {{{1}}}{{#if: {{{2|}}}|, <span class="ocreditspan">{{{2}}}</span>}}</includeonly><noinclude>
'''<nowiki>{{actor}}</nowiki>''' creates a formatted link of an actor, hiding all dub actors until the user clicks on the "More" link.
This template is virtually identical to [[Template:Voiceactor]]
<nowiki>{{voiceactor </nowiki><span style="color:red;">|</span><nowiki> [[Scott McNeil]] }}</nowiki>
{{voiceactor|[[Scott McNeil]]}}
[[Category: Templates]]</noinclude>
d46086c962296428d85e0ac7f1337cd292bed02d
Fandom
0
237
2407
2256
2022-05-05T04:46:18Z
Roxalotl
30644625
wikitext
text/x-wiki
{{mn}}
{{stub}}
[[Benwunner]]<br>
[[Canon]]<br>
[[Continuity]]<br>
[[Canonizing]]<br>
[[Psuedocanon]]<br>
[[Easter eggs]]<br>
[[Names]]<br>
[[Unpixels]]<br>
[[Customs]]<br>
[[Mundo]]<br>
[[ben10toys.net]] redirect: [[Stu Carter]], [[Agent Spectre]], [[Atamaii]]<br>
[[Ben 10: Lost and Found]]<br>
[[Omnitober]]<br>
[[Ben 10 Planet]]<br>
[[heatblast.net]]<br>
[[ben-10.net]]<br>
[[5 Years Later]]<br>
[[The Ink Tank]] redirect: [[Kuro the Artist]], [[Rob Orpilla]]<br>
[[Ben 10 Fan Fiction]]<br>
[[Trix]]<br>
[[Postcanon]]<br>
[[Ben 10 Prime]]<br>
[[Authorial intent]]<br>
[[Retcon]]<br>
[[Noncanon]]<br>
[[Fanon]]<br>
[[Fan fiction]]<br>
[[Headcanon]]<br>
[[Ben 7]]<br>
[[Fusion aliens]]<br>
[[Self insert]]<br>
[[:Category:Fan terminology]]<br>
[[Josh Perez]] redirect: [[Dyemooch]]<br>
[[Derrick J Wyatt GoFundMe]]<br>
[[Ji Yeon Park]] redirect: [[Chespirep]], [[Clover Karin]] '''make sure name is how she wants to be referred on here'''<br>
[[Omnipedia]]
== [https://ben10.fandom.com/wiki/Ben_10_Planet Ben 10 Planet] ==
If you want a Wiki that's been around longer and takes the show more seriously than we do, Ben 10 Planet is a good resource. We here at Omnipedia don't wish to step on the toes of Planet's mods, they're good people. We often refer back to Planet for ideas and resources in the making of the various aspects of this place. Planet mods, if you're reading this, you guys keep doing what you do.
== [https://ben10fanfiction.fandom.com/wiki/Ben_10_Fan_Fiction Ben 10 Fan Fiction Wiki] ==
Run by several members of Planet staff, BTFF is a pretty good hub for various fan stories and aliens, so check that out if you're interested.
== [https://ben10-lostandfound.tumblr.com/ Ben 10: Lost and Found] ==
Like obscure concept art and promotional art? This blog is run by Roxy, one of the creators of Omnipedia, Ben 10 Lost and Found is a good place to find some of the more obscure things.
== Defunct Sites ==
=== Heatblast.net (2006-2008?) ===
One of the earliest fansites, having originated in 2006 but ceasing to exist around a month before Alien Force premiered.
=== Ben10toys.net (2006-2018, 2021*) ===
The forum known as Ben10toys.net was one of the many stomping grounds of fans of the series, including both of Omnipedia's creators. Originally created by an '''Agent Spectre''' and hosted on '''thepoki.com''' until it was later moved to '''Ning'''. After Agent Spectre, toy reviewer and owner of Atamaii.com '''Stu Carter''' took over and would maintain the site until its unexpected shutdown in 2018. The site mysteriously came back under a new URL on 23 November 2021 as if it'd been frozen in time, (or perhaps breathing a final breath). It shut down again the next day, presumably for good.
<center><gallery widths="110px" heights="110px">
File:Toysdotnet_2006.png| Ben10toys.net circa 2006.
File:Toysdotnet_2010_banner.png| The site's banner circa 2010.
File:Toysdotnet_Final.png| Ben10toys.net in its final years.
</gallery></center>
=== Ben-10.net (estimated 2007-2012) ===
Ben-10.net was a site actually hosted by Cartoon Network itself, likely originating from Asia, as it was the host of the short lived MMO, [[Ben 10 Omniverse: Rise of Heroes]]. (Yes, an online game from the late 2010s actually predates the actual series using the "Omniverse" name.)
<noinclude>
[[Category:Fandom]]
</noinclude>
cd0b9fe8211db4a1cb0a68da5895e5e332189ee1
Ben Tennyson (Dimension 23)
0
510
2408
1875
2022-11-21T21:11:26Z
2601:58C:C080:4FB0:9B5:3B5C:A27F:823F
0
wikitext
text/x-wiki
That timeline started the same but without Max This time.
Aliens:
3ccf3f03df9e4197c50bcd2061776b0126fa2b26
Stabilizer
0
559
2409
2022-12-01T22:20:41Z
143.208.127.235
0
Mayk
wikitext
text/x-wiki
MAYK
c77ee952714277cd33c14a556de61d98e4f8e8d3
Minor Transformations/Prime
0
346
2410
1614
2024-01-11T20:16:52Z
190.189.145.107
0
/* Elast-Elk */Añadí información de este alien ya que no había nada
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:sandboks.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Sandbox is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:shellhed.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:snackpit.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rockshd.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidyhd.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Braindrain===
[[File:braind.png|thumb|300px|Thomas Perkins' post-canon design.]]
[[File:drainb.png|thumb|300px|Thomas Perkins' second design.]]
[[Thomas Perkins]] designed this transformation in November 2020 at the request of [[Derrick J Wyatt]],<ref>https://twitter.com/DerrickJWyatt/status/1330684556744159233?s=20</ref> and [https://twitter.com/TNPerkins4/status/1330799183104622592?s=20 posted it to Twitter].
This alien is meant to be Ben's transformation of an [[Ormerowon]] from [[Anur Ormerow]]. Perkins designs two distinct versions of this.
He described Braindrain as "shambling about in all his undead goodness" and "absorbing life energy and creating temporarily zombified minions."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Bungee Sponge===
[[File:bunjee.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:decapose.png|thumb|300px|gofundme design]]
[[File:decagroup.jpg|thumb|400px|group photo]]
[[File:decagif.gif|thumb|100px|hologram icon]]
[[File:decagonsketch.png|thumb|150px|caption]]
[[File:decasketch2.jpeg|thumb|150px|derrick second sketch]]
Decagon Vreedle is [[Ben Tennyson (Prime)|Ben's]] transformation of a [[Vreedle]].
He has proficiency with explosives "and the English vernacular" just like his "[[Vreedle Brothers|siblings]]."<ref>https://twitter.com/DerrickJWyatt/status/1330767497323110400?s=20</ref>
If Decagon were to die, he would be re-cloned by the [[Vreedle Cloning Machine|Vreedle tanks]].<ref>https://ask.fm/DerrickJWyatt/answers/165704929140#_=_</ref>
[[Derrick J Wyatt]] imagines him with a Southern accent, and being voiced by [[Bill Fagerbakke]].<ref>https://twitter.com/DerrickJWyatt/status/1330893112256782336?s=20</ref>
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
He did the same thing on 20 November 2020. <ref>https://twitter.com/DerrickJWyatt/status/1329964762403274753?s=20</ref>
In September 2020, Decagon Vreedle (and a group pic with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on 22 November 2020.<ref>https://twitter.com/DerrickJWyatt/status/1330753305337757698?s=20</ref>
The final design was drawn by Derrick, and the linework and colouring were done by [https://twitter.com/dyemooch Josh Perez] on a Twitch stream.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
He is also, canonically, a [https://www.urbandictionary.com/define.php?term=Himbo himbo].<ref>https://www.twitch.tv/videos/812693703</ref>
{{-}}
===Funguy===
[[File:fungi.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Fear]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Gurge===
[[File:gurj.png|thumb|350px|Thomas Perkins' post-canon design.]]
Gurge is [[Ben Tennyson (Prime)|Ben's]] transformation of the same species as the [[Nightmarish Alien]] from ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'', who was a prisoner on [[Incarcecon]].
This alien was designed by [[Thomas Perkins]] and [https://twitter.com/TNPerkins4/status/1331521236023734273?s=20 posted to Twitter] in November 2020.
Perkins described this form as "an alien that may be capable of inducing weapons grade nausea."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Hippopotamass===
[[File:hippo1.png|thumb|350px|Thomas Perkins' post-canon design.]]
[[File:hippo2.png|thumb|350px|Thomas Perkins' second design.]]
Hippopotamass was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1331113674707070976?s=20 design to Twitter] of this alien.
He described this alien as a "density controlling Hippo Alien."
His powers may be similar to that of [[Gravattack]], but there might be [https://powerlisting.fandom.com/wiki/Density_Manipulation#Applications more applications].
Although Hippopotamass was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Squirtapillar|Squirtapillar]].
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Snark Tanque|Snark Tanque]]
{{-}}
===Terrorsaur===
[[File:terrorsor.png|thumb|350px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:ventrosketch.jpeg|thumb|250px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
On 17 November 2020, Derrick posted a concept sketch of Ventrilosquid to Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1328780285324902403</ref>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|well this is just prime]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
mention that this possibly isnt a transformation, could just be a robot
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
Deejay Emcee was the hypothetical name of a [[Pugnavore]] transformation, named by [[Derrick J Wyatt]].
Derrick specifically said that [[Ben Tennyson (Prime)|Ben]] does ''not'' have access to a Pugnavore transformation, but this is what he would name it if he did.
{{-}}
===Elast-Elk===
Elast-elk Es el nombre de la transformación en Kraaho
{{-}}
===Farmer BoringJeans===
This is Ben's hypothetical [[Revonnahgander]] transformation, named by Derrick J Wyatt.
At other times, Derrick also called this alien 'Math Man,' and 'Doctor Boring Farmer.'
It is very likely the name is like this to make fun of [[Rook]].
{{-}}
===Moot===
placeholder
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
f305d92086cdca9882ed0d2c6ee60a9dbab19d16
2411
2410
2024-01-11T20:24:21Z
190.189.145.107
0
/* Moot */
wikitext
text/x-wiki
{{trix|ogs|alf|onv|rbt}}
<sup>[[Minor_Transformations/Prime|Full page link.]]</sup>
==Unseen==
These aliens may have only been mentioned in the show, but have had no on-screen appearances currently.
If any of these transformations appear in any official media, they will be moved.
{{-}}
===Sandbox===
[[File:sandboks.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Sandbox is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Thomas Perkins]] finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Sandbox as having powers like "living sand blaster / sandstorm."
In a later tweet, he said that Sandbox could hide in his box.<ref>https://twitter.com/TNPerkins4/status/1329857609436864512?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Shellhead===
[[File:shellhed.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Shellhead is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
[[Ken Tennyson (Original Series)|Ken]] described Shellhead as "a big turtle," who can "only hide in his shell."
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1330092385284534279?s=20 posted a design to twitter.]
Perkins described Shellhead as being a "super burrower with an invulnerable exoskeleton, able to tunnel through the earth at great speeds."
There was some initial backlash to this design due to its inconsistency with Ken's description, though Perkins defended his unique take by saying he didn't want to make "[[Terraspin]] 2.0."<ref>https://twitter.com/TNPerkins4/status/1330186739454005252?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Snakepit===
[[File:snackpit.png|thumb|350px|Thomas Perkins' post-canon design.]]
This alien was only mentioned in passing by [[Ben 10,000 (Original Series)|Ben 10,000]] in the episode ''[[Ken 10]].''
Snakepit is one of the first ten aliens unlocked in [[Omnitrix (Ken 10)|Ken's omnitrix]] that he got for his birthday.
Thomas Perkins finally fulfilled the fans' years-long wish for a design in November 2020, when he [https://twitter.com/TNPerkins4/status/1329517782057185285?s=20 posted a design to twitter.]
Perkins described Snakepit as having a power like "Medusa Vision."
In later tweets, he described the powers as being lightning bolts released from his eyes <ref>https://twitter.com/TNPerkins4/status/1329554979418296320?s=20</ref> that turn his opponents to stone, and that it's limited.<ref>https://twitter.com/TNPerkins4/status/1329605232527962112?s=20</ref> It may also be ineffective in reflections.<ref>https://twitter.com/TNPerkins4/status/1330065276176576515?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Rocks===
[[File:rockshd.png|thumb|350px|Behold, Diamondhead's lamer cousin.]]
[[File:rocks2.png|thumb|200px|caption]]
placeholder
{{-}}
===Squidstrictor===
[[File:squidyhd.png|thumb|350px|caption]]
[[File:squidstrictor2.png|thumb|200px|Hey, you might wanna fix that Omnitrix badge, it's a little crooked...]]
placeholder
{{-}}
===Unnamed Chimera Sui Generis Transformation===
placeholder
{{-}}
==Post-canon==
These transformations are what we call [[Continuity#Post-Canon|post-canon]]. They have not appeared in any official media, they were named, designed, or mentioned by an official crewmember ''after'' the shows' production has ended.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Alien Z===
[[File:Alien_Z.png|thumb|200px|caption]]
placeholder
This form was designed by [[Derrick J Wyatt]] and [https://twitter.com/dyemooch Josh Perez] during a [https://www.twitch.tv/ Twitch.TV] livestream on 25 July 2020, and later tweeted by Derrick on 3 August 2020.<ref>https://twitter.com/derrickjwyatt/status/1290048884593405952</ref>
{{-}}
===Antigravitesla===
[[File:tesla.png|thumb|200px|djw's postcanon design]]
[[File:Antigravitesla.png|thumb|250px|Tally ho!]]
'''Antigravitesla''' made his first and only appearance in the second of three ''[[Ben 10: Total Access]]'' advertisements.
While trying to save [[Jule Yammamoto|Julie]] from a [[DNAlien]], Ben transformed into Antigravitesla.
Not much is known about his abilities, apart from likely being able to control gravity to some extent, but he seems to be rather uncontrollable. Especially while attempting to fly.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Antigravitesla after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Bob the Blob===
[[File:bob.png|thumb|250px|djw's postcanon design]]
[[File:Bob the Blob.png|thumb|250px|Two heads sometimes aren't that great.]]
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
'''Bob the Blob''' made his first and only appearance in the first of three ''[[Ben 10: Total Access]]'' advertisements.
In an attempt to save [[Gwen Tennyson|Gwen]], dangling from a rail with a [[Xenocyte]] crawling up her back, a young Ben accidentally transformed into Bob.
Not much is known about his abilities other than that he is incredibly slow and effectively useless.
In September 2020, [[Derrick J Wyatt]] made a post-canon design for Bob after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Braindrain===
[[File:braind.png|thumb|300px|Thomas Perkins' post-canon design.]]
[[File:drainb.png|thumb|300px|Thomas Perkins' second design.]]
[[Thomas Perkins]] designed this transformation in November 2020 at the request of [[Derrick J Wyatt]],<ref>https://twitter.com/DerrickJWyatt/status/1330684556744159233?s=20</ref> and [https://twitter.com/TNPerkins4/status/1330799183104622592?s=20 posted it to Twitter].
This alien is meant to be Ben's transformation of an [[Ormerowon]] from [[Anur Ormerow]]. Perkins designs two distinct versions of this.
He described Braindrain as "shambling about in all his undead goodness" and "absorbing life energy and creating temporarily zombified minions."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Bungee Sponge===
[[File:bunjee.png|thumb|350px|Thomas Perkins' post-canon design.]]
Bungee Sponge was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330662745373511680?s=20 design to Twitter] of Bungee Sponge.
He described this alien as "sort of an odd fellow" and "a spongey swinging force for justice."
Although Perkins himself is not sure what his powers might be<ref>https://twitter.com/TNPerkins4/status/1330666644201373696?s=20</ref>, it can be assumed its related to [https://powerlisting.fandom.com/wiki/Elasticity elasticity].
Although Bungee Sponge was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Decagon Vreedle===
[[File:decapose.png|thumb|300px|gofundme design]]
[[File:decagroup.jpg|thumb|400px|group photo]]
[[File:decagif.gif|thumb|100px|hologram icon]]
[[File:decagonsketch.png|thumb|150px|caption]]
[[File:decasketch2.jpeg|thumb|150px|derrick second sketch]]
Decagon Vreedle is [[Ben Tennyson (Prime)|Ben's]] transformation of a [[Vreedle]].
He has proficiency with explosives "and the English vernacular" just like his "[[Vreedle Brothers|siblings]]."<ref>https://twitter.com/DerrickJWyatt/status/1330767497323110400?s=20</ref>
If Decagon were to die, he would be re-cloned by the [[Vreedle Cloning Machine|Vreedle tanks]].<ref>https://ask.fm/DerrickJWyatt/answers/165704929140#_=_</ref>
[[Derrick J Wyatt]] imagines him with a Southern accent, and being voiced by [[Bill Fagerbakke]].<ref>https://twitter.com/DerrickJWyatt/status/1330893112256782336?s=20</ref>
On 20 February 2020, [[Derrick J Wyatt]] tweeted a picture of a post-canon drawing of Decagon Vreedle.<ref>https://twitter.com/DerrickJWyatt/status/1230562662079090689?s=20</ref>
He did the same thing on 20 November 2020. <ref>https://twitter.com/DerrickJWyatt/status/1329964762403274753?s=20</ref>
In September 2020, Decagon Vreedle (and a group pic with the rest of the Vreedles) was the $3,000 reward tier of a GoFundMe campaign made in agreement with Derrick J Wyatt to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''. The tier was eventually met, and Wyatt posted the design to Twitter on 22 November 2020.<ref>https://twitter.com/DerrickJWyatt/status/1330753305337757698?s=20</ref>
The final design was drawn by Derrick, and the linework and colouring were done by [https://twitter.com/dyemooch Josh Perez] on a Twitch stream.
The $2,500 reward on the same campaign was hologram icons for [[Jetray]] and Decagon Vreedle.
He is also, canonically, a [https://www.urbandictionary.com/define.php?term=Himbo himbo].<ref>https://www.twitch.tv/videos/812693703</ref>
{{-}}
===Funguy===
[[File:fungi.png|thumb|300px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330454508808396807?s=20 design to Twitter] of a new alien, Funguy.
This alien was described as a "fungus based alien who can produce incapacitating laughing gas spores."
In later tweets, Perkins stated that Funguy is a different species from the [[Living Mushrooms]] from the ''[[Ben 10 (2005)|original series]]'' episode ''[[Camp Fear]]'', but being from the [[Flors_Verdance|same planet]].
He also said that the spores would most likely affect different species differently, but that they probably wouldn't be lethal.<ref>https://twitter.com/TNPerkins4/status/1330574700091641857?s=20</ref>
Perkins also said that, if he had his way, this alien would be voiced by [[Greg Cipes]].<ref>https://twitter.com/TNPerkins4/status/1330558138651611139?s=20</ref>
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Gurge===
[[File:gurj.png|thumb|350px|Thomas Perkins' post-canon design.]]
Gurge is [[Ben Tennyson (Prime)|Ben's]] transformation of the same species as the [[Nightmarish Alien]] from ''[[Ben 10: Secret of the Omnitrix|Secret of the Omnitrix]]'', who was a prisoner on [[Incarcecon]].
This alien was designed by [[Thomas Perkins]] and [https://twitter.com/TNPerkins4/status/1331521236023734273?s=20 posted to Twitter] in November 2020.
Perkins described this form as "an alien that may be capable of inducing weapons grade nausea."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Hippopotamass===
[[File:hippo1.png|thumb|350px|Thomas Perkins' post-canon design.]]
[[File:hippo2.png|thumb|350px|Thomas Perkins' second design.]]
Hippopotamass was originally named by [[Matt Wayne]] as a [[Minor_Transformations/Prime#Named_by_Matt_Wayne|joke alien]].
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1331113674707070976?s=20 design to Twitter] of this alien.
He described this alien as a "density controlling Hippo Alien."
His powers may be similar to that of [[Gravattack]], but there might be [https://powerlisting.fandom.com/wiki/Density_Manipulation#Applications more applications].
Although Hippopotamass was originally [[Continuity#Non-canon|non-canon]], this wiki now considers it [[Continuity#Post-Canon|post-canon]] due to Thomas Perkins' design.
{{-}}
===Portaler===
[[File:port.png|thumb|300px|djw's postcanon design]]
[[File:portaler.png|thumb|300px|loaf]]
[[File:origportalerdrawing.jpg|thumb|200px|The original drawing that won]]
'''Portaler''' is an alien featured in the web game [[Fuel Run]] from the Australian [[Cartoon Network]] website.
In 2012 there was a contest on Cartoon Network South Asia's website, [[Draw Your Alien]], Portaler was selected as the winner. Although the submission only had a few votes, it was still selected to be in Fuel Run by Cartoon Network South Asia.
In Fuel Run, Ben gains access to Portaler after scanning a Space Captain of the same species with his Omnitrix.
Portaler is able to roll into a ball with red and green spikes. According to the description on the contest entry, he is also able to make portals to teleport himself and others. The sound effect used in the game for this ability is the same one used in old ''Sonic the Hedgehog'' video games when the titular character does his Spindash move.
{{quote|Its name is Portaler and it uses portals to go anywhere. It can teleport anyone}}
In August 2020, [[Derrick J Wyatt]] made a post-canon design for Portaler after he was commissioned by Instagram user '''guardabarranco_collections'''.
{{-}}
===Snark Tanque===
[[File:snark.png|thumb|300px|caption]]
[[File:snark2.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Snark Tanque was listed as "Shark-Lizard in a bowl."
Because the final results were so close, "Vendor Sea Horsipede" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Squirtapillar|Squirtapillar]].
{{-}}
===Squirtapillar===
[[File:squirtapiller.png|thumb|350px|caption]]
[[File:squirtapiller1.jpeg|thumb|200px|djw power list]]
placeholder
In September 2020, the $2,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]'' was two new alien transformations based on incidental aliens from ''Omniverse''.
Four incidentals were put to vote by Derrick on his Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1304197742089003008?s=20</ref>
The choice for Squirtapillar was listed as "Vendor Sea Horsipede."
Because the final results were so close, "Shark-Lizard in a bowl" was also turned into an alien transformation known as [[Minor_Transformations/Prime#Snark Tanque|Snark Tanque]]
{{-}}
===Terrorsaur===
[[File:terrorsor.png|thumb|350px|caption]]
In November 2020, [[Thomas Perkins]] posted a [https://twitter.com/TNPerkins4/status/1330457032068128770?s=20 design to Twitter] of a new alien, Terrorsaur.
This alien was described as a "flying alien who can produce terrifying psychic hallucinations."
Although Perkins himself does not consider this design canon, this wiki considers it and any information about it [[Continuity#Post-Canon|post-canon]].
{{-}}
===Ventrilosquid===
[[File:PLACEHOLDER2.png|thumb|300px|final design]]
[[File:ventrosketch.jpeg|thumb|250px|djw sketch]]
placeholder
In September 2020, Ventrilosquid was the $4,000 reward tier of a GoFundMe campaign made in agreement with [[Derrick J Wyatt]] to commission him to make post-canon designs of characters that didn't appear in ''[[Ben 10: Omniverse|Omniverse]]''.
On 17 November 2020, Derrick posted a concept sketch of Ventrilosquid to Twitter.<ref>https://twitter.com/DerrickJWyatt/status/1328780285324902403</ref>
{{-}}
==Non-canon==
These transformations are considered [[Continuity#Non-Canon|non-canon]]. They have not appeared in any proper continuity, and are therefore not considered apart of any continuity included in the shows or secondary media.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Cartoon Network Alien===
[[File:CNalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Decimus Prime===
[[File:decimus.png|thumb|350px|well this is just prime]]
[[File:car.png|thumb|350px|Decimus' altmode.]]
Decimus Prime is [[Ben Tennyson|Ben's]] alien transformation of a [https://tfwiki.net/wiki/Cybertronian Cybertronian] from the ''[https://tfwiki.net/wiki/The_Transformers_(franchise) Transformers]'' franchise.
This form was designed by [[Derrick J Wyatt]] and Josh Perez during a [https://www.twitch.tv/ Twitch.TV] livestream on 24 May, 2020.<ref>https://www.twitch.tv/videos/629995205</ref>
{{-}}
===Invincible===
[[File:invincible.png|thumb|300px|caption]]
placeholder
{{-}}
===Plantapocalypse===
{{voiceactor|[https://twitter.com/CARLOSHDEZGARC/ Carlos Hernández] (Spanish)|}}
[[File:Plantapocalypse_Base.png|thumb|250px|In this world, it's con or be retconned!]]
[[File:Plantapocalypse_Grown.png|thumb|300px|FEED ME, GRANDPA!]]
'''Plantapocalypse''' made his first and only appearance in the third of three ''[[Ben 10: Total Access]]'' advertisements.
Ben tried to use Plantapocalypse against the Vreedle Brothers, but lost control of the form entirely.
Not much is known about his abilities, apart from being able to ingest any form of matter and grow incredibly large, but at the cost of control of the form.
{{-}}
===Shadowman===
[[File:shadowman.png|thumb|300px|caption]]
placeholder
{{-}}
===Stretcheleo===
[[File:stretcheleo.png|thumb|300px|caption]]
placeholder
{{-}}
===Unnamed Krakken Transformation===
[[File:benkrakken.png|thumb|300px|caption]]
placeholder, make mention that the fanon name is Ben-Krakken
{{-}}
===Unnamed Purple Hologram Alien===
[[File:hologramalien.png|thumb|250px|caption]]
placeholder
{{-}}
===Unnamed Red Bird Alien===
[[File:arano.png|thumb|250px|caption]]
placeholder, make mention that the fanon name is Araño
{{-}}
===Unnamed Orange Robot Alien===
[[File:orangerobotalien.png|thumb|250px|caption]]
placeholder
mention that this possibly isnt a transformation, could just be a robot
{{-}}
===Unnamed Sonic Screeching Bird Alien===
[[File:screechingbird.png|thumb|250px|Wouldn't it be wild if the kid who drew this grew up to work on the show later on?]]
During [[I-10: The Ben 10 User Generated Experience|I-10]], one popup states that one of Ben's starting aliens was going to be a sonic-screeching bird. This form has never appeared nor has been named. It's possible that parts of its concept later went into making [[Blitzwolfer]].
{{-}}
==Crew Statements and Jokes (Non-canon)==
The following transformations were either named by the crew as a hypothetical transformation, or named as a joke. These are not considered canon.
If one of these transformations appears in any official media, they will be moved.
{{-}}
===Deejay Emcee===
Deejay Emcee was the hypothetical name of a [[Pugnavore]] transformation, named by [[Derrick J Wyatt]].
Derrick specifically said that [[Ben Tennyson (Prime)|Ben]] does ''not'' have access to a Pugnavore transformation, but this is what he would name it if he did.
{{-}}
===Elast-Elk===
Elast-elk Es el nombre de la transformación en Kraaho
{{-}}
===Farmer BoringJeans===
This is Ben's hypothetical [[Revonnahgander]] transformation, named by Derrick J Wyatt.
At other times, Derrick also called this alien 'Math Man,' and 'Doctor Boring Farmer.'
It is very likely the name is like this to make fun of [[Rook]].
{{-}}
===Moot===
Moot is the name of the transformation in highbreed
{{-}}
===Snorecupine===
placeholder
{{-}}
===Sparklebellum===
placeholder
{{-}}
===TenTen===
placeholder
{{-}}
===The Marshmallow Marauder===
placeholder
{{-}}
===Thriller Whale===
placeholder
{{-}}
===Miscellaneous===
====Named by Derrick J Wyatt====
* Brundlefoot
* Crocduster
* Dropsies
* Kevin Rubio
* Mister Sister
* Murphybed
* Overround
* Polywhirl
* Port-A-Porty
* Pyxl-Loaf
* Splatterator
* THUUG
* Tanker-Bell
* The Sledge
* The Walking Dread
* The Zilch
* Tool Bucket
* Tranquenstine
* Turdberry
====Named by Matt Wayne====
* Bungee Sponge
* Crabtastic
* Hippopotamass
* Mealymouth
* Skidmarx
* Somnambulizard
{{-}}
==Earth Samples==
According to differing statements from Dwayne McDuffie, five species samples from [[Earth]] are said to be present inside the Omnitrix.
{{-}}
===Human===
[[Ben Tennyson (Prime)|Ben]] is incapable of transforming into a human, as he ''is'' a human. If a non-human species were to use the Omnitrix, they would be able to transform into a human.
[[Minor_Character/Aliens#Argit_10|Argit]] is the only user of an Omnitrix confirmed to have a human transformation, as confirmed by [[Derrick J Wyatt]].
{{-}}
===Non-Sapient Animals===
These samples are apparently not meant for transformation, but instead only for cataloguing purposes since they are not fully-sentient. There is no known Omnitrix user that can transform into any of them.
The animals included in the Omnitrix are:
* Dolphin
* Elephant
* Primate
* White Lab Mouse
{{-}}
3af3f0a8714e5f93b92bf53be834ad143f55b230